rootSubscribe

(Subscription Websocket) Subscribe to receive notification anytime a new root is set by the validator.

This method will use 20 Compute Units.


Parameters

None.

Returns

result The result will be an RpcResponse JSON object with id equal to the subscription id (needed to unsubscribe).

Notification Format: The notification format is the same as seen in the getAccountInfo RPC HTTP method.

  • slot The latest slot number.

// Result
{ "jsonrpc": "2.0", "result": 0, "id": 1 }
wscat -c wss://mainnet.solana.validationcloud.io/v1/<YOUR_API_KEY_HERE>
# wait for connection
{"id":1,"jsonrpc":"2.0","method": "rootSubscribe" }
    

Last updated

Was this helpful?