MintFastToken
Fixed-supply, ownerless ERC20 deployed per coin.
Minimal OpenZeppelin ERC20 + EIP-2612 permit. No mint after construction, no burn entrypoint, no owner, no transfer hooks, no fee-on-transfer, no blacklist.
Constructor
constructor(string memory name_, string memory symbol_, string memory metadataURI_)Called by the launchpad via CREATE2. Effects:
- sets immutable
metadataURI - sets immutable
launchpad = msg.sender - mints
1_000_000_000e18to the launchpad
Public surface
| Member | Notes |
|---|---|
metadataURI | string, set once |
launchpad | address, immutable |
| Standard ERC20 | name, symbol, decimals, totalSupply, balanceOf, allowance, transfer, approve, transferFrom |
permit / nonces / DOMAIN_SEPARATOR | EIP-2612 |
There is no admin API on the token itself. Supply control and liquidity lock live entirely in the launchpad + pool.