mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 12:15:51 +00:00
@@ -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.
|
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
|
## Unreleased
|
||||||
|
### Added
|
||||||
|
* Export deriveAddress from ripple-keypairs in xrpl.js
|
||||||
|
|
||||||
## 2.2.1 (2022-04-21)
|
## 2.2.1 (2022-04-21)
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -20,4 +20,4 @@ function deriveXAddress(options: {
|
|||||||
return classicAddressToXAddress(classicAddress, options.tag, options.test)
|
return classicAddressToXAddress(classicAddress, options.tag, options.test)
|
||||||
}
|
}
|
||||||
|
|
||||||
export { deriveKeypair, deriveXAddress }
|
export { deriveKeypair, deriveAddress, deriveXAddress }
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ import { PaymentChannelClaim } from '../models/transactions/paymentChannelClaim'
|
|||||||
import { Transaction } from '../models/transactions/transaction'
|
import { Transaction } from '../models/transactions/transaction'
|
||||||
|
|
||||||
import createCrossChainPayment from './createCrossChainPayment'
|
import createCrossChainPayment from './createCrossChainPayment'
|
||||||
import { deriveKeypair, deriveXAddress } from './derive'
|
import { deriveKeypair, deriveAddress, deriveXAddress } from './derive'
|
||||||
import getBalanceChanges from './getBalanceChanges'
|
import getBalanceChanges from './getBalanceChanges'
|
||||||
import {
|
import {
|
||||||
hashSignedTx,
|
hashSignedTx,
|
||||||
@@ -191,6 +191,7 @@ export {
|
|||||||
isValidAddress,
|
isValidAddress,
|
||||||
hashes,
|
hashes,
|
||||||
deriveKeypair,
|
deriveKeypair,
|
||||||
|
deriveAddress,
|
||||||
deriveXAddress,
|
deriveXAddress,
|
||||||
signPaymentChannelClaim,
|
signPaymentChannelClaim,
|
||||||
verifyPaymentChannelClaim,
|
verifyPaymentChannelClaim,
|
||||||
|
|||||||
Reference in New Issue
Block a user