acknowledge-packet
Confirm receipt of an IBC packet by submitting proof, acknowledgment data, and details like source/destination channels. Requires a BIP-39 mnemonic for transaction signing.
Instructions
Acknowledge receipt of an IBC packet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acknowledgement | Yes | Acknowledgement data | |
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction | |
packet | Yes | IBC packet to acknowledge | |
proofAcked | Yes | Proof that packet was acknowledged | |
proofHeight | Yes | Height at which proof was generated |
Input Schema (JSON Schema)
{
"properties": {
"acknowledgement": {
"description": "Acknowledgement data",
"type": "string"
},
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
},
"packet": {
"description": "IBC packet to acknowledge",
"properties": {
"data": {
"type": "string"
},
"destinationChannel": {
"type": "string"
},
"destinationPort": {
"type": "string"
},
"sequence": {
"type": "string"
},
"sourceChannel": {
"type": "string"
},
"sourcePort": {
"type": "string"
},
"timeoutHeight": {
"properties": {
"revisionHeight": {
"type": "string"
},
"revisionNumber": {
"type": "string"
}
},
"type": "object"
},
"timeoutTimestamp": {
"type": "string"
}
},
"required": [
"sequence",
"sourcePort",
"sourceChannel",
"destinationPort",
"destinationChannel",
"data"
],
"type": "object"
},
"proofAcked": {
"description": "Proof that packet was acknowledged",
"type": "string"
},
"proofHeight": {
"description": "Height at which proof was generated",
"properties": {
"revisionHeight": {
"type": "string"
},
"revisionNumber": {
"type": "string"
}
},
"required": [
"revisionNumber",
"revisionHeight"
],
"type": "object"
}
},
"required": [
"mnemonic",
"packet",
"acknowledgement",
"proofAcked",
"proofHeight"
],
"type": "object"
}