Skip to Content
StagenetsOverview

Stagenets

Stagenets are private EVM testnets that replicate real chains by replaying their blocks.

They give you a persistent staging environment with production-like state and built-in tools for testing smart contract behaviour before launch.

Stagenets are powered by Mainnet Replay, which keeps your Stagenet in sync with the chain it replicates while preserving changes made by your own transactions.

Standard workflow

  1. Create a Stagenet for the production chain you want to test against.
  2. Push your contracts from your local Hardhat/Foundry project with the CLI.
  3. Deploy your contracts to the Stagenet using your existing scripts.
  4. Inspect each deployment in its dashboard.

Stagenets vs forks vs public testnets

EnvironmentGood forStaging fit
Local forkFast one-off tests against a snapshot of mainnet.Local and short-lived, with no shared team environment or UI for analysis.
Public testnetPublic deployment rehearsal and frontend/wallet testing.State, liquidity, oracle values, and activity differ from production.
StagenetProduction-grade staging before mainnet.A persistent private testnet that follows real chain state, with built-in tools and dashboards.

Using a Stagenet

Each Stagenet exposes a standard Ethereum JSON-RPC endpoint, so it works with your existing stack: Hardhat, Foundry, wallets, ethers.js, viem, deployment scripts, and frontends. Think of it as a drop-in upgrade for your current testnet.

Agents, scripts, and tools can also control Stagenets programmatically via the CLI and the dev_* RPC methods.

What each Stagenet includes

  • Dashboard — the Stagenet’s live overview: chain, block height, RPC URL, and recent activity.
  • Explorer — blocks and decoded transactions on your Stagenet.
  • Contracts & Wallets — a dashboard per contract and wallet, created automatically for contracts you push and deploy.
  • Tools — a faucet, the Platform Wallet, funded wallet generation, impersonation, state overrides, and function overrides.

Supported chains

Stagenets can currently replicate:

  • Ethereum
  • Base
  • Optimism
  • Arbitrum
  • Polygon
  • Monad
  • Binance Smart Chain

If you need support for another EVM chain, reach out to us.

Last updated on