Reference

Security

What the contracts guarantee — and what they don't.

On-chain guarantees

  • Fixed supply. 100% of each token is minted once at creation; there is no mint authority afterward.
  • Liquidity is burned. At graduation the LP tokens go to the dead address. Nobody — not the creator, not the platform — can withdraw the pool.
  • Fee ceiling. The trade fee can never be set above 1%; it's a hard constant in the contract.
  • Reentrancy-guarded. Every state-changing entrypoint uses a reentrancy guard and checks-effects-interactions, with SafeERC20 for token movements.
  • Verified authorship. Comments are signed by the poster's wallet and verified server-side — you can't impersonate an address.

Testing

The contracts ship with 26 passing unit and fuzz tests, and graduation was verified end-to-end against the real Uniswap deployment on Robinhood Chain mainnet (via a fork).

Heads up.The code is not audited. It runs on testnet today. Get an independent audit before any mainnet value flows through it, and treat all memecoins as high-risk.