Skip to content

roccomuso/coinsecrets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published