0.1.5 • Published 4 years ago

wagerrd-rpc v0.1.5

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

wagerrd-rpc.js

NPM Package Build Status Coverage Status

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

Get Started

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

npm install wagerrd-rpc

Examples

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

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

  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 2018-2019 Wagerr Limited

0.1.6-beta.3

4 years ago

0.1.6-beta.2

4 years ago

0.1.6-beta.1

4 years ago

0.1.6-beta.0

4 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago