mint.fast docs

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_000e18 to the launchpad

Public surface

MemberNotes
metadataURIstring, set once
launchpadaddress, immutable
Standard ERC20name, symbol, decimals, totalSupply, balanceOf, allowance, transfer, approve, transferFrom
permit / nonces / DOMAIN_SEPARATOREIP-2612

There is no admin API on the token itself. Supply control and liquidity lock live entirely in the launchpad + pool.