
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
@hyperdivision/btc-transaction-tail
Advanced tools
Tails transactions on the Bitcoin blockchain
npm install @hyperdivision/btc-transaction-tail
const Tail = require('@hyperdivision/btc-transaction-tail')
const tail = new Tail({
confirmations: 10, // require this many confirmations
async filter (addr) {
return isInterestingAddress(addr)
},
async transaction (transaction) {
console.log('found this transaction', transaction)
},
async checkpoint (since) {
// store this since so you can restart from here
}
})
;(async function () {
// tail.index is the current block index
// tail chain since this seq (inclusive)
await tail.start(424244) // start tailing, will throw if an error is hit
})().catch(console.error)
const tail = new Tail(opts){
network: 'main',
confirmations: 0,
prefix: null, // Where to store chain data
// direction can be either IN or OUT symbol
async filter (addressString, direction) { return true },
async transaction (bcoin.TX) { },
async checkpoint (blockHeight) { },
// Pass options directly to bcoin FullNode
// May overwrite some of the previous opts
bcoin: {}
}
Tail.INSignals a transaction that has a filtered address in the inputs
Tail.OUTSignals a transaction that has a filtered address in the output
tail.start(since = 0)FAQs
Tails transactions on the Bitcoin blockchain
The npm package @hyperdivision/btc-transaction-tail receives a total of 0 weekly downloads. As such, @hyperdivision/btc-transaction-tail popularity was classified as not popular.
We found that @hyperdivision/btc-transaction-tail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.