A REST API client for BlockCypher, a blockchain web service for Bitcoin and other cryptocurrencies. Version 0.3.0 supports Node.js >=4.0.0. Provides methods for blockchain data (blocks, transactions, addresses), wallet management, and webhooks with promisified callbacks. Token-based authentication; no other dependencies. Not actively maintained (last release 2018).
npm install blockcypherNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows initialization with a token, then chaining calls: getChain, getBlock, creating a webhook, and listing webhooks.
Wrap calls in a Promise manually or use util.promisify.
Use 'main' or 'test' for chain.
Consider alternative libraries or use raw HTTP requests to BlockCypher API.
Use `const bcypher = require('blockcypher');`Create instance: `const bcapi = new bcypher('btc', 'main', 'token');`Set environment variable TOKEN to your BlockCypher token, or pass directly.
Use 'main' for mainnet, 'test' for testnet.
No dependency data recorded yet.