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 PacketStateAmino {
    channel_id?: string;
    data?: string;
    port_id?: string;
    sequence?: string;
}

Properties

channel_id?: string

channel unique identifier.

data?: string

embedded data that represents packet state.

port_id?: string

channel port identifier.

sequence?: string

packet sequence.