Polkadot Apps
    Preparing search index...

    A received statement with typed data and metadata.

    interface ReceivedStatement<T = unknown> {
        channelHex?: string;
        data: T;
        expiry?: bigint;
        raw: Statement;
        signerHex?: string;
        topics: string[];
    }

    Type Parameters

    • T = unknown

      The parsed data type (decoded from JSON).

    Index

    Properties

    channelHex?: string

    Channel hex, if present.

    data: T

    Parsed data payload.

    expiry?: bigint

    Combined expiry value (upper 32 bits = timestamp, lower 32 bits = sequence).

    The full statement from the transport for advanced inspection.

    signerHex?: string

    Signer's public key hex (from proof), if present.

    topics: string[]

    Topics array (hex strings).