Export deriveAddress (#1939)

* Export deriveAddress
This commit is contained in:
Jackson Mills
2022-04-26 15:10:51 -07:00
committed by GitHub
parent 7d2a776cc2
commit f17d0ef810
3 changed files with 5 additions and 2 deletions

View File

@@ -3,6 +3,8 @@
Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xrpl-announce) for release announcements. We recommend that xrpl.js (ripple-lib) users stay up-to-date with the latest stable release.
## Unreleased
### Added
* Export deriveAddress from ripple-keypairs in xrpl.js
## 2.2.1 (2022-04-21)
### Fixed

View File

@@ -20,4 +20,4 @@ function deriveXAddress(options: {
return classicAddressToXAddress(classicAddress, options.tag, options.test)
}
export { deriveKeypair, deriveXAddress }
export { deriveKeypair, deriveAddress, deriveXAddress }

View File

@@ -22,7 +22,7 @@ import { PaymentChannelClaim } from '../models/transactions/paymentChannelClaim'
import { Transaction } from '../models/transactions/transaction'
import createCrossChainPayment from './createCrossChainPayment'
import { deriveKeypair, deriveXAddress } from './derive'
import { deriveKeypair, deriveAddress, deriveXAddress } from './derive'
import getBalanceChanges from './getBalanceChanges'
import {
hashSignedTx,
@@ -191,6 +191,7 @@ export {
isValidAddress,
hashes,
deriveKeypair,
deriveAddress,
deriveXAddress,
signPaymentChannelClaim,
verifyPaymentChannelClaim,