A Rust L1 with BFT finality, hybrid post-quantum signatures and an EAVM surface for EVM wallets. Read the chain with a curl; sign your first transaction with the SDK.
Chain ID 72020REST :6070EAVM :707058 tx types
Each solves a different problem. You are not picking forever — the node and the SDK talk to the same API you can already call today.
Every read is plain HTTP, no key and no special header. /status returns the current height, the finalized height, the chain head and the active validator set.
Monetary values come back as integer strings in e7 — the smallest unit of the coin. Reading a balance is reading an integer; formatting is your presentation layer's problem.
Follow the quickstartcurl -s https://eavscan.com/status \
-H 'Accept: application/json'
{
"chain": "EAV7",
"height": 1284391,
"finalizedHeight": 1284389,
"headHash": "9f2c4a…",
"supply": "72000000000000",
"validators": 27,
"blockReward": "16000000"
}The same chain serves three audiences: HTTP integrators, EVM wallets and consensus participants.
1 EAV7 = 1,000,000 e7 on the HTTP API (CHAIN.UNIT). On the EAVM surface wallets assume 18 decimals, so each e7 is 10¹² wei (CHAIN.EAVM_WEI_PER_E7). Mixing the two scales is the most expensive integration mistake.
Twenty-three pages, one subject each.
Start with a read, finish with a transaction confirmed in a block.