ERC-20, from a sentence
Describe your token.
Ship the contract.
No Solidity, no templates, no Discord. Tell us what you want and get a ready-to-deploy smart contract.
Try one
Describe it in plain words. We write the Solidity — audited patterns, no boilerplate.
One click to Base. We handle compilation, gas estimation, and contract verification.
Get a verified contract, ABI, and a shareable token page. Live in minutes.
From prompt to mainnet.
Three deliverables, ready to use the moment you deploy.
Audited Solidity
Assembled from OpenZeppelin v5 primitives — the same code securing billions in DeFi. No AI-generated Solidity, ever.
ERC20 · Ownable · OZ v5ABI + Bytecode
Download the full interface and deployment bytecode. Plug into Ethers.js, viem, Foundry, or any EVM toolchain.
JSON ABI · 0x bytecodeToken page
A public landing page for your token with contract address, supply, live chart, and a Uniswap swap widget.
basescan · uniswap widgetFour modules. Mix and match.
Every contract starts with the ERC-20 base. Add burn, tax, or minting as needed.
ERC-20 Standard
Full transfer, approve, and allowance implementation. Compatible with every DEX, bridge, and wallet on Base.
ERC20, OwnableBurn
Holders can permanently reduce the supply. Deflationary mechanics — no owner required, callable by anyone.
_burn(msg.sender, amount)Tax on transfer
A configurable fee (up to 10%) is deducted on every transfer and forwarded to a wallet you define.
(value * taxBps) / 10_000Mintable
Owner can mint new tokens after deployment. Useful for vesting, rewards, or staged releases.
onlyOwner → _mint(to, amt)Simple and transparent.
No subscriptions. You pay once at deployment, then a small cut of trading volume.
Describe any token. Iterate on the config as many times as you need — no account required.
One-time fee collected at deployment. Covers contract verification and the token page infrastructure.
A platform fee is baked into every ERC-20 transfer. Visible in the Solidity source — no hidden back doors.