import Metadata from './Metadata'; import TransactionInstructions from './TransactionInstructions'; /** * Transaction object passed to describe. * Format taken from https://github.com/ripple/rippled/issues/2599. * * @property date - The close time of the ledger that includes this transaction, as a UTC ISO8601 * timestamp with whole-seconds resolution, e.g. 2018-07-22T16:37:55Z. * @property hash - An identifying hash of the transaction, as a hex string. * @property ledger_hash - The unique hash of the ledger that includes this transaction. * @property ledger_index - The sequence number of the ledger that includes this transaction. * @property meta - Metadata about the results of the transaction. * @property tx - The actual transaction details. * @property validated - Whether or not the transaction is in a validated ledger. */ export default interface Transaction { readonly date?: string; readonly hash: string; readonly ledger_hash?: string; readonly ledger_index?: number; readonly meta: Metadata; readonly tx: TransactionInstructions; readonly validated: boolean; } //# sourceMappingURL=Transaction.d.ts.map