GET_TRANSACTION
Retrieve transaction details from the OpenOcean MCP server to verify swap status and confirm blockchain execution using the transaction hash.
Instructions
Get Transaction
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | No | The blockchain network to execute the transaction on. uses fraxtal as default | fraxtal |
| hash | Yes | Hash from the OpenOcean contract on the blockchain. |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"default": "fraxtal",
"description": "The blockchain network to execute the transaction on. uses fraxtal as default",
"type": "string"
},
"hash": {
"description": "Hash from the OpenOcean contract on the blockchain.",
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
}