timeout-packet
Timeout undelivered IBC packets on Osmosis by submitting proof of non-receipt, ensuring transaction finality and freeing up blocked assets in the blockchain network.
Instructions
Timeout an IBC packet that failed to be delivered
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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 | |
nextSequenceRecv | Yes | Next sequence receive number | |
packet | Yes | IBC packet to timeout | |
proofHeight | Yes | Height at which proof was generated | |
proofUnreceived | Yes | Proof that packet was not received |
Input Schema (JSON Schema)
{
"properties": {
"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"
},
"nextSequenceRecv": {
"description": "Next sequence receive number",
"type": "string"
},
"packet": {
"description": "IBC packet to timeout",
"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"
},
"proofHeight": {
"description": "Height at which proof was generated",
"properties": {
"revisionHeight": {
"type": "string"
},
"revisionNumber": {
"type": "string"
}
},
"required": [
"revisionNumber",
"revisionHeight"
],
"type": "object"
},
"proofUnreceived": {
"description": "Proof that packet was not received",
"type": "string"
}
},
"required": [
"mnemonic",
"packet",
"proofUnreceived",
"proofHeight",
"nextSequenceRecv"
],
"type": "object"
}