Plasma RPC with Dwellir
Plasma Mainnet Beta RPC endpoints, EVM JSON-RPC quickstarts, and integration guidance for stablecoin payment applications.
Plasma RPC
With Dwellir, you get access to our global Plasma network which always routes your API requests to the nearest available location, ensuring low latency and the fastest speeds.
Get your API keyWhy build on Plasma?
Plasma is an EVM Layer 1 for stablecoin payments. It runs PlasmaBFT consensus and a Reth execution client. Block time is 1 second. You pay gas in XPL.
Existing Solidity contracts deploy without changes. Hardhat, Foundry, ethers.js, viem, and MetaMask work as they do on Ethereum. Payment apps and wallets use Plasma for 1 second confirmation and standard Ethereum JSON-RPC.
Stablecoin payments
- 1 second blocks - confirmation times that fit checkout and payout flows
- XPL gas - EIP-1559 fees paid in the native token
- EVM contracts - keep the Solidity you already ship
Standard Ethereum tooling
- JSON-RPC - the same methods you use on Ethereum
- Debug and txpool - Dwellir exposes
debug_*andtxpool_*on this endpoint - HTTPS and WebSocket - including
eth_subscribefor newHeads
Network facts
- Chain ID 9745 - Plasma Mainnet Beta
- Explorer - plasmascan.to
- Full nodes - Dwellir does not advertise archive state
Quick start with Plasma
Connect to Plasma Mainnet Beta with Dwellir:
curl -sS -X POST https://api-plasma-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots> \ -H 'Content-Type: application/json' \ -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Installation and setup
Network information
| Parameter | Value | Details |
|---|---|---|
| Chain ID | 9745 | Plasma Mainnet Beta |
| Block time | 1 second | PlasmaBFT |
| Native token | XPL | 18 decimals |
| RPC standard | Ethereum | JSON-RPC 2.0 |
| Node type | Full | Not archive |
API reference
Plasma supports standard Ethereum JSON-RPC methods. Dwellir's endpoint also exposes debug and txpool. Trace methods are not available on this endpoint.
Add Plasma to MetaMask
Add a custom network.
- Network name: Plasma Mainnet Beta
- RPC URL:
https://api-plasma-mainnet.n.dwellir.com/YOUR_API_KEY - Chain ID: 9745
- Currency: XPL
- Explorer: https://plasmascan.to/
rollup_getInfo - Get Rollup Information
Optimism compatibility note for rollup_getInfo. Dwellir's public Optimism endpoints do not expose rollup metadata on the shared archive surface.
eth_blockNumber
Get the current block height on Plasma. Essential for syncing dApps, monitoring transaction confirmations, and blockchain state tracking.

