Get started with the Axionax Protocol testnet in under 5 minutes. This guide covers the basics of connecting to the network, obtaining testnet tokens, and sending your first transaction.
1. Network Configuration
Add the Axionax Testnet to your wallet (e.g., MetaMask) using the following details:
Network Name: Axionax Testnet RPC URL: https://rpc.axionax.org Chain ID: 86137 Currency Symbol: AXX2. Get Testnet AXX
You need AXX tokens to pay for gas fees on the network. Visit our Faucet to receive 100 AXX per day for testing.
3. Using the SDK
The fastest way to interact with the Axionax blockchain programmatically is via our official TypeScript SDK.
npm install @axionax/sdkInitialize the Client
import { createClient, AXIONAX_TESTNET_CONFIG } from '@axionax/sdk'; const client = createClient(AXIONAX_TESTNET_CONFIG); // Get current block number const blockNumber = await client.getBlockNumber(); console.log('Current block:', blockNumber);4. Next Steps
- Explore the API Reference for advanced RPC calls.
- Read the SDK Documentation to build full-stack dApps.
- Learn about DeAI Architecture.
