Solidus Network

JSON-RPC Endpoint Testnet

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.

Endpoint

https://rpc.solidus.network

Example request

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

Network

ChainSolidus testnet (HotStuff BFT)
Block timeโ‰ˆ 700 ms
Validators4 (in-process dev-testnet)

Use the SDK instead of raw RPC

For TypeScript/Node, the @solidus-network/sdk package wraps this endpoint and handles signing, encoding, and error handling.

npm install @solidus-network/sdk

import { createChainClient } from '@solidus-network/sdk'

const client = createChainClient({
  rpcUrl: 'https://rpc.solidus.network',
  network: 'testnet',
  signerPrivateKey: '',
})