Skip to content

Elata-Biosciences/ELTA

Repository files navigation

ELTA

CI

ERC-20 token for the Elata ecosystem. 77M fixed supply, burnable, EIP-2612 permit.

Deployments

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.

Token Specs

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

Audit

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.

Reproducible Build

The Base mainnet bytecode is reproducible from commit af93d4e with:

  • solc 0.8.24 (v0.8.24+commit.e11b9ed9)
  • Optimizer enabled, 200 runs
  • EVM version paris
  • Constructor argument: treasury = 0xE779BC483D2d60C8c77FEBaC2d593A3Ac9B9Ca05
git checkout af93d4e
forge build

The resulting out/ELTA.sol/ELTA.json deployed bytecode matches what is verified on BaseScan.

Quick Start

forge build
forge test

Deploy

# Local
make deploy-local

# Testnet
TREASURY=0x... make deploy-sepolia

# Mainnet
TREASURY=0x... make deploy-mainnet

Links