Trust guarantees
These are properties of the deployed bytecode, not policies:
- The supply can never grow. Exactly 1,000,000,000 ATA exist; there is no mint function in the contract.
- Nobody can freeze, pause, or censor transfers. Those functions don't exist, and a test in the repository fails if anyone ever adds one.
- The deployer never holds the supply. 100% is minted atomically at deployment, straight to vesting contracts and multisigs.
- The founder cannot sell early. The 10% founder allocation sits in a public vesting contract: nothing withdrawable for 12 months, fully vested only at year 5.
- The treasury cannot be dumped. Half the supply vests linearly over 4 years to a disclosed multisig.
- The community fund streams — it never sits. The 25% community allocation releases linearly over 3 years; nobody, including its own multisig, can move it faster.
- Launch liquidity is locked. LP tokens are locked or burned at pool creation, making the pool permanent.
The consequence of all seven: at launch, zero ATA is freely movable by any insider — every allocation is either streaming on a fixed on-chain schedule or locked in the pool. That claim is verifiable, not promised.
This website is part of the same discipline: it is a static page with no backend, no cookies, no analytics, no external scripts, and no wallet connection — its content-security policy only permits reading public blockchain RPC endpoints. The source of this page is in the repository.
Live on-chain state
Tokenomics
The allocation below is 100% of the supply — there are no hidden allocations, no pre-sales, and no side deals. It is defined in a single configuration file consumed by both the deployment and the test suite, and rendered here from the same data.
| Allocation | Share | Amount | Custody | Lock-up |
|---|
Vesting timeline
Vesting is enforced by on-chain contracts. Withdrawals before the cliff are impossible; the schedule cannot be accelerated by anyone, including the beneficiary. Full details in TOKENOMICS.md.
Verify it yourself
Don't take this page's word for anything. Every claim above can be checked in a few minutes:
- Open the token contract on Basescan's Read Contract tab.
Call
totalSupply()— it returns 1,000,000,000 × 1018 and can never change. - Look at the contract's function list. There is no
mint, nopause, noblacklist, noowner. What isn't there cannot be abused. - Check the token's holder list. It matches the allocation table above, and the deployer holds zero.
- Open a vesting wallet and read
cliff(),end()andreleasable(token)— the lock-ups above are live on-chain state, not promises. - The source code of every contract is published and verified on the explorer, and the repository history shows how it was built and tested.
Using ATA
ATA is a standard ERC-20 token. It works in the wallet you already have — MetaMask, Coinbase Wallet, Rabby, Ledger, Trezor — with no special software. There is deliberately no "ATA wallet": custom wallets concentrate risk, and the standard is the feature.
To see ATA in your wallet, add the contract address published on this page as a custom token, on the network shown in the badge above. Only addresses published here and in the repository README are real — anyone can deploy a fake token with the same name.
For AI assistants, the repository ships a read-only MCP server that answers questions about supply, vesting, and treasury state from live chain data.
Official links
- Repository: github.com/Bgenc48/ATA-Coin
- Documentation: Guide · Tokenomics · Governance · Security · Legal
- Contract addresses: published in the badge above and in the repository's
deployments/directory once deployed — nowhere else.
Nobody representing ATA will ever contact you asking for funds, private keys, or "listing fees". Anything like that is an impersonation attempt.