1.0.1 • Published 6 years ago

coinsecrets v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

coinsecrets NPM Version node Dependency Status JavaScript Style Guide

Node.js unofficial client to Coinsecrets.org - Recent Metadata in the Bitcoin Blockchain

Coinsecrets.org lists metadata recently embedded in the bitcoin blockchain using OP_RETURN outputs.

Install

npm install --save coinsecrets

Usage

const Coinsecrets = require('coinsecrets')
let cs = new Coinsecrets({ network: 'mainnet' }) // or testnet

cs.block(353197)
  .then(console.log)
  .catch(console.error)

cs.mempool()
  .then(console.log)
  .catch(console.error)

Methods

  • block(<Number>): Get a block op_returns scripts.
  • mempool(): Get op_returns tx in the mempool.
  • version(): Get API version.

Debug

To enable debug set the env var DEBUG=coinsecrets

Author

Rocco Musolino (@roccomuso)

License

MIT