LogoLogo
Developer Docs
Developer Docs
  • Platform Architecture
    • 💠Introduction
  • 💻Application Layer
    • 🙋‍♀️Alith - AI Agent Framework
    • 🏦DeFAI: AI-Driven DeFi
    • 🛒DAT Marketplace
    • 🚀Agent Launchpad
  • 🛡️Trust & Execution Layer
    • Consensus Protocol
    • Settlement Layer
    • Execution Layer
    • Data Availability Layer
  • 🖇️Exetention Layer
  • Data Anchoring Token (DAT)
    • 🧠Introduction
    • 🔍DAT Specification
    • 💎Value Semantics
    • 📁DAT Lifecycle Example
  • Quorum-based BFT Consensus
    • 💎Introduction
    • 🛠️iDAO-Quorum Interaction
    • 📝Quorum-Based BFT Protocol
    • 🫵Slashing & Challenger System
    • 🌀Quorum Rotation & Benefit
  • Verified Computing Framework
    • 🔷Overview
  • 🏗️Verified Computing Architecture
  • Contract & Execution Flow
  • LAZAI Workflow & Runtime
    • 🧩E2E Process
    • ⚙️POV Data Structure
    • 🔵AI Execution Mechanism
  • What's More?
    • 🔐Data Protection
  • 🛣️Roadmap
  • 🆎Glossary
  • ⁉️FAQs
Powered by GitBook
On this page
  • Core Structure
  • Sample Metadata Schema
Export as PDF
  1. Data Anchoring Token (DAT)

DAT Specification

Core Structure

Field

Description

ID

Each DAT is a unique token representing a specific AI asset

CLASS

Category of asset (e.g., POV, Model, Inference)

VALUE

Represents usage quota or revenue share

PROOF

Attached proof for authenticity (e.g., ZK, TEE, OP)

Sample Metadata Schema

{

"name": "Timi + Fine-Tuned Llama Model v2",

"class": "0x03",

"value": 2500,

"proof": {

"type": "ZK-SNARK",

"hash": "0xabc123...",

"verifiedBy": "0xVerifierContract"

},

"usagePolicy": {

"maxCalls": 1000,

"expiresAt": "2026-12-31"

},

"revenueShare": {

"totalShares": 10000,

"holderShare": 2500

},

"rights": {

"license": "commercial_use_allowed",

"canTransfer": true

}

}

PreviousIntroductionNextValue Semantics

Last updated 27 days ago

🔍