NFTs

Player Badges

Outline: Creating and Distributing NFTs on Solana with Metaplex

1. Set Up Your Development Environment

2. Prepare the NFT Metadata and Assets

neon-fox-metadata.jsonjsonShow inline

3. Upload the Image and Metadata to Decentralized Storage

4. Mint the NFT Using Metaplex

5. Set Up Distribution for Game Users

6. Test and Deploy

7. Optional: Create a Collection

Notes

'The Neon Fox'
{
  "name": "Neon Fox NFT",
  "symbol": "NFX",
  "description": "A vibrant neon fox NFT for players of the Solana game.",
  "image": "neon-fox.png",
  "attributes": [
    {
      "trait_type": "Color",
      "value": "Neon Blue-Purple"
    },
    {
      "trait_type": "Edition",
      "value": "Test Run"
    }
  ],
  "properties": {
    "files": [
      {
        "uri": "neon-fox.png",
        "type": "image/png"
      }
    ],
    "category": "image",
    "creators": [
      {
        "address": "<YOUR_WALLET_ADDRESS>",
        "share": 100
      }
    ]
  }
}

Last updated