Solidus Network

v2 Devnet JSON-RPC Devnet · chain 50002

This URL accepts POST requests with a JSON-RPC 2.0 body. GET requests are not supported by the RPC server itself — that is why you are seeing this page instead of an error.

This is a single-box devnet standing up the Solidus L1 v2 two-lane stack so its execution numbers are reachable, not just quoted. It is a parallel network with its own chain-id (50002); it is not the production testnet at rpc.solidus.network.

Endpoint

https://devnet-v2.solidus.network

Live block height

curl -X POST https://devnet-v2.solidus.network \
  -H 'content-type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "solidus_getBlockHeight",
    "params": []
  }'

Call it twice — the result rises as the four co-located validators produce blocks.

Network

Chain-id50002 (v2 devnet)
ConsensusHotStuff BFT, 4 validators
Lanespayment + identity, two-lane execution

Measured single-box execution ceiling (Apple M4, docs/v2-benchmarks.md): 75.6K TPS payment lane · 17.7K ops/s identity lane · 64.9K TPS on the 95/5 mix. This devnet runs the same stack; it is a reachability endpoint, not a geo-distributed BFT benchmark.

Faucet

curl -X POST https://devnet-v2.solidus.network/faucet/ \
  -H 'content-type: application/json' \
  -d '{"address":"<your-address>"}'