0.1.0 • Published 7 years ago

stoxum-lib-value v0.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

stoxum-lib-extensions

A collection of packages that extend the functionality of stoxum-lib.

Use in the Browser

These modules will need to be compiled for use in the browser. From the root directory of each module, run $ npm install then $ gulp The compiled libraries will be available in the /dist/web directory

Orderbook

Live updating orderbook data from the Stoxum Network. Requires StoxumAPI version 0.14.0 or greater.

  var api = new stoxum.StoxumAPI({server: 'wss://s1.stoxum.com'});

  api.connect().then(function() {

    var book = stoxumOrderbook.OrderBook.createOrderBook(api, {
      currency_gets: 'XRP',
      issuer_pays: 'rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B',
      currency_pays: 'USD'
    });

    book.on('model', function(offers) {
      console.log(offers);
    });
  });

Transaction Parser

Parses transaction objects to a higher-level view.

Message Signer

Signs arbitrary data.