Where to point the client, which port serves each surface, and the protocol parameters you should not have to discover by trial and error.
One chain, three surfaces. The HTTP API is the native one; the JSON-RPC endpoint exists for EVM wallets and speaks wei.
https://eavscan.comKeyless reads; writes through POST /tx. Values in e7.https://rpc.eavscan.comCompatible with MetaMask and EVM tooling. Values in wei.72020 · 0x11954Only the EAVM surface uses this number. The native API has no chain id.https://eavscan.comBlocks, transactions, accounts, tokens, validators and governance.https://eavscan.com/icon-512.png512×512 PNG for wallets and listings (also /icon.png).chain-registry/eip155-72020.jsonEIP-155 metadata for wallets that read from a registry.One click in MetaMask/Trust, or the same parameters for 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.
Nome da rede EAV7 RPC https://rpc.eavscan.com Chain ID 72020 (0x11954) Símbolo EAV7 Decimais 18 (a superfície EAVM assume 18) Explorador https://eavscan.com Ícone https://eavscan.com/icon-512.png
Nothing replaces your own chain for testing writes: you control genesis, balances and fork heights.
# um nó + explorador, tudo em uma linha bash bin/eav7-dev-up.sh # ou: npm run dev:local # testnet de três processos: 1 validador + 2 ouvintes bash bin/eav7-testnet-up.sh --fresh bash bin/eav7-testnet-demo.sh bash bin/eav7-testnet-down.sh
http://127.0.0.1:6070http://127.0.0.1:3000:6071 · :6072The local testnet brings up three processes: one validator and two listeners.data/testnet/endpoints.envEach node has its own wallet under data/testnet/nodeN/.# web-next/.env.local NEXT_PUBLIC_API_BASE=/api EAV7_API_ORIGIN=http://127.0.0.1:6070
The API port is chosen at Core init; the rest follow the local stack convention.
| Port | What for |
|---|---|
6070 | The node's HTTP API — reads, submission and block gossip between peers. |
7070 | EAVM JSON-RPC. Only listens when the EAVM surface is enabled. |
6071 · 6072 | Extra nodes in the local stack. Set with --port on each Core's init. |
3000 | Next in development (npm run dev), serving the explorer and this portal. |
All of them come from rust/src/config.rs, the canonical source of consensus parameters — editing and recompiling is the only way to change them.
| Parameter | Value |
|---|---|
CHAIN.NAME | EAV7 |
CHAIN.PROTOCOL | eav20 |
CHAIN.SYMBOL · DECIMALS | EAV7 · 6 |
CHAIN.UNIT | 1 000 000 e7 |
EAVM_CHAIN_ID | 72020 · 0x11954 |
EAVM_WEI_PER_E7 | 1 000 000 000 000 |
BLOCK_TIME_MS | 1 000 |
MAX_VALIDATORS | 27 |
MIN_VALIDATOR_STAKE | 1 000 000 000 e7 · 1 000 EAV7 |
UNBONDING_BLOCKS | 604 800 |