Files
xahau.js/src
Elliot Lee 3c13da66b3 Export hashing functions (#1275)
The now-deprecated ripple-hashes library provided a number of hash
functions for users to compute the hashes/IDs for various XRP Ledger
objects:

* Transactions (to generate transaction hashes, also known as IDs)
* Transaction signing hashes (to sign transactions)
* Ledger Object IDs (to look up specific ledger objects in a ledger's
  state tree; see https://xrpl.org/ledger-object-ids.html)

This commit exports these utility methods from ripple-lib as static
methods. Access them on the RippleAPI class. Example:

import {RippleAPI} from 'ripple-lib'
const hash = RippleAPI.computeBinaryTransactionHash(...)
2020-04-28 14:19:36 -07:00
..
2020-04-28 14:19:36 -07:00
2020-04-27 12:06:18 -07:00
2020-04-27 12:06:18 -07:00
2020-01-08 12:21:37 -08:00
2019-12-17 10:35:59 -08:00
2020-04-28 14:19:36 -07:00
2019-12-17 10:35:59 -08:00
2019-12-17 10:35:59 -08:00