dashd-client
v1.0.3
Published
Dashd JSON-RPC Client
Downloads
13
Readme
dashd-client
Dash daemon RPC Client.
Install
npm install --save dashd-client
Usage
const createDashClient = require('dash-client');
const dashClient = createDashClient({
rpchost: '127.0.0.1',
rpcuser: 'user',
rpcpassword: 'password',
rpcport: '9998',
});
dashClient.request('getwalletinfo').then(res => console.log(res));