mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
* Add support for all rippled APIs, including subscriptions. * Add support for arbitrary stream message types. * Note that rippled APIs take amounts in drops. * request() will be available in ripple-lib version 1.0.0+
11 lines
573 B
Plaintext
11 lines
573 B
Plaintext
# Introduction
|
|
|
|
RippleAPI (ripple-lib) is the official client library to the XRP Ledger. Currently, RippleAPI is only available in JavaScript.
|
|
Using RippleAPI, you can:
|
|
|
|
* [Query transactions from the XRP Ledger history](#gettransaction)
|
|
* [Sign](#sign) transactions securely without connecting to any server
|
|
* [Submit](#submit) transactions to the XRP Ledger, including [Payments](#payment), [Orders](#order), [Settings changes](#settings), and [other types](#transaction-types)
|
|
* [Generate a new XRP Ledger Address](#generateaddress)
|
|
* ... and [much more](#api-methods).
|