1.0.3 • Published 6 years ago

dashd-client v1.0.3

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

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));