Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Network Configuration

The Radius Network is a public production network with live stablecoin transfers. Radius also maintains an open testnet for experimentation.

Radius Network

SettingValue
Network NameRadius Mainnet
RPC Endpointhttps://rpc.radiustech.xyz
Chain ID723
Currency SymbolRUSD
Block Explorerhttps://network.radiustech.xyz
Faucethttps://network.radiustech.xyz/testnet/faucet

Radius Testnet

SettingValue
Network NameRadius Testnet
RPC Endpointhttps://rpc.testnet.radiustech.xyz
Chain ID72344
Currency SymbolRUSD
Block Explorerhttps://testnet.radiustech.xyz/testnet/explorer
Faucethttps://testnet.radiustech.xyz/testnet/faucet

Add to wallet

MetaMask

  1. Open MetaMask and select Add Network
  2. Enter the settings from the table above
  3. 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.