Protocol guides, SDK references, node operator playbooks, and the complete state-transition model — every primitive the AXK kernel exposes, in one place.
// Connect to AXK mainnet and route capital on STATE_VERIFIEDimport { 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',})}})
Six surfaces of the protocol — pick the entry point that matches your role.
Connect to a node, subscribe to STATE_VERIFIED events, and route capital on the testnet — in under five minutes.
Mental model behind the kernel — phases, plane composition, verification primitives, and finality guarantees.
Run any of the five node roles in production. Hardware, identity, attestation, and uptime requirements.
Strongly typed primitives over the kernel. Subscribe to events, attest claims, route settlements, observe flows.
Every event, schema, and webhook the kernel emits — versioned, typed, and signed at the source.
How the horizontal grid composes — Physical Mesh, Identity Fabric, Liquidity Core consuming one trust layer.
GitHub
Source for the kernel, SDK, CLI, and every node implementation.
Whitepaper
The full state-transition model, plane composition, and proof primitives.
Mainnet status
Block height, peer latency, and live STATE_VERIFIED throughput.
Logic node parametric triggers
Drought-index, weather, and counterparty-risk feeds wired into Logic node primitives. Auto-fires capital on verified state.
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.
Audit Suite — signed JSON exports
One-click exports now ship with a detached signature plus a verifier-key bundle. Drop straight into regulator pipelines.