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