ERC-20 token for the Elata ecosystem. 77M fixed supply, burnable, EIP-2612 permit.
| Network | Address | Explorer |
|---|---|---|
| Base mainnet (canonical) | 0x6335495c88D1D78245BB50f321E4e450f865CfD0 |
BaseScan |
| Ethereum Sepolia (testnet) | 0x2AEb03A678A1e1E99a2AeEb4CeFCD0263A2D3587 |
Etherscan |
Base mainnet is the canonical ELTA token. No official liquidity pool exists yet — any pool that appears prior to an official announcement is unauthorized. Verify the contract address matches exactly before interacting.
Full deployment record: deployments/base-mainnet.json.
| Property | Value |
|---|---|
| Name / Symbol | Elata / ELTA |
| Decimals | 18 |
| Max supply | 77,000,000 ELTA (fixed, minted once at deployment) |
| Initial recipient | ELTA Treasury Safe (0xE779BC483D2d60C8c77FEBaC2d593A3Ac9B9Ca05) |
| Standards | ERC-20, ERC-20Burnable, ERC-2612 Permit, EIP-5267 |
| Admin keys | None |
| Mint path | None (constructor only) |
| Pause / upgrade / blacklist / transfer fee | None |
Audited by Distrust LLC on 2026-03-26 at commit af93d4e.
Findings: 0 Critical, 0 High, 0 Medium, 0 Low, 7 Informational.
Full report: audits/2026-03-26-elata-distrust.pdf. Audit index: audits/README.md.
The Base mainnet deployment uses the audited commit unchanged — no source or compiler changes were applied between audit and deploy.
The Base mainnet bytecode is reproducible from commit af93d4e with:
solc0.8.24(v0.8.24+commit.e11b9ed9)- Optimizer enabled,
200runs - EVM version
paris - Constructor argument:
treasury = 0xE779BC483D2d60C8c77FEBaC2d593A3Ac9B9Ca05
git checkout af93d4e
forge buildThe resulting out/ELTA.sol/ELTA.json deployed bytecode matches what is verified on BaseScan.
forge build
forge test# Local
make deploy-local
# Testnet
TREASURY=0x... make deploy-sepolia
# Mainnet
TREASURY=0x... make deploy-mainnet