sumcoind-rpc

0.7.1 • Public • Published

sumcoind-rpc.js

NPM Package Build Status Coverage Status

A client library to connect to Sumcoin Core RPC in JavaScript.

Get Started

sumcoind-rpc.js runs on node, and can be installed via npm:

npm install sumcoind-rpc

Examples

var run = function() {
  var bitcore = require('sumcore');  
  var RpcClient = require('sumcoind-rpc');

  var config = {
    protocol: 'http',
    user: 'user',
    pass: 'pass',
    host: '127.0.0.1',
    port: '3332',
  };

  var rpc = new RpcClient(config);

  var txids = [];

  function showNewTransactions() {
    rpc.getRawMemPool(function (err, ret) {
      if (err) {
        console.error(err);
        return setTimeout(showNewTransactions, 10000);
      }

      function batchCall() {
        ret.result.forEach(function (txid) {
          if (txids.indexOf(txid) === -1) {
            rpc.getRawTransaction(txid);
          }
        });
      }

      rpc.batch(batchCall, function(err, rawtxs) {
        if (err) {
          console.error(err);
          return setTimeout(showNewTransactions, 10000);
        }

        rawtxs.map(function (rawtx) {
          var tx = new bitcore.Transaction(rawtx.result);
          console.log('\n\n\n' + tx.id + ':', tx.toObject());
        });

        txids = ret.result;
        setTimeout(showNewTransactions, 2500);
      });
    });
  }

  showNewTransactions();
};

Copyright (C) 2016-2020 Sumcoin

Readme

Keywords

Package Sidebar

Install

npm i sumcoind-rpc

Weekly Downloads

1

Version

0.7.1

License

MIT

Unpacked Size

25.7 kB

Total Files

7

Last publish

Collaborators

  • 5053s