> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trikon.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Axon — Cross‑Chain Messaging Gateway

> Secure communication and state passing across chains

## 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

```typescript theme={null}
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' }
});
```

## Related

<CardGroup cols={2}>
  <Card title="Sygma (Intents)" icon="lightbulb" href="/product-lineup/sygma" />

  <Card title="TIPAY (Paymaster)" icon="gas-pump" href="/product-lineup/tipay" />
</CardGroup>
