evm_register_abi
Register a contract ABI under a label for reuse. Pass the label to contract read/write/multicall operations to avoid resending the full ABI JSON.
Instructions
Register a contract ABI under a label for reuse. Once registered, pass abiLabel to evm_read_contract, evm_write_contract, or evm_multicall instead of repeating the full ABI JSON on every call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | Yes | Short label to reference this ABI (e.g. 'uniswap-router', 'aave-pool') | |
| abiJson | Yes | Full contract ABI as JSON string |