Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 330 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 330 Bytes

peercoin-rpc

Peercoin RPC for TypeScript with Response Type Enforcement

Installing

npm install peercoin-rpc

Example usage

import PeercoinRPC from 'peercoin-rpc';

const rpc = new PeercoinRPC('http://localhost:9904');

const balance = await rpc.getBalance();
console.log(balance);

License

MIT