Skip to main content

Overview

Axon provides verifiable messaging and orchestration across chains. It enables intent plans to be executed atomically and securely across heterogeneous environments.

Key Capabilities

  • Verifiable cross‑chain messaging
  • Ordered execution and replay protection
  • Hooks for PAY/AA via TIPAY and Vault
  • Pluggable security and path selection

SDK Quickstart

import { Trikon } from '@trikon/sdk';

const trikon = new Trikon({ apiKey: process.env.TRIKON_API_KEY });

await trikon.axon.send({
  from: { chain: 'polygon' },
  to:   { chain: 'base' },
  payload: { type: 'TRANSFER', asset: 'USDC', amount: '100' }
});