{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "voteSubscribe"
}
{
  "jsonrpc": "2.0",
  "result": 0,
  "id": 1
}

This subscription is unstable and only available if the validator was started with the --rpc-pubsub-enable-vote-subscription flag. The format of this subscription may change in the future.

Endpoints

Websockets are available on mainnet and devnet with the following URLs:

  • Mainnet wss://mainnet.helius-rpc.com/?api-key=<API_KEY>
  • Devnet wss://devnet.helius-rpc.com/?api-key=<API_KEY>
Websockets have a 10-minute inactivity timer; implementing health checks and sending pings every minute is heavily recommended to keep the websocket connection alive.

Authorizations

api-key
string
required

Your Helius API key. You can get one for free in the dashboard.

Body

params
array

Response

result
integer

Subscription id (needed to unsubscribe)

Notification Format

The notification will be an object with the following fields:

  • hash: <string> - The vote hash
  • slots: <array> - The slots covered by the vote, as an array of u64 integers
  • timestamp: <i64|null> - The timestamp of the vote
  • signature: <string> - The signature of the transaction that contained this vote
  • votePubkey: <string> - The public key of the vote account, as base-58 encoded string
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "voteSubscribe"
}
{
  "jsonrpc": "2.0",
  "result": 0,
  "id": 1
}