/ibc/core/channel/v1/channels/{}/ports/{}/packet_commitments/{sequence}

PacketCommitment queries a stored packet commitment hash.

Parameters:

channel_id - string, channel unique identifier

port_id - string, port unique identifier

sequence - string, packet sequence

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://cosmos-lcd.blockpi.network/cosmos/<your-api-key>/v1/ibc/core/channel/v1/channels/channel-0/ports/transfer/packet_commitments/1

// Result
{
    "commitment": "P48OX2zrDqI5qt/BCRk5oLAajUTGOhBkEzRB5+IL8bc=",
    "proof": null,
    "proof_height": {
        "revision_number": "4",
        "revision_height": "14099411"
    }
}

Last updated