daitchain

Overview

DAIT is a sovereign Layer-1 for verifiable AI compute. This page covers what the chain is, what makes it different, and the seven custom modules that ride on top of cosmos/evm.

What DAIT is

DAIT is a Cosmos SDK chain with a parallel EVM, built by forking github.com/cosmos/evm v0.6.0 (Cosmos SDK v0.53.x, CometBFT v0.39.x, Block-STM parallel EVM, Apache-2.0). On top of the standard Cosmos modules it adds seven DAIT-specific ones for staking tiers, hardware-attested compute, marketplace economics, off-chain channels, native messaging, and AI-agent accounts.

The thesis is simple. AI inference is too expensive to run inside an L1 execution loop, but it can be witnessed by an L1: hosts execute work inside a hardware-attested TEE, post a signed receipt, and the chain verifies the receipt and credits the host. No zk-circuit on the hot path. No oracle committee voting on outcomes.

Key concepts

ConceptWhat it means here
TEE attestationIntel TDX, AMD SEV-SNP, or NVIDIA NRAS quote that proves a piece of code ran inside a confidential VM on a known platform with a known measurement.
PoUW creditA non-transferable, decaying score earned by hosts when they post a valid attested inference receipt. Validators are paid block rewards weighted by delegated PoUW.
State channelAn off-chain Nitro / ForceMove session opened with one tx and closed with one tx. Inference calls inside the channel never touch L1 until the channel closes or is challenged.
SPUR-IC receiptThe over-the-wire signed receipt format that travels in X-DAIT-Receipt headers. Same on the wire across TypeScript, Python, and Go.
Trinity, QuartetThe 3-validator genesis ceremony, then promotion to 4 in Hour 1, exercising the on-chain validator-add flow on Day 1.

Why not an L2?

Two reasons. First, AI compute auctions need their own block space and their own reward weighting; sharing a chain that prices DEX trades by gas works against you. Second, TEE attestation verification is determinism-sensitive (no system clock, no network access from inside the verifier) and that fits cleanly into a custom Cosmos module but is a fight inside an EVM precompile.

The result is a chain where every parameter was chosen for AI-compute economics: 999ms blocks targeting 369ms after IAVLx lands, 99M block gas, 189 active validators out of a 999-slot standby pool, fair launch with no presale.

The seven modules

Where to go next