xrpl
    Preparing search index...

    Interface LedgerEntryBinaryResponse

    Response expected from a LedgerEntryRequest with binary: true.

    interface LedgerEntryBinaryResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: LedgerEntryResponseResultBase & { node_binary: string };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    Type Declaration

    • node_binary: string

      The binary representation of the ledger object, as hexadecimal.

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