Use the [readiness endpoint](../Pantheon-API/Using-JSON-RPC-API.md#readiness-and-liveness-endpoints)
to determine when a node is ready.
!!! note
The minimum number of peers and number of blocks from the best known block for a node to be considered ready
is deployment specific.
## Transaction Nonces
The account nonce for the next transaction is obtained using [`eth_getTransactionCount`](../Reference/Pantheon-API-Methods.md#eth_gettransactioncount).
The account nonce depends on the transactions in the [transaction pool](../Using-Pantheon/Transactions/Transaction-Pool.md).
If [`eth_getTransactionCount`](../Reference/Pantheon-API-Methods.md#eth_gettransactioncount) and
[`eth_sendRawTransaction`](../Reference/Pantheon-API-Methods.md#eth_sendrawtransaction) requests for a specific account
are sent to multiple nodes, the [`eth_getTransactionCount`](../Reference/Pantheon-API-Methods.md#eth_gettransactioncount)
the account nonce and [`eea_sendRawTransaction`](../Reference/Pantheon-API-Methods.md#eea_sendrawtransaction)
to send private transactions.
To get correct account nonces when distributing requests across a cluster, do one of:
* Track the next nonce outside of the Pantheon node (as MetaMask does)
* Configure the load balancer in sticky mode so requests from a specific account are sent to a single
node unless that node is unavailable.
## Subscriptions
You can subscribe to events using:
* [RPC Pub/Sub over WebSockets](../Pantheon-API/RPC-PubSub.md)
* [Filters over HTTP](../Using-Pantheon/Accessing-Logs-Using-JSON-RPC.md)
We recommend using [RPC Pub/Sub over WebSockets](../Pantheon-API/RPC-PubSub.md) because WebSockets
connections are associated a specific node and do not require using the load balancer in sticky mode.
If using [filters over HTTP](../Using-Pantheon/Accessing-Logs-Using-JSON-RPC.md), configure the load balancer
in sticky mode to associate the subscription with a specific node.
## Recovering from Dropped Subscriptions
Subscriptions can be dropped if:
* WebSockets connection is disconnected
* Node serving the subscription is removed from the ready pool
If a subscription is dropped, events can be missed while reconnecting to a different node.
To recover dropped messages, create another subscription and follow the process for that [subscription type](../Pantheon-API/RPC-PubSub.md#subscribing):