Technical Specifications
Metadata Standard
Format Specifications
- Standard: ERC-721 metadata
- Storage: IPFS (InterPlanetary File System)
- Image Format: PNG, 1500x1500 pixels
Trait Categories
- Background
- Body
- Eyes
- Mouth
- Accessories
- Special Features
Smart Contract Architecture
solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract Monbois is ERC721, Ownable, ReentrancyGuard {
// Contract implementation details will be provided in smart contract details
}
IPFS Implementation
All Monbois metadata and images are stored on IPFS to ensure:
- Decentralized Storage: No single point of failure
- Permanent Availability: Content remains accessible
- Content-Addressed Data: Guaranteed data integrity
- Immutable Asset Records: Unchangeable NFT history
Note
Always ensure you're interacting with the official IPFS gateways and contract addresses.