Features Solutions Technology Tokenomics Docs About

Documentation

Everything you need to integrate TAG IT Network into your products and systems.

🚧

Work in Progress

We're actively building this documentation as TAG IT Network evolves on testnet. Some info may change before Mainnet (Q3-Q4 2026). For the latest details, visit our GitHub.

Architecture Overview

5-layer stack: OP Stack L2 execution, EigenDA data availability, Ethereum settlement, CCIP interop, and private registry.

Live

Smart Contracts

6 core Solidity modules on OP Sepolia testnet. Built with Foundry. 25 contracts + 4 libraries across 5 layers.

Testnet

Asset Lifecycle

7-state cryptographic lifecycle: NONE → MINTED → BOUND → ACTIVATED → CLAIMED → FLAGGED → RECYCLED.

Live

NFC Hardware

NTAG 424 DNA primary chip. AES-128 + SUN MAC authentication. 5 security tiers from COMMERCIAL to SOVEREIGN.

Hardware Ready

Open Source

12 repositories — 6 Core (contracts, L2, bridge, services, indexer, security) + 6 Support (dashboard, mobile, SDK, hardware, docs, governance).

Public

Security Model

5-layer defense-in-depth: Governance, Application, Access Control (BIDGES), Smart Contract, Cryptography. STRIDE threat modeling.

Pre-Audit

Core Modules

6 Solidity modules powering the TAG IT Network protocol.

TAGITCore
Asset identity, lifecycle state machine, digital twin minting
TAGITAccess
BIDGES badge system — soulbound identity + capability tokens
TAGITRecovery
AIRP dispute resolution for lost, stolen, or flagged assets
TAGITGovernor
Multi-house DAO governance with timelocks and veto
TAGITTreasury
Fee collection, distribution, and protocol revenue
TAGITPrograms
Incentive programs, rewards, and enrollment tracking
~2s
Block Time
~2K
TPS
~$0.001
Per Verify
7-day
L1 Finality
25
Contracts
4
Libraries

Development Roadmap

Tracking progress from testnet to mainnet.

Live Smart Contracts — 25 contracts deployed on OP Sepolia
Live ERC-8004 Agent Suite — Identity, Reputation, Validation
Live Agent Gateway — A2A, MCP, REST protocols
Live Subgraph Indexer — 11 events, 7 entity types on Goldsky
Live TypeScript SDK + CLI — Agent read/write/events
Active Admin Dashboard — Next.js console for asset management
Active Security Audit — Pre-mainnet contract review
Next ORACULAR Mobile App — React Native scan & verify
Next Chainlink CCIP Bridge — Cross-chain messaging
Next Governance DAO — Multi-house voting system
Q3-Q4 Mainnet Launch — Full production deployment

Quick Example — Read Asset State

JavaScript — Verify Asset on OP Sepolia Testnet
// Read asset lifecycle state from TAG IT Network
// Requires: npm install viem
import { createPublicClient, http } from 'viem';
import { optimismSepolia } from 'viem/chains';

const client = createPublicClient({
  chain: optimismSepolia,
  transport: http(),
});

// Query the TAGITCore contract on OP Sepolia
// States: 0=NONE 1=MINTED 2=BOUND 3=ACTIVATED
//         4=CLAIMED 5=FLAGGED 6=RECYCLED
const state = await client.readContract({
  address: '0x...', // TAGITCore address
  abi: TAGITCoreABI,
  functionName: 'getAssetState',
  args: [1n],
});

Build With Us

TAG IT Network is in active development on OP Sepolia testnet. Explore the code, join the community, or reach out to collaborate.

View on GitHub ↗ Join Discord ↗

Connect Wallet

Connect your wallet to interact with TAG IT Network

🦊

MetaMask

Connect using browser extension

🔗

WalletConnect

Scan with your mobile wallet

💰

Coinbase Wallet

Connect using Coinbase

By connecting, you agree to TAG IT Network's Terms of Service

Type to search documentation...