Deploy fully on-chain generative NFT collections. No IPFS, no external dependencies. Your art lives on the blockchain forever.
Built for the blockchain
All NFT data stored directly on the blockchain. No external servers or IPFS required.
Procedurally generated pixel art with configurable traits and rarity weights.
Configure colors, traits, and metadata. Preview your entire collection before deployment.
One-click deployment with automatic contract verification on Etherscan.
Pure SVG on-chain
Your pixel art is encoded as SVG directly in the smart contract. Each trait combination produces a unique, deterministic image that lives forever on the blockchain.
function tokenURI(uint256 id)
public view returns (string memory) {
bytes memory svg = abi.encodePacked(
'<svg viewBox="0 0 64 64">',
_generatePixels(id),
'</svg>'
);
return string(abi.encodePacked(
'data:application/json;base64,',
Base64.encode(metadata)
));
}Start generating your on-chain NFT collection. Configure traits, preview your collection, and deploy.
Launch Generator