Skip to content
AXK · documentation

Build on the rail that moves capital only when reality is verified.

Protocol guides, SDK references, node operator playbooks, and the complete state-transition model — every primitive the AXK kernel exposes, in one place.

Mainnet · v2.4.0 genesis · 99.99% uptime · 1.2s TTF
route-settlement.ts
ts
// Connect to AXK mainnet and route capital on STATE_VERIFIED
import { Kernel } from '@axk/sdk'
const kernel = new Kernel({
network: 'mainnet',
role: 'liquidity',
attest: process.env.AXK_ATTESTATION_KEY,
})
kernel.on('STATE_VERIFIED', async (event) => {
if (event.schema === 'trade.delivery.v1') {
await kernel.settle({
tx: event.proof.hash,
verifier: event.attest.id,
amount: event.payload.usd,
currency: 'USDC',
})
}
})

Start here

@axknetwork

GitHub

Source for the kernel, SDK, CLI, and every node implementation.

v2.4 · 2026

Whitepaper

The full state-transition model, plane composition, and proof primitives.

99.99% · 1.2s TTF

Mainnet status

Block height, peer latency, and live STATE_VERIFIED throughput.

Recently shipped

  • v2.4.0May 12 · 2026

    Logic node parametric triggers

    Drought-index, weather, and counterparty-risk feeds wired into Logic node primitives. Auto-fires capital on verified state.

  • v2.3.7Apr 28 · 2026

    TypeScript SDK 1.4 — typed schemas

    Strict types for trade.delivery.v1, carbon.retire.v2, settle.payout.v1, insure.claim.v1. End-to-end inference from payload to settlement.

  • v2.3.4Apr 03 · 2026

    Audit Suite — signed JSON exports

    One-click exports now ship with a detached signature plus a verifier-key bundle. Drop straight into regulator pipelines.