Page cover

Token Creation & NFT Minting

  • Create SPL Token

    • Command:

      create token "<token_name>" with symbol "<symbol>" and supply <total_supply>
    • Example:

      create token "CoreToken" with symbol "CORE" and supply 1000000
    • Explanation: Deploys a new SPL token on Solana with the specified parameters.

  • Mint NFT

    • Command:

      mint NFT "<nft_name>" with uri <metadata_uri>
    • Example:

      mint NFT "CoreNFT" with uri https://metadata-uri.json
    • Explanation: Mints a new NFT using the specified name and metadata URI.

Last updated