Skip to content

Commit 4be7688

Browse files
committed
feat: add batch transaction exports to public API
1 parent e2ce10d commit 4be7688

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

packages/xrpl/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ export { walletFromSecretNumbers } from './Wallet/walletFromSecretNumbers'
1616
export { keyToRFC1751Mnemonic, rfc1751MnemonicToKey } from './Wallet/rfc1751'
1717

1818
export * from './Wallet/signer'
19+
20+
export * from './Wallet/batchSigner'

packages/xrpl/src/models/transactions/index.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
export { BaseTransaction, isMPTAmount, validateMPTokenMetadata } from './common'
1+
export {
2+
BaseTransaction,
3+
isMPTAmount,
4+
validateMPTokenMetadata,
5+
GlobalFlags,
6+
GlobalFlagsInterface,
7+
} from './common'
28
export {
39
validate,
410
PseudoTransaction,
@@ -33,7 +39,13 @@ export {
3339
AMMWithdrawFlagsInterface,
3440
AMMWithdraw,
3541
} from './AMMWithdraw'
36-
export { Batch } from './batch'
42+
export {
43+
Batch,
44+
BatchFlags,
45+
BatchFlagsInterface,
46+
BatchInnerTransaction,
47+
BatchSigner,
48+
} from './batch'
3749
export { CheckCancel } from './checkCancel'
3850
export { CheckCash } from './checkCash'
3951
export { CheckCreate } from './checkCreate'

0 commit comments

Comments
 (0)