Supported Networks And Tokens
PayChain support is network-based. Every invoice, payout route, dynamic payout recipient, withdrawal, balance, and transaction should carry the correctchain, networkId, and token.
Catalog note: Treat supported networks as an expanding list, not a fixed promise frozen into your code. New supported networks are provisioned by PayChain, and your integration should discover the current catalog from the API or dashboard.
Current catalog source
Use these surfaces to confirm what is currently available:| Surface | Best for |
|---|---|
| Dashboard network/token selectors | Operators choosing rails in the UI. |
GET /api/v1/networks | Developer discovery of active networks. |
GET /api/v1/networks/supported | Public supported-network list where available. |
GET /api/v1/tokens | Token discovery across supported networks. |
GET /api/v1/tokens?networkId=... | Token discovery for one network. |
Network list format
Use this format when reviewing or documenting supported rails. The rows below are examples of how to read the catalog, not an exhaustive permanent list.| Network | chain | networkId | Environment | Common assets | Notes |
|---|---|---|---|---|---|
| Base Mainnet | evm | base-mainnet | Live | ETH, USDC | Common stablecoin checkout rail. |
| BNB Smart Chain Mainnet | evm | bnb-mainnet | Live | BNB, USDT, USDC where enabled | Common emerging-market payment rail. |
| Ethereum Mainnet | evm | eth-mainnet | Live | ETH, USDC, USDT where enabled | Higher-cost settlement rail; confirm economics before using for small invoices. |
| Solana Mainnet | sol | sol-mainnet | Live | SOL, USDC where enabled | Fast settlement rail; token account behavior can affect gas usage. |
| Base Sepolia | evm | base-sepolia | Sandbox/test | Test assets | Use for EVM testing where enabled. |
| Ethereum Sepolia | evm | eth-sepolia | Sandbox/test | Test assets | Use for EVM testing where enabled. |
| Solana Devnet | sol | sol-devnet | Sandbox/test | Test assets | Use for Solana testing where enabled. |
List maintenance note: The table above is a human-readable guide. The API and dashboard remain the source of truth for the current production catalog, especially as PayChain adds more networks.
Token matching rules
Invoice and payout routing asset fields must match exactly:chainnetworkIdtoken
Choosing a network
Choose a network based on:- Customer payment behavior.
- Stablecoin availability.
- Network cost.
- Settlement speed.
- Payout destination support.
- Gas-credit impact for sponsored outbound operations.
- Your compliance and operational policy.
Developer discovery example
SDK
REST
When PayChain adds a new network
When PayChain adds support for a new network, it appears in the dashboard and network/token APIs after provisioning. Merchants do not need to manually provision the network inside PayChain. Your team only needs to decide whether your own checkout, app, or backend flow should display that rail to customers. The safest integration pattern is to read the catalog, display only the networks and tokens your product supports, and avoid assuming that every token exists on every network.Common mistakes
- Hardcoding one network and assuming all customers can use it.
- Treating
chain: evmas enough without checkingnetworkId. - Creating an invoice on one network and routing payout recipients on another.
- Assuming all tokens exist on all networks.
- Assuming sponsored gas behavior is identical across every rail.