Collections
Every NFT on ArcaneFi belongs to a collection β a deployed ERC-721 smart contract registered in the NFTFactoryV2 registry on Arc.
Creating a Collection
Go to your profile and click Create Collection. Set a name, symbol (e.g. ARCA), description, cover image, and maximum token supply. ArcaneFi deploys a new ERC-721 contract to Arc and registers it in the factory. You earn +80 XP for creating a collection.
NFT Metadata Format
All NFTs follow the ERC-721 metadata standard. Images and JSON are stored on IPFS. The tokenURI for each token points to an IPFS gateway URL served via Pinata.
{
"name": "My NFT #1",
"description": "Description of this token",
"image": "ipfs://QmHash...",
"attributes": [
{ "trait_type": "Rarity", "value": "Legendary" },
{ "trait_type": "Edition", "value": 1 }
]
}Collection Supply
Each collection has a maxSupply set at creation. The homepage trending table shows supply as minted/max β read live from on-chain via totalSupply() and maxSupply(). Setting max supply to 0 at creation means unlimited supply.