bitcoind-client

2.2.11 • Public • Published

bitcoind-client

NPM package version Build Status on Travis

Bitcoind JsonRPC client for node and the browser.

This client should be compatible with all bitcoin forks, to name a few: Dash, PivX, etc...

Install

npm install --save bitcoind-client

Usage

const { createCall } = require('bitcoind-client');
const call = createCall({
    rpchost: '127.0.0.1',
    rpcuser: 'user',
    rpcpassword: 'password',
    rpcport: '9998',
});

call('getwalletinfo')
    .then(result => console.info(result))
    .catch(e => console.error(e))
;

For node you need to require a fetch implementation. isomorphic-fetch is recommended and marked as a peerDependency.

npm install --save isomorphic-fetch

Development

npm test
npm run prettier

Licence

MIT

Package Sidebar

Install

npm i bitcoind-client

Weekly Downloads

4

Version

2.2.11

License

MIT

Unpacked Size

53.9 kB

Total Files

15

Last publish

Collaborators

  • lutangar