Network Configuration
The Radius Network is a public production network with live stablecoin transfers. Radius also maintains an open testnet for experimentation.
Radius Network
| Setting | Value |
|---|---|
| Network Name | Radius Mainnet |
| RPC Endpoint | https://rpc.radiustech.xyz |
| Chain ID | 723 |
| Currency Symbol | RUSD |
| Block Explorer | https://network.radiustech.xyz |
| Faucet | https://network.radiustech.xyz/testnet/faucet |
Radius Testnet
| Setting | Value |
|---|---|
| Network Name | Radius Testnet |
| RPC Endpoint | https://rpc.testnet.radiustech.xyz |
| Chain ID | 72344 |
| Currency Symbol | RUSD |
| Block Explorer | https://testnet.radiustech.xyz/testnet/explorer |
| Faucet | https://testnet.radiustech.xyz/testnet/faucet |
Add to wallet
MetaMask
- Open MetaMask and select Add Network
- Enter the settings from the table above
- Save and switch to Radius
Programmatic (viem)
import { defineChain } from 'viem'
export const radiusTestnet = defineChain({
id: 72344,
name: 'Radius Testnet',
nativeCurrency: {
decimals: 18,
name: 'RUSD',
symbol: 'RUSD',
},
rpcUrls: {
default: {
http: ['https://rpc.testnet.radiustech.xyz'],
},
},
blockExplorers: {
default: {
name: 'Radius Explorer',
url: 'https://testnet.radiustech.xyz',
},
},
})Get testnet funds
Visit the Radius Faucet to receive testnet USD for development.