Solidus JSON-RPC
rpc.solidus.network · Solidus testnet (resets daily — no mainnet exists)
Status
checking liveness…
What this is
The JSON-RPC 2.0 endpoint for the Solidus testnet L1. It accepts POST requests with a
JSON-RPC body; a GET is not an RPC call, which is why you are seeing this page instead of
an error.
Example request
curl -X POST https://rpc.solidus.network \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"solidus_blockNumber","params":[]}'
Use the SDK
For TypeScript/Node, @solidus-network/sdk wraps this endpoint and handles signing,
encoding, and errors.
npm i @solidus-network/sdk
import { createChainClient } from '@solidus-network/sdk'
const client = createChainClient({
rpcUrl: 'https://rpc.solidus.network',
network: 'testnet',
signerPrivateKey: '<your-key>',
})
Links
| chain | Solidus testnet · HotStuff BFT |
| sdk | @solidus-network/sdk |
| explorer | explorer.solidus.network |
| docs | docs.solidus.network |
| source | github.com/solidusnetwork/protocol |