Reference¶
Quick reference tables and lookup information.
Reference Materials¶
-
Networks
Supported networks, chain IDs, RPC endpoints, and explorer APIs.
-
Type Table
Complete Solidity to JSON Schema type mapping reference.
-
ERC Standards
Detected ERC standards and their required functions.
-
Errors
Error codes, messages, and troubleshooting.
Quick Lookup¶
Common Type Mappings¶
| Solidity | JSON Schema Type | Pattern |
|---|---|---|
address |
string |
^0x[a-fA-F0-9]{40}$ |
uint256 |
string |
^[0-9]+$ |
bool |
boolean |
- |
bytes32 |
string |
^0x[a-fA-F0-9]{64}$ |
string |
string |
- |
Common Networks¶
| Network | Chain ID | CLI Flag |
|---|---|---|
| Ethereum | 1 | --network mainnet |
| Polygon | 137 | --network polygon |
| Arbitrum | 42161 | --network arbitrum |
| Base | 8453 | --network base |
ERC Detection¶
| Standard | Key Functions |
|---|---|
| ERC20 | transfer, balanceOf, totalSupply |
| ERC721 | ownerOf, safeTransferFrom |
| ERC1155 | balanceOfBatch, safeBatchTransferFrom |