2.2.11 • Published 6 years ago

bitcoind-client v2.2.11

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

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

2.2.11

6 years ago

2.2.10

6 years ago

2.2.9

6 years ago

2.1.8

6 years ago

2.1.7

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago