0.1.1 • Published 4 years ago

feirmd-rpc v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

feirmd-rpc.js

NPM Package Build Status

Getting Started

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

npm install feirmd-rpc

Examples

var run = function() {
  var RpcClient = require('feirmd-rpc');

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

  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) {
          console.log('\n\n\n' + rawtx.result);
        });

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

  showNewTransactions();
};

License

Code released under the MIT license. Copyright 2017-2019 Feirm

0.1.1

4 years ago

0.1.0

4 years ago