Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/xrpl/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr

## Unreleased

### Added
* Export `Batch` (XLS-56) transaction types and utilities

### Fixed
* Fixes node.js process termination when websocket send method errors after connection is closed.

Expand Down
2 changes: 2 additions & 0 deletions packages/xrpl/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ export { walletFromSecretNumbers } from './Wallet/walletFromSecretNumbers'
export { keyToRFC1751Mnemonic, rfc1751MnemonicToKey } from './Wallet/rfc1751'

export * from './Wallet/signer'

export * from './Wallet/batchSigner'
16 changes: 14 additions & 2 deletions packages/xrpl/src/models/transactions/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
export { BaseTransaction, isMPTAmount, validateMPTokenMetadata } from './common'
export {
BaseTransaction,
isMPTAmount,
validateMPTokenMetadata,
GlobalFlags,
GlobalFlagsInterface,
} from './common'
export {
validate,
PseudoTransaction,
Expand Down Expand Up @@ -33,7 +39,13 @@ export {
AMMWithdrawFlagsInterface,
AMMWithdraw,
} from './AMMWithdraw'
export { Batch } from './batch'
export {
Batch,
BatchFlags,
BatchFlagsInterface,
BatchInnerTransaction,
BatchSigner,
} from './batch'
export { CheckCancel } from './checkCancel'
export { CheckCash } from './checkCash'
export { CheckCreate } from './checkCreate'
Expand Down