UNPKG

xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

19 lines (18 loc) 697 B
/** * LedgerEntry type definitions are exported in their own namespace to prevent * collisions of the DepositPreauth SLE and Transaction. LedgerEntries are used * by the client less often, and in most scenarios, like when parsing a * response, the client won't need to import the type. If it is required to use * a Ledger Entry, import `LedgerEntry`, and access individual ledger entry * types on the `LedgerEntry` namespace. */ export * as LedgerEntry from './ledger' export { parseAccountRootFlags, setTransactionFlagsToNumber, convertTxFlagsToNumber, parseTransactionFlags, } from './utils/flags' export * from './methods' export * from './transactions' export * from './common'