xrpl
    Preparing search index...

    Interface ChannelVerifyResponse

    Response expected from an ChannelVerifyRequest.

    interface ChannelVerifyResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: { signature_verified: boolean };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: { signature_verified: boolean }

    Type declaration

    • signature_verified: boolean

      If true, the signature is valid for the stated amount, channel, and public key.

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