Skip to content

Network Details

This page provides all the necessary details to connect to the RISE Testnet network.

Network Configuration

Use these parameters to add RISE Testnet to your wallet or development environment:

ParameterValue
Network NameRISE Testnet
Chain ID11155931
Currency SymbolETH
Block Explorer URLhttps://explorer.testnet.riselabs.xyz

RPC Endpoints

Endpoint TypeURL
HTTPS RPC URLhttps://testnet.riselabs.xyz
WebSocket URLwss://testnet.riselabs.xyz/ws
ResourceURL
Explorerhttps://explorer.testnet.riselabs.xyz
Bridge UIhttps://bridge-ui.testnet.riselabs.xyz
Network Statushttps://status.testnet.riselabs.xyz
Faucethttps://faucet.testnet.riselabs.xyz
Testnet Portalhttps://portal.testnet.riselabs.xyz

Wallet Configuration

MetaMask

To add RISE Testnet to MetaMask:

  1. Open MetaMask and click on the network selector at the top
  2. Click "Add Network"
  3. Click "Add a network manually"
  4. Fill in the following details:
    • Network Name: RISE Testnet
    • New RPC URL: https://testnet.riselabs.xyz
    • Chain ID: 11155931
    • Currency Symbol: ETH
    • Block Explorer URL: https://explorer.testnet.riselabs.xyz
  5. Click "Save"

Using with Development Tools

Hardhat Configuration

javascript
// hardhat.config.js
module.exports = {
  networks: {
    riseTestnet: {
      url: "https://testnet.riselabs.xyz",
      chainId: 11155931,
      accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
    }
  }
};

Foundry Configuration

toml
# foundry.toml
[profile.default]
src = "src"
out = "out"
libs = ["lib"]

[rpc_endpoints]
rise_testnet = "https://testnet.riselabs.xyz"

[etherscan]
rise_testnet = { key = "", url = "https://explorer.testnet.riselabs.xyz/api" }

Getting Testnet ETH

You can obtain testnet ETH from the official RISE faucet:

  1. Visit https://faucet.testnet.riselabs.xyz
  2. Connect your wallet or enter your wallet address
  3. Complete any verification steps
  4. Receive testnet ETH directly to your wallet

For other testnet tokens, visit the Testnet Portal at https://portal.testnet.riselabs.xyz.