Arc Testnet RPC endpoint
Arc Testnet (chain ID 5042002) is served over HTTPS POST JSON-RPC 2.0. Archive nodes back the endpoint, supporting standard EVM methods, historical state, trace_* methods, debug_* methods. Free, paid plans, and PAYG include Arc Testnet.
Network information
| Network | Arc Testnet |
| Chain ID | 5042002 |
| Endpoint | https://rpc.solidrpc.io/YOUR_API_KEY/evm/5042002 |
| Access | Free and paid |
| Type | Testnet · L1 |
| Native currency | USDC |
| Node types | Archive |
| Methods | standard, trace, debug, arc, txpool |
| Protocol | HTTPS JSON-RPC 2.0 (no WebSocket) |
Arc RPC extensions
Arc adds certificate and client-version methods to the standard EVM API.
curl -s -X POST 'https://rpc.solidrpc.io/{api_key}/evm/5042002' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"arc_getVersion","params":[],"id":1}'curl -s -X POST 'https://rpc.solidrpc.io/{api_key}/evm/5042002' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"arc_getCertificate","params":["0x349d11d"],"id":1}'Quickstart
Fetch the latest Arc Testnet block number. Replace YOUR_API_KEY with a key from the dashboard, new accounts start on the Free plan, no card required (see getting started):
curl https://rpc.solidrpc.io/YOUR_API_KEY/evm/5042002 \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'Archive access and tracing
There is no separate archive endpoint for Arc Testnet. Historical queries route to archive nodes automatically by block age, at no surcharge.
The debug_* tracing namespace is available:
curl https://rpc.solidrpc.io/YOUR_API_KEY/evm/5042002 \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"debug_traceTransaction","params":["0xTRANSACTION_HASH",{"tracer":"callTracer"}],"id":1}'Parity-style trace_* methods are also available.
Details on archive nodes and tracing.
Limits and errors
Quotas and rate limits are account-wide, not per-chain. Method calls to Arc Testnet draw from the same response-unit quota and rate limit as every other network. Error bodies are identical everywhere. See the error reference.