Socket
Book a DemoInstallSign in
Socket

@hyperdivision/btc-transaction-tail

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperdivision/btc-transaction-tail

Tails transactions on the Bitcoin blockchain

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
5
Created
Source

@hyperdivision/btc-transaction-tail

Build Status

Tails transactions on the Bitcoin blockchain

npm install @hyperdivision/btc-transaction-tail

Usage

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() // start tailing, will throw if an error is hit
  await tail.scan(424244)
})().catch(console.error)

API

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.IN

Signals a transaction that has a filtered address in the inputs

Tail.OUT

Signals a transaction that has a filtered address in the output

tail.start()

tail.scan(since = 0)

tail.stop()

FAQs

Package last updated on 23 Oct 2019

Did you know?

Socket

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.

Install

Related posts