Certificate NFT

Certificate NFT

Certificate NFT

A non-transferable NFT smart contract for issuing certificates on the Mandala Chain. This contract allows authorized entities to mint certificate NFTs with metadata and images stored on IPFS.

Features

Contract Architecture

The contract inherits from:

Key components:

Prerequisites

Installation

Clone the repository:

git clone <your-repo-url>
cd certificate-nft

Install dependencies:

forge install

Set up environment variables:

# Create .env file with your configuration
RPC_URL="https://mlg1.mandalachain.io"
PRIVATE_KEY="your-private-key"

Deployment

Compile the contract:

forge build

Deploy to Mandala Chain:

forge create src/CertificateNFT.sol:CertificateNFT \
  --rpc-url "https://mlg1.mandalachain.io" \
  --private-key $PRIVATE_KEY \
  --broadcast

Minting Certificates

To mint a new certificate NFT:

# Export contract address
export NFT_CONTRACT="your-contract-address"

# Mint NFT
cast send $NFT_CONTRACT "mintNFT(address,string)" \
  $RECIPIENT_ADDRESS \
  "https://ipfs.io/ipfs/your-image-hash" \
  --rpc-url $RPC_URL \
  --private-key $PRIVATE_KEY

Contract Details

Latest Deployment:

Testing

Run the test suite:

forge test

The tests cover:

Security Features

Non-transferable tokens:

Access Control:

Metadata Integrity: