get_transaction_status
Check the status of a USDC bridge transaction across multiple blockchain networks using the transaction hash, source chain ID, and destination chain ID.
Instructions
Get the status of a bridge transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromChainId | Yes | Source chain ID | |
toChainId | Yes | Destination chain ID | |
transactionHash | Yes | Transaction hash to check status for |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"fromChainId": {
"description": "Source chain ID",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"toChainId": {
"description": "Destination chain ID",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"transactionHash": {
"description": "Transaction hash to check status for",
"type": "string"
}
},
"required": [
"transactionHash",
"fromChainId",
"toChainId"
],
"type": "object"
}