Documentation v1.8.0

Everything you need to build on axionax - Protocol v1.8.0 Testnet

Quick Start

Get started with axionax in under 5 minutes

Start Building →

SDK & API

Comprehensive SDK for TypeScript, Python, and Rust

View API Docs →

Tutorials

Learn from step-by-step tutorials and examples

Browse Tutorials →

Quick Start Guide

1. Install the SDK

npm install @axionax/sdk

2. Connect to Testnet

import { axionaxClient } from '@axionax/sdk';

const client = new axionaxClient({
  network: 'testnet',
  endpoint: 'https://rpc.testnet.axionax.io'
});

// Get network status
const status = await client.getNetworkStatus();
console.log(status);

3. Create a Wallet

// Create new wallet
const wallet = client.createWallet();

// Or import existing
const imported = client.importWallet(privateKey);

// Get balance
const balance = await client.getBalance(wallet.address);

📚 Complete Documentation Available

Access our comprehensive documentation site with detailed guides, tutorials, and API references:

Network Status

TestnetComing Q1 2026

Chain ID: 86137

MainnetQ2 2026

Chain ID: 86150

Local DevActive

Chain ID: 31337

Setup Guide →