xrpl
    Preparing search index...

    Interface LedgerEntryResponse<T>

    Response expected from a LedgerEntryRequest.

    interface LedgerEntryResponse<T = LedgerEntry.LedgerEntry> {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: LedgerEntryResponseResultBase & { node?: T; node_binary?: string };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: LedgerEntryResponseResultBase & { node?: T; node_binary?: string }

    Type Declaration

    • Optionalnode?: T

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

    • Optionalnode_binary?: string

      The binary representation of the ledger object, as hexadecimal.

    status?: string
    type: string
    warning?: "load"
    warnings?: ResponseWarning[]