Supported networks
Stridge routes across six production networks — Ethereum, Arbitrum One, Base, BNB Smart Chain, Polygon, and Tron — plus Sepolia in the sandbox environment.
Networks
| Network | network_id | Chain id | Type | Native |
|---|---|---|---|---|
60 | 1 | EVM | ETH | |
9001 | 42161 | EVM | ETH | |
8453 | 8453 | EVM | WETH | |
9006 | 56 | EVM | BNB | |
966 | 137 | EVM | POL | |
195 | 728126428 | TVM | TRX | |
10060 | 11155111 | EVM | ETH |
All six production networks run in both the production and sandbox environments. Sepolia runs in the sandbox only — see Environments.
Identifiers
Every chain carries three identifiers. Use the one the surface asks for:
network_id— Stridge's network id. This is the value you pass to the API —destination.network_idonPOST /v1/uda,network_idon the Gateway calls.- Chain id — the EIP-155 chain id for EVM networks (and the analogous id for Tron). Use it when signing transactions or matching a wallet's RPC network.
- Type —
EVMfor the Ethereum-compatible chains,TVMfor Tron (the Tron Virtual Machine).
Supported assets
Every asset Stridge supports — its type and the networks it is active on. For per-chain contract addresses and decimals, query the supported-assets catalogue.
| Asset | Type | Networks |
|---|---|---|
| Native | Ethereum, Arbitrum One, Sepolia | |
| Native | BNB Smart Chain | |
| Native | Polygon | |
| Native | Tron | |
| Stablecoin | Ethereum, Arbitrum One, Base, BNB Smart Chain, Polygon, Sepolia | |
| Stablecoin | Ethereum, Arbitrum One, Base, BNB Smart Chain, Polygon, Tron, Sepolia | |
| Stablecoin | Ethereum, Arbitrum One, Base, Polygon | |
| Stablecoin | Ethereum, Arbitrum One, BNB Smart Chain, Polygon | |
| Stablecoin | Ethereum | |
| USD1 | Stablecoin | Ethereum, BNB Smart Chain |
| Wrapped | Ethereum, Arbitrum One, Base, BNB Smart Chain, Polygon, Sepolia | |
| Commodity | Ethereum |
TRX has no routing. Native TRX on Tron can only move as a same-chain transfer — it cannot be swapped or bridged to another asset. To accept it, define a routing rule that keeps TRX on Tron; without that rule a TRX deposit cannot settle. USDT on Tron routes normally.
Environments
The six production networks run in both environments. Sepolia is a testnet and runs in the sandbox only.
| Environment | Base URL | Networks |
|---|---|---|
| Production | https://api.stridge.com | Ethereum, Arbitrum One, Base, BNB Smart Chain, Polygon, Tron |
| Sandbox | https://api.stridge.dev | All six production networks, plus Sepolia |
Querying the catalogue
Stridge publishes the live network and asset catalogue — including per-chain contract addresses, decimals, and minimum deposit amounts. Fetch it at runtime to drive chain and token pickers; no key is required:
curl https://api.stridge.com/v1/uda/supported-assetsGET /v1/uda/supported-assets is served from https://api.stridge.com for production and https://api.stridge.dev for sandbox. Minimum deposit amounts in the response are dynamic — never hard-code them.
Next
- Universal Deposit Addresses — accept deposits on any of these networks.
- Routing rules — pin a
(network, asset)pair to its own destination. - Gateway HTTP API — the Gateway request contract.