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:
Parameter | Value |
---|---|
Network Name | RISE Testnet |
Chain ID | 11155931 |
Currency Symbol | ETH |
Block Explorer URL | https://explorer.testnet.riselabs.xyz |
RPC Endpoints
Endpoint Type | URL |
---|---|
HTTPS RPC URL | https://testnet.riselabs.xyz |
WebSocket URL | wss://testnet.riselabs.xyz/ws |
Useful Links
Resource | URL |
---|---|
Explorer | https://explorer.testnet.riselabs.xyz |
Bridge UI | https://bridge-ui.testnet.riselabs.xyz |
Network Status | https://status.testnet.riselabs.xyz |
Faucet | https://faucet.testnet.riselabs.xyz |
Testnet Portal | https://portal.testnet.riselabs.xyz |
Wallet Configuration
MetaMask
To add RISE Testnet to MetaMask:
- Open MetaMask and click on the network selector at the top
- Click "Add Network"
- Click "Add a network manually"
- 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
- Network Name:
- 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:
- Visit https://faucet.testnet.riselabs.xyz
- Connect your wallet or enter your wallet address
- Complete any verification steps
- Receive testnet ETH directly to your wallet
For other testnet tokens, visit the Testnet Portal at https://portal.testnet.riselabs.xyz.