Writing date: 2026-05-05
Native ZOR
ZOR is the native gas and account-balance asset of ZORAI. The transfer loop relies on EVM signatures, mempool admission, block execution, receipts and RPC queries.
| Capability | Code | Status |
|---|---|---|
| Balance and nonce state | pkg/state, pkg/evm | Implemented |
| EIP-1559 dynamic-fee transactions | pkg/evm, pkg/rpc/web3_full.go | Implemented |
| Receipts and logs | pkg/rpc/web3_full.go | Implemented |
| WebSocket subscriptions | pkg/rpc | Needs production validation |
Standard tokens
ZORAI supports ERC20, ERC721 and ERC1155 deployment through the EVM. Official templates live in contracts/zorai-token-templates and contracts/hardhat.
Token Indexer
cmd/explorer/token_indexer.go persists token metadata, holders and Transfer history in LevelDB. It includes idempotent indexing and reorg-safety logic for explorer pages at /tokens and /token/{addr}.
Production note
New tokens must expose standard name, symbol, decimals and Transfer events to be recognized by wallets and the explorer. Restart persistence, duplicate Transfer protection and reorg handling still need public evidence.