Chain Metrics
Real-time
- Tx/s
- Mgas/s
- KB/s
RPC Performance
Last 30 days
Powered by
- Latency
- 2.32ms
- Success Rate
- 100%
- Uptime
- 100%
Network Information
- Network Name
- zircuit-mainnet
- Chain ID
- Gas Token
- Framework
- OP Stack
- Settlement Layer
- Ethereum
- Data Availability
- Ethereum DA
- Block Gas Limit
Public RPC
- HTTPS
- WSS
- Rate limited to 100 RPS and not for production.
Conduit Nodes
Gain access to unrestricted RPC endpoints of 250 - 10,000 RPS.
Getting Started
Make your first RPC request
You'll need the network's RPC URL with a Conduit API key appended to it.
1
Get an API key
This example fetches a network's latest block number.
2
Write a request
This example fetches a network's latest block number.
Request
1curl -X POST \2-H 'Content-Type: application/json' \3-d '{"jsonrpc":"2.0","id":"1","method":"eth_blockNumber","params":[]}' \4https://mainnet.zircuit.com/API_KEY
3
Add RPC URL and API key
Supported networks can be found in the Conduit app, under the Endpoints tab of your API key page.
4
Send request
Below is an example response from the request above.
Response
{"jsonrpc":"2.0","result":"0x430905","id":"1"}