is_contract
Verify if a given address is a smart contract on Arbitrum chains. Input the address and optional RPC URL to determine its contract status efficiently.
Instructions
Check if an address is a contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to check | |
rpcUrl | No | The RPC URL of the chain (optional if default is set) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to check",
"type": "string"
},
"rpcUrl": {
"description": "The RPC URL of the chain (optional if default is set)",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}