Interface LedgerEntryResponse<T>

Response expected from a LedgerEntryRequest.

Type Parameters

Hierarchy

Properties

api_version?: number
forwarded?: boolean
id: string | number
result: {
    index: string;
    ledger_current_index: number;
    node?: T;
    node_binary?: string;
    validated?: boolean;
}

Type declaration

  • index: string

    The unique ID of this ledger object.

  • ledger_current_index: number

    The ledger index of the ledger that was used when retrieving this data.

  • Optional node?: T

    Object containing the data of this ledger object, according to the ledger format.

  • Optional node_binary?: string

    The binary representation of the ledger object, as hexadecimal.

  • Optional validated?: boolean
status?: string
type: string
warning?: "load"
warnings?: ResponseWarning[]

Generated using TypeDoc