TESTNET ACTIVE

Explore the Testnet

Deploy smart contracts, test orderbook integrations, and experiment with onchain financial primitives — all before mainnet.

Network Details

CHAIN ID
11155911
RPC ENDPOINT
https://rpc.risechains.com
CURRENCY
ETH
BLOCK EXPLORER
https://explorer.risechains.com
BRIDGE
Testnet Bridge Portal
FAUCET
Free test ETH available

Quick Start Guide

1

Configure your wallet

Add the RISE testnet network to MetaMask or your preferred wallet using the network details above.

{
  "chainId": 11155911,
  "chainName": "RISE Testnet",
  "rpcUrls": ["https://rpc.risechains.com"],
  "nativeCurrency": { "name": "ETH", "symbol": "ETH", "decimals": 18 },
  "blockExplorerUrls": ["https://explorer.risechains.com"]
}
2

Get test ETH

Use the faucet to receive free test ETH for deploying contracts and testing transactions.

3

Deploy & test

Deploy your smart contracts using Hardhat, Remix, or any EVM-compatible tool. Test orderbook integrations with the MarketCore SDK.

npm install @risechains/marketcore-sdk

const rise = new RiseSDK({
  rpcUrl: "https://rpc.risechains.com",
  chainId: 11155911
});

// Place an order on the testnet orderbook
await rise.placeOrder({
  market: "BTC-PERP",
  side: "buy",
  price: 42000,
  size: 0.1
});

Start building on testnet

Connect your wallet and deploy your first contract on RISE.