Skip to main content

Active Chains

AgentWallex currently supports the following blockchain networks for agent wallets and transactions:
ChainChain IDTypeSupported Tokens
Ethereumeip155:1EVM MainnetETH, USDC, USDT, DAI
Baseeip155:8453EVM L2ETH, USDC
Polygoneip155:137EVM L2MATIC, USDC, USDT
BNB Smart Chaineip155:56EVM MainnetBNB, USDC, USDT, BUSD
Trontron:mainnetNon-EVMTRX, USDT
Bitcoinbip122:mainnetUTXOBTC

Testnets

Use testnets for development and testing — no real funds at risk:
ChainChain IDFaucet
Base Sepoliaeip155:84532Coinbase Faucet
Ethereum Sepoliaeip155:11155111Sepolia Faucet
Polygon Amoyeip155:80002Polygon Faucet
When initializing the SDK with environment: "sandbox", all operations automatically use testnet chain IDs.

x402 Supported Chains

The x402 micropayment protocol currently supports a subset of chains for payment negotiation and settlement:
ChainChain IDSettlement Token
Base Sepolia (testnet)eip155:84532USDC
Baseeip155:8453USDC
Ethereumeip155:1USDC
Polygoneip155:137USDC
Query the supported chains programmatically:
curl -X GET https://api.agentwallex.com/api/v1/x402/facilitator/supported

Coming Soon

The following chains are on the roadmap:
ChainChain IDExpectedNotes
Solanasolana:mainnetQ2 2026SPL token support
Avalanche C-Chaineip155:43114Q2 2026EVM compatible
Arbitrum Oneeip155:42161Q3 2026EVM L2
Want a chain that is not listed here? Contact the AgentWallex team at support@agentwallex.com or request it through the dashboard.

Chain ID Format

AgentWallex uses CAIP-2 chain identifiers:
  • EVM chains: eip155:<chain_id> (e.g., eip155:1 for Ethereum mainnet)
  • Bitcoin: bip122:mainnet
  • Tron: tron:mainnet
  • Solana (coming soon): solana:mainnet
When creating agents or transactions, always use the full CAIP-2 chain ID:
const agent = await aw.agents.create({
  name: "my-agent",
  chain: "eip155:8453", // Base mainnet
});