Flow EVM Testnet RPC endpoint
Flow EVM Testnet (chain ID 545) is served over HTTPS POST JSON-RPC 2.0. Full and archive nodes back the endpoint, supporting standard EVM methods, historical state, debug_* methods. Every plan includes Flow EVM Testnet, including Free.
Network information
| Network | Flow EVM Testnet |
| Chain ID | 545 |
| Endpoint | https://rpc.solidrpc.io/YOUR_API_KEY/evm/545 |
| Type | Testnet · L1 |
| Native currency | FLOW |
| Node types | Full + Archive |
| Methods | standard, debug |
| Protocol | HTTPS JSON-RPC 2.0 (no WebSocket) |
Quickstart
Fetch the latest Flow EVM 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/545 \
-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 Flow EVM 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/545 \
-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 not available on this chain; use debug_traceTransaction and debug_traceBlockByNumber instead.
Details on archive nodes and tracing.
Limits and errors
Quotas and rate limits are account-wide, not per-chain. Method calls to Flow EVM Testnet draw from the same response-unit quota and rate limit as every other network. Error bodies are identical everywhere; see the error reference.