get_suggest_gas
Retrieve EIP1559 gas fee estimates for blockchain transactions using a specific chain ID with Desk3 MCP Server, enabling efficient transaction planning and cost optimization.
Instructions
Get EIP1559 estimated gas info (chainid required)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainid | Yes | Chain ID for the blockchain network (e.g., 1 for Ethereum mainnet, 137 for Polygon) |
Input Schema (JSON Schema)
{
"properties": {
"chainid": {
"description": "Chain ID for the blockchain network (e.g., 1 for Ethereum mainnet, 137 for Polygon)",
"examples": [
"1",
"137",
"56",
"42161"
],
"pattern": "^[0-9]+$",
"type": "string"
}
},
"required": [
"chainid"
],
"type": "object"
}