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

# 対応チェーン

> AgentWallexがサポートするブロックチェーンネットワーク — アクティブチェーン、テストネット、今後の追加予定。

## アクティブチェーン

AgentWallexは現在、エージェントウォレットとトランザクション用に以下のブロックチェーンネットワークをサポートしています：

| チェーン            | チェーンID           | タイプ       | サポートトークン              |
| --------------- | ---------------- | --------- | --------------------- |
| Ethereum        | `eip155:1`       | EVMメインネット | ETH, USDC, USDT, DAI  |
| Base            | `eip155:8453`    | EVM L2    | ETH, USDC             |
| Polygon         | `eip155:137`     | EVM L2    | MATIC, USDC, USDT     |
| BNB Smart Chain | `eip155:56`      | EVMメインネット | BNB, USDC, USDT, BUSD |
| Tron            | `tron:mainnet`   | 非EVM      | TRX, USDT             |
| Bitcoin         | `bip122:mainnet` | UTXO      | BTC                   |

## テストネット

開発とテストにはテストネットを使用してください — 実際の資金のリスクはありません：

| チェーン             | チェーンID            | フォーセット                                                                          |
| ---------------- | ----------------- | ------------------------------------------------------------------------------- |
| Base Sepolia     | `eip155:84532`    | [Coinbase Faucet](https://www.coinbase.com/faucets/base-ethereum-goerli-faucet) |
| Ethereum Sepolia | `eip155:11155111` | [Sepolia Faucet](https://sepoliafaucet.com)                                     |
| Polygon Amoy     | `eip155:80002`    | [Polygon Faucet](https://faucet.polygon.technology)                             |

<Tip>
  SDKを`environment: "sandbox"`で初期化すると、すべての操作は自動的にテストネットのチェーンIDを使用します。
</Tip>

## x402対応チェーン

x402マイクロペイメントプロトコルは現在、決済交渉と決済のために以下のチェーンのサブセットをサポートしています：

| チェーン                 | チェーンID         | 決済トークン |
| -------------------- | -------------- | ------ |
| Base Sepolia（テストネット） | `eip155:84532` | USDC   |
| Base                 | `eip155:8453`  | USDC   |
| Ethereum             | `eip155:1`     | USDC   |
| Polygon              | `eip155:137`   | USDC   |

プログラムで対応チェーンを照会できます：

```bash theme={null}
curl -X GET https://api.agentwallex.com/api/v1/x402/facilitator/supported
```

## 近日対応予定

以下のチェーンがロードマップにあります：

| チェーン              | チェーンID           | 予定         | 備考          |
| ----------------- | ---------------- | ---------- | ----------- |
| Solana            | `solana:mainnet` | 2026年第2四半期 | SPLトークンサポート |
| Avalanche C-Chain | `eip155:43114`   | 2026年第2四半期 | EVM互換       |
| Arbitrum One      | `eip155:42161`   | 2026年第3四半期 | EVM L2      |

<Info>
  ここに記載されていないチェーンをご希望ですか？AgentWallexチームに[support@agentwallex.com](mailto:support@agentwallex.com)でお問い合わせいただくか、ダッシュボードからリクエストしてください。
</Info>

## チェーンIDフォーマット

AgentWallexは[CAIP-2](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-2.md)チェーン識別子を使用します：

* **EVMチェーン**：`eip155:<chain_id>`（例：Ethereumメインネットの場合`eip155:1`）
* **Bitcoin**：`bip122:mainnet`
* **Tron**：`tron:mainnet`
* **Solana**（近日対応）：`solana:mainnet`

エージェントやトランザクションを作成する際は、常に完全なCAIP-2チェーンIDを使用してください：

```typescript theme={null}
const agent = await aw.agents.create({
  name: "my-agent",
  chain: "eip155:8453", // Base mainnet
});
```
