RISE Logo-Light

Network Details

Add RISE Mainnet to your wallet or development environment

Use the information below to connect and submit transactions to RISE.

PropertyMainnet
Network NameRISE Mainnet
Chain ID4153
RPC URLhttps://rpc.risechain.com/
WSS URLwss://rpc.risechain.com/ws
Explorerhttps://explorer.risechain.com/
Currency SymbolETH

Using with Development Tools

Hardhat Configuration

// hardhat.config.js
module.exports = {
  networks: {
    riseMainnet: {
      url: "https://rpc.risechain.com/",
      chainId: 4153,
      accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : []
    }
  }
};

Foundry Configuration

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

[rpc_endpoints]
rise_mainnet = "https://rpc.risechain.com/"

[blockscout]
rise_mainnet = { key = "", url = "https://explorer.risechain.com/api" }

Gas & Transaction Details

PropertyValue
Max Gas Limit per Transaction16M
Nonce OrderEnforced on-chain
Data Storage FeesSame as L1
Blocks to Finality259,200 (~3 days)