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

# 支持的代币与网络

> 如何选择代币、预热缓存与查询支持能力

## 选择代币

* 首选原生支持 EIP-3009 或 Permit 的主流稳定币（USDC/USDT/DAI 等）
* 若不确定，直接使用自动检测（默认）

## 预热与白名单

```ts theme={null}
await server.initialize([USDC, DAI]); // 启动预热
const { supportedMethods } = await detector.detect(USDC);
```

## 动态查询支持

```ts theme={null}
const all = await facilitator.supported(); // { kinds, networks, ... }
```

<Note>
  不同环境请使用对应网络与 Token 地址。建议统一放置于 .env。
</Note>
