GNUS.AI
  • 🧠About GNUS.AI
    • GNUS.AI
    • Introduction
    • Features and Benefits
      • Scale and cost-efficiency
      • GNUS.ai Network vs. Centralized xAI 100k Cluster
        • 1. Executive Summary
        • 2. Introduction
        • 3. Understanding the GNUS.ai Decentralized Network
        • 4. The Centralized xAI 100k Cluster Explained
        • 5. Comparing CAPEX and OPEX
        • 6. Payout Structure and Profitability
        • 7. The Deflationary Token Mechanism
        • 8. Projected Token Price Appreciation
        • 9. Summary Comparison Tables
        • 10. Conclusion and Next Steps
        • Final Thoughts
      • Tokenomics
    • Public Roadmap
    • Whitepaper
    • Meet the Team
    • Why GNUS.AI
      • Works Everywhere
      • Customizable
      • Fast
      • Secure
        • Secure 2FA with TOTP and zk-SNARKs
    • How Does It Work?
      • Idle Central Processing (GPU)
      • Distributed Computation
      • Dynamically Adjusted Resource Allocation
  • 🖥️Technical Information
    • Super Genius Blockchain Technical Details
      • SuperGenius DB Layout
      • AI Data Blocks
      • Slicing Data for Macro MicroJobs
      • Verification and Hash Results from Processing
      • Diagram of the internal blockchain, blocks and processing functionality
      • IPFS Pub Sub
      • SG Consensus Algorithm Implementation
      • Account creation with ECSDA and El Gamal
      • Key Derivation Function
      • El Gamal encryption
      • Prover specification
      • C++ Coding Standards
      • SuperGenius processing component information
        • Processing worker app workflow
        • Job Processing Flow
      • Super Genius DAG Blockchain
      • Minimal MMR Proof System with UTXOs
      • Cross-chain Bridging through SuperGenius
        • Overview of Technical Details for Cross-Chain Bridging Flow
        • Message Creation and Leader Election
        • Leader Ownership and Verification Channel Creation
        • Node Verification and Voting
        • Signature Collection and Aggregation
        • Destination Chain Submission and Validation
    • Hybrid Smart Contract
      • GNUS.ai Ecosystem: A Unified Network of Intelligence
      • Structure
        • Structure Details
      • Encoded IDs
    • Our Smart Contract Testing Philosophy
    • AI Systems
      • Overview
      • Query Workflow
      • Data Storage
      • Pub/Sub Communication
      • Retraining Mechanism
    • Zero Knowledge Proofs
      • Proof schemes and Elliptical Curves
  • Resources
    • Contact Us
    • Contracts
    • FAQS
    • Multisig Wallets
    • Glossary
    • Official Links
Powered by GitBook
On this page
  1. Technical Information
  2. Hybrid Smart Contract

Structure

Structure for the Smart Contract Token/NFT Collection (ERC-1155)

struct NFT {
    string name;            // Token/NFT Name
    string symbol;          // Token/NFT Symbol
    string uri;             // Token/NFT URI for metadata
    uint256 exchangeRate;   // Only for withdrawing to GNUS
    uint256 maxSupply;      // Maximum supply of NFTs
    address creator;        // The creator of the token, as an ERC-20 address
    uint128 childCurIndex;  // The current childNFT count created
    bool nftCreated;        // If there is a mapping/token created
}

Hierarchical Structure

- GNUS Token (ID 0)
  - Game Studio 1 Token (ID 0.1)
    - Game 1 Token (ID 1.2)
      - NFT 3 (ID 2.3)
    - Game 3 Token (ID 1.4)
      - NFT 6 (ID 4.5)
  - Assistance App Token (ID 0.6)
  - Solo Game 1 Token (ID 0.7)
    - NFT 1 (ID 7.8)
    - NFT 2 (ID 7.9)
  - Healthcare App Token (ID 0.A)
  - Country 1 Token (ID 0.B)
    - Game Studio 2 Token (ID B.C)
      - Game 2 Token (ID C.D)
        - NFT 4 (ID D.E)
      - Game 4 Token (ID C.F)
        - NFT 5 (ID F.10)
    - ISP Token (ID B.11)
  - Finance App Token (ID 0.12)
PreviousGNUS.ai Ecosystem: A Unified Network of IntelligenceNextStructure Details

Last updated 6 months ago

🖥️