get_gasless_status
Check the status of a gasless swap transaction by providing the trade hash and blockchain ID. Used within the DeFi Trading Agent MCP Server for monitoring autonomous crypto trades.
Instructions
Get the status of a submitted gasless swap
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | Blockchain ID where the trade was submitted | |
tradeHash | Yes | Trade hash from gasless swap submission |
Input Schema (JSON Schema)
{
"properties": {
"chainId": {
"description": "Blockchain ID where the trade was submitted",
"type": "integer"
},
"tradeHash": {
"description": "Trade hash from gasless swap submission",
"type": "string"
}
},
"required": [
"tradeHash",
"chainId"
],
"type": "object"
}