PacketState defines the generic type necessary to retrieve and store packet commitments, acknowledgements, and receipts. Caller is responsible for knowing the context necessary to interpret this state as a commitment, acknowledgement, or a receipt.

interface PacketStateSDKType {
    channel_id: string;
    data: Uint8Array;
    port_id: string;
    sequence: bigint;
}

Properties

channel_id: string
data: Uint8Array
port_id: string
sequence: bigint