Supported networks
Stridge routes across eleven production networks — Ethereum, Arbitrum One, Base, Optimism, BNB Smart Chain, Polygon, Monad, Robinhood Chain, Tron, Solana, and Bitcoin — 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 | ETH | |
614 | 10 | EVM | ETH | |
9006 | 56 | EVM | BNB | |
966 | 137 | EVM | POL | |
268435779 | 143 | EVM | MON | |
| Robinhood Chain | 4663 | 4663 | EVM | ETH |
195 | 728126428 | TVM | TRX | |
501 | — | SVM | SOL | |
0 | — | Bitcoin | BTC | |
10060 | 11155111 | EVM | ETH |
All eleven 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. Solana and Bitcoin have no EIP-155 chain id.
- Type —
EVMfor the Ethereum-compatible chains,TVMfor Tron (the Tron Virtual Machine),SVMfor Solana (the Solana Virtual Machine), andBITCOINfor the Bitcoin network.
Supported assets
The assets Stridge supports — each asset's type and the networks it is active on. For the live list with per-chain contract addresses and decimals, query the supported-assets catalogue.
| Asset | Type | Networks |
|---|---|---|
| Native | Ethereum, Arbitrum One, Base, Optimism, Robinhood Chain, Sepolia | |
| Native | BNB Smart Chain | |
| Native | Polygon | |
| Native | Monad | |
| Native | Tron | |
| Native | Solana | |
| Native | Bitcoin | |
| Stablecoin | Ethereum, Arbitrum One, Base, Optimism, BNB Smart Chain, Polygon, Monad, Solana, Sepolia | |
| Stablecoin | Ethereum, Arbitrum One, Base, Optimism, BNB Smart Chain, Polygon, Monad, Tron, Solana, Sepolia | |
| Stablecoin | Ethereum, Arbitrum One, Base, Optimism, Polygon | |
| Stablecoin | Ethereum, Arbitrum One, BNB Smart Chain, Polygon | |
| Stablecoin | Ethereum | |
| Stablecoin | Ethereum, BNB Smart Chain | |
| Stablecoin | Robinhood Chain | |
| Stablecoin | Robinhood Chain | |
| Wrapped | Ethereum, Arbitrum One, Base, Optimism, BNB Smart Chain, Polygon, Robinhood Chain, Sepolia | |
| cbBTC | Wrapped | Ethereum, Arbitrum One, Base, Monad |
| Commodity | Ethereum | |
| Token | Base | |
| Token | BNB Smart Chain | |
| Token | BNB Smart Chain | |
| Token | Base | |
| Token | Arbitrum One | |
| Token | Base | |
| Token | Ethereum | |
| Token | Base | |
| Token | Ethereum | |
| Token | Optimism | |
| Token | Arbitrum One | |
| Token | Ethereum | |
| Token | BNB Smart Chain | |
| Token | Base | |
| Token | Base | |
| Token | Ethereum, BNB Smart Chain | |
| Token | Arbitrum One, Base, Optimism, Polygon |
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 eleven 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, Optimism, BNB Smart Chain, Polygon, Monad, Robinhood Chain, Tron, Solana, Bitcoin |
| Sandbox | https://api.stridge.dev | All eleven 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.