mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 19:55:51 +00:00
28 lines
579 B
TypeScript
28 lines
579 B
TypeScript
import { Hook as WHook } from '../common'
|
|
|
|
import BaseLedgerEntry from './BaseLedgerEntry'
|
|
|
|
/**
|
|
* The Hook object type contains the
|
|
*
|
|
* @category Ledger Entries
|
|
*/
|
|
export default interface Hook extends BaseLedgerEntry {
|
|
LedgerEntryType: 'Hook'
|
|
|
|
/** The identifying (classic) address of this account. */
|
|
Account: string
|
|
|
|
/**
|
|
* A hint indicating which page of the sender's owner directory links to this
|
|
* object, in case the directory consists of multiple pages.
|
|
*/
|
|
OwnerNode: string
|
|
|
|
PreviousTxnID: string
|
|
|
|
PreviousTxnLgrSeq: number
|
|
|
|
Hooks: WHook[]
|
|
}
|