Read contract (eth_call)
avax_call_contractInvoke read-only EVM contract functions with a human-readable ABI signature and arguments on Avalanche C-Chain, Fuji testnet, and L1 networks.
Instructions
Call a read-only (view/pure) contract function. Provide the function as a human-readable ABI signature, e.g. 'function balanceOf(address) view returns (uint256)', plus args.
Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Arguments in order; big numbers as decimal strings | |
| address | Yes | 0x-prefixed 20-byte EVM address | |
| network | No | Network: "mainnet" (C-Chain), "fuji" (testnet C-Chain), a known L1 key (mainnet, c-chain, fuji, dexalot, beam, dfk, dispatch-fuji, echo-fuji), or a full RPC URL. | fuji |
| signature | Yes | Human-readable function ABI, e.g. 'function totalSupply() view returns (uint256)' |