gateway_is_evm_chain
Verify if a blockchain chain is EVM-compatible using Tatum's Blockchain API, enabling developers to determine compatibility for smart contract and dApp development.
Instructions
[gateway] Check if a chain is EVM-compatible
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | The blockchain to check |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"description": "The blockchain to check",
"type": "string"
}
},
"required": [
"chain"
],
"type": "object"
}