The surface compatible with the EVM ecosystem. Same chain, same ledger — seen through a wallet that expects 18 decimals and 0x addresses.
The button uses the canonical wallet_switchEthereumChain → wallet_addEthereumChain flow. For wallets that inject no provider, the parameters alongside cover manual setup.
EAV7 speaks the JSON-RPC dialect that universal wallets understand — add the network in one click.
MetaMask displays the 0x…; on-chain the balance lives in the E7… corresponding address. They're the same account.
The card above already has the values to copy. These are the traps behind them.
72020 · 0x11954Decimal when adding the network by hand, hexadecimal over JSON-RPC.7070The public endpoint is rpc.eavscan.com; with the node on your machine it is port 7070.18 · 6The wallet shows 18 decimals; the native API uses 6. Same amount, different scale.Enough for wallets, contract reads and submitting a signed transaction.
curl -s https://rpc.eavscan.com \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'
{"jsonrpc":"2.0","id":1,"result":"0x11954"}| Method | Description |
|---|---|
| Node and identity | |
web3_clientVersion | Node client identification. |
net_version | Network id in decimal, as a string. |
net_listening | Whether the node is accepting connections. |
eth_chainId | 72020 in hexadecimal: 0x11954. |
eth_syncing | Node sync state. |
eth_accounts | Empty list — the node holds no user keys. |
| State | |
eth_blockNumber | Height of the chain head. |
eth_getBalance | 0x account balance, in wei. |
eth_getCode | Bytecode deployed at the address. |
eth_getTransactionCount | Account nonce. |
| Fees and gas | |
eth_gasPrice | Current gas price. |
eth_maxPriorityFeePerGas | Suggested tip per gas unit. |
eth_feeHistory | Per-block fee history. |
eth_estimateGas | Gas estimate for a call. |
| Blocks, transactions and events | |
eth_getBlockByNumber | Block by height. |
eth_getBlockByHash | Block by hash. |
eth_getTransactionByHash | Transaction by hash. |
eth_getTransactionReceipt | Receipt with status, gas and logs. |
eth_getLogs | Events filtered by address and topic. |
| Execution | |
eth_call | Runs the call without writing state. |
eth_sendRawTransaction | Submits an already signed transaction. |
Compatibility is deliberately partial. These methods are not served:
eth_sendTransactioneth_getStorageAteth_subscribeeth_newFilterFrom CHAIN.EAVM_VALUE_HEIGHT onward, EAVM contracts are payable over a unified ledger.