Elliot Lee 181cfd69de Prevent 'amount' from being misinterpreted (#924)
The 'amount' field should almost never be used.
With partial payments, the field can show an amount that is
significantly less than the amount that the transaction actually
delivered. This change sets amount to 0 XRP when it may be misleading.

This change omits the `amount` when parsing payment transactions.
See `HISTORY.md` for recommended alternatives.
2018-08-23 16:17:23 -07:00
2018-01-29 12:11:32 -08:00
2018-01-17 14:41:24 -08:00
2015-05-14 16:07:47 -07:00
2018-05-24 19:29:09 -07:00
2018-03-20 14:30:37 -07:00
2017-09-27 10:25:08 -07:00
2017-11-04 18:18:55 -07:00
2018-08-11 01:38:36 -07:00
2018-02-24 23:52:45 -08:00
2018-01-17 14:41:24 -08:00
2018-07-28 00:18:58 -07:00

ripple-lib

A JavaScript API for interacting with the XRP Ledger

Circle CI Coverage Status

NPM

Features

  • Connect to a rippled server from Node.js or a web browser
  • Issue rippled API requests
  • Listen to events on the XRP Ledger (transaction, ledger, etc.)
  • Sign and submit transactions to the XRP Ledger

Getting Started

See also: RippleAPI Beginners Guide

You can use npm, but we recommend using yarn for the added assurance provided by yarn.lock.

Install ripple-lib:

$ yarn add ripple-lib

Then see the documentation and code samples.

Mailing lists

We have a low-traffic mailing list for announcements of new ripple-lib releases. (About 1 email per week)

If you're using the XRP Ledger in production, you should run a rippled server and subscribe to the ripple-server mailing list as well.

Development

To build the library for Node.js:

$ yarn compile

The TypeScript compiler will output the resulting JS files in ./dist/npm/.

To build the library for the browser:

$ yarn build

Gulp will output the resulting JS files in ./build/.

For more details, see the scripts in package.json.

Running tests

  1. Clone the repository
  2. cd into the repository and install dependencies with yarn install
  3. yarn test or yarn test --coverage (istanbul will create coverage reports in coverage/lcov-report/)

Generating Documentation

The continuous integration tests require that the documentation stays up-to-date. If you make changes to the JSON schemas, fixtures, or documentation sources, you must update the documentation by running yarn run docgen.

npm may be used instead of yarn in the commands above.

More Information

Description
A JavaScript/TypeScript API for interacting with the Xahau Ledger in Node.js and the browser
Readme 44 MiB
Languages
TypeScript 97.4%
JavaScript 2.6%