iNFT Intelligent NFT Interface

Connect MetaMask to interact with contracts
iNFT (THOT)
IntelligentNFT
Factory
Read

Mint Immutable THOT

Mint an immutable THOT tensor as an ERC-721 NFT. Once minted, the tensor data cannot be changed. CID uniqueness enforced — no duplicates.

struct ThotData {
  bytes32 dataCID; // IPFS CID hash
  uint32 dimensions; // 8 → 64 → 256 → 512 → 768 → 1024 → 2048 → 4096 → 8192 → 65536 → 1048576
  uint8 parallelUnits;// Processing units
  uint40 timestamp; // Creation time
  bool verified; // Always true on mint
}
bytes32 hash of the IPFS CID containing the tensor data

Query THOT Data

Mint Intelligent NFT

Mint an iNFT with full metadata and intelligence configuration. The iNFT can interact with AI agents and exhibit autonomous behavior via AgenticPlace.

struct IntelligenceConfig {
  address agentAddress; // Agent that can interact
  bool autonomous; // Can act without owner
  string behaviorCID; // IPFS CID for behavior
  string thotCID; // Optional THOT tensor
  uint256 intelligenceLevel; // 0-100
}

Agent Interaction

Allow an authorized agent to interact with an iNFT. Only the configured agent, token owner, or contract owner can call.

Update Intelligence

Link THOT to iNFT

Offer Skill on AgenticPlace

Deploy IntelligentNFT Collection

Deploy a new IntelligentNFT contract via the factory. You become the owner of the deployed collection.

Query Factory

Read Token Data

Query any iNFT or IntelligentNFT token. Read intelligence config, metadata, ownership, and THOT data.

Full iNFT Documentation
mindx.pythai.net | AgenticPlace | GitHub | DAIO | Book of mindX
iNFT contracts: daio/contracts/inft/ | Solidity ^0.8.20 | OpenZeppelin v5 | ERC-721