What does "fully on-chain" mean? +
Every piece of art and metadata is stored inside the smart contract on Ethereum. When you call tokenURI, the contract generates the SVG and JSON on the fly — no external servers, no IPFS, no URLs that can go offline.
How does the free mint work? +
The first 2 tokens are free for every wallet, handled in a single transaction. Mint 1 or 2 — pay nothing. Mint more — only the tokens beyond your 2 free ones are charged at 0.0001 ETH each.
Are the traits random? +
Traits are deterministic, not random. Each token's attributes are derived from keccak256(tokenId), meaning they're fixed at contract deployment. Every token always returns the same traits, forever.
What are the 1/1 special characters? +
There are 20 hardcoded 1/1 tokens at specific IDs (1, 500, 1000, ..., 9500). Their SVG art is written directly into the SCOneOfOne contract — completely separate from the generative system. Names: Genesis, Glitch, Diamond, Pepe, Ghost, Lava, Matrix, Chalk, Galaxy, Zombie, Robot, Pharaoh, Shadow, Neon, Oni, Bread, Blueprint, Void, Fire, Gold.
What wallet do I need? +
Any EVM-compatible browser wallet works — MetaMask, Coinbase Wallet, Rabby, etc. Make sure you're connected to Ethereum Mainnet.
What is the royalty? +
1% royalty on secondary sales, implemented via EIP-2981 on-chain. This is enforced at the contract level and readable by any marketplace that respects the standard.
Is the contract verified? +
Yes. All 8 contracts are verified on Etherscan. You can read the source code of every renderer and the main contract directly on-chain.