ecash-rpc

0.0.3 • Public • Published

eCash JSON-RPC library

JavaScript library to communicate with your eCash Node.

Compatible with Avalanche Post-Consensus (0.26.x and later).

This is a promise-based library and async/await compatible.

Installation

1. Install from NPM

  npm i ecash-rpc

2. Node configuration

Configure your eCash Avalanche Node for remote RPC calls based on your node's security needs. This includes:

  • adding server=1, rpcallowip=, rpcbind= and rpcauth/rpcuser/rpcpassword= parameters to your node configuration in bitcoin.conf. (refer to the Server Configuration section of this Blockchain Dev guide)
  • a reverse proxy server such as nginx to serve RPC data to external web apps subject to your eCash node's rpcallowip whitelist
  • install a digital certificate (e.g. Let's Encrypt) on your node to enable HTTPS if desired

Usage

let ECashRPC = require("ecash-rpc");
let xecNode = new ECashRPC(
  host, // your eCash node e.g. 'https://hostname.blah'
  username,
  password,
  port,
  timeout, // timeout is 3000 by default
  debugging // debugging is true by default, false makes the library silent and requires try/catch on the app level.
);

 let info = await xecNode.getAvalancheInfo();

 console.log(info)

 // results in
 // {
 //  "ready_to_poll":true,
 //  "local":{
 //     "verified":true,
 //     "proofid":"...",
 //     "limited_proofid":"...",
 //     "master":"...",
 //     "payout_address":"ecash:qqmd..........",
 //     "stake_amount":1560000000
 //  },
 //  "network":{
 //     "proof_count":18,
 //     "connected_proof_count":18,
 //     "dangling_proof_count":0,
 //     "finalized_proof_count":18,
 //     "conflicting_proof_count":0,
 //     "immature_proof_count":4,
 //     "total_stake_amount":83681202831.85,
 //     "connected_stake_amount":83681202831.85,
 //     "dangling_stake_amount":0,
 //     "node_count":37,
 //     "connected_node_count":33,
 //     "pending_node_count":4
 //  }
 // }
 

or

 p = Promise.resolve(xecNode.getAvalancheInfo());
 p.then(info=>{
    console.log(info);
 })

Available Methods

There is only selected RPC coverage at the moment. Please submit a PR if you'd like to have a specific RPC method added.

addAvalancheNode buildAvalancheProof decodeAvalancheDelegation decodeAvalancheProof delegateAvalancheProof getAvalancheInfo getAvalancheKey getAvalanchePeerInfo getRawAvalancheProof isFinalBlock isFinalTransaction sendAvalancheProof verifyavalanchedelegation verifyAvalancheProof

getBlockchainInfo getBlockCount getWalletInfo getUnconfirmedBalance getBalance getBlockCount getWalletInfo getBlockHash setTxFee getBlock getTxOut listTransactions listUnspent getTransaction getRawTransaction getRawMempool signRawTransaction sendRawTransaction decodeRawTransaction getTxoutProof

Troubleshooting

Common errors:

  • Connection timeout: your app is failing to communicate with your node. Check firewall settings and node configuration whitelists.
  • Network errors: these errors can be misleading - in most cases your app is connecting to your node however is likely failing authentication. Check your RPC authentication parameters or your reverse proxy server settings.
  • CORS Policy errors: your app is encountering Cross-Origin Resource Sharing restrictions e.g. you may be using your local dev instance on http://localhost:3000 to connect to your eCash node on a separate host (https://someip:someport) See this article and nginx's headers module on how to address this.

Compatible Node Implementations

You must be running a Node (Pruned mode is fine)

Bitcoin ABC

Tested on Node v16.17.0, NPM v8.19.1 and Bitcoin ABC 0.26.2

Package Sidebar

Install

npm i ecash-rpc

Weekly Downloads

6

Version

0.0.3

License

MIT

Unpacked Size

19.2 kB

Total Files

4

Last publish

Collaborators

  • ethanq