gateway_get_url
Retrieve the gateway URL for a specific blockchain using Tatum MCP Server's API. Simplify interactions with blockchain data by accessing the required network entry point.
Instructions
[gateway] Get the gateway URL for a specific chain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | The blockchain to get the gateway URL for |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"description": "The blockchain to get the gateway URL for",
"type": "string"
}
},
"required": [
"chain"
],
"type": "object"
}