3.0.92 • Published 6 years ago

divid-rpc v3.0.92

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

divid-rpc.js

NPM Package Build Status Coverage Status

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

Get Started

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

npm install divid-rpc

Examples

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

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

  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();
};

License

Code released under the MIT license.

Copyright 2013-2014 BitPay, Inc.

3.0.92

6 years ago

3.0.91

6 years ago

3.0.90

6 years ago

3.0.89

6 years ago

3.0.88

6 years ago

3.0.87

6 years ago

3.0.86

6 years ago

3.0.85

6 years ago

3.0.84

6 years ago

3.0.83

6 years ago

3.0.82

6 years ago

3.0.81

6 years ago

3.0.80

6 years ago

3.0.79

6 years ago

3.0.78

6 years ago

3.0.77

6 years ago

3.0.76

6 years ago

3.0.75

6 years ago

3.0.47

6 years ago

3.0.74

6 years ago

3.0.73

6 years ago

3.0.72

6 years ago

3.0.71

6 years ago

0.7.62

6 years ago

0.7.61

6 years ago