Features Solutions Technology Tokenomics Docs About Launch App

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 โ€” audit-gated, targeted H1 2027. For the latest details, visit our GitHub.

Agent Quickstart

One curl, no signup, no API key: a machine-readable authenticity verdict plus a chain reference you can re-derive yourself.

Live

Architecture Overview

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

Live

Smart Contracts

6 core Solidity modules on Base 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

Digital Product Passport

GS1 Digital Link resolver plus a W3C Verifiable Credentials 2.0 passport, both gated on a physical NTAG 424 DNA tap.

Live

NFC Hardware

SUN-secured NFC across every tier โ€” no no-crypto tier. Item-level chips from NTAG 224 DNA (COMMERCIAL) to NTAG X DNA (SOVEREIGN), plus an ICODE/UCODE package & logistics layer.

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 Base 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
H1 2027 Mainnet Launch โ€” audit-gated, full production deployment

Quick Example โ€” Read Asset State

JavaScript โ€” Verify Asset on Base Sepolia Testnet
// Read asset lifecycle state from TAG IT Network
// Requires: npm install viem
import { createPublicClient, http } from 'viem';
import { baseSepolia } from 'viem/chains';

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

// Minimal ABI โ€” getAsset returns a packed 5-field tuple
const TAGITCoreABI = [{
  name: 'getAsset',
  type: 'function',
  stateMutability: 'view',
  inputs: [{ name: 'tokenId', type: 'uint256' }],
  outputs: [
    { name: 'assetOwner', type: 'address' },
    { name: 'timestamp',  type: 'uint64'  },
    { name: 'state',      type: 'uint8'   },
    { name: 'flags',      type: 'uint8'   },
    { name: 'reserved',   type: 'uint16'  },
  ],
}];

// States: 0=NONE 1=MINTED 2=BOUND 3=ACTIVATED
//         4=CLAIMED 5=FLAGGED 6=RECYCLED
const [owner, timestamp, state] = await client.readContract({
  address: '0x3aDc7EFDb58Ae85483eFf5D4966D916185f31d1D', // TAGITCore ยท chainId 84532
  abi: TAGITCoreABI,
  functionName: 'getAsset',
  args: [50n],
});

console.log({ owner, timestamp, state });
// โ†’ { owner: '0x458B4d0c3a55006965Fd13D6af7B8509De51Cb3D',
//     timestamp: 1784246184n, state: 4 }   // 4 = CLAIMED

Build With Us

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

View on GitHub โ†— Join Discord โ†—
Type to search documentation...