curl --request POST \
--url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"method": "getTransactionCount",
"params": []
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": 123
}curl --request POST \
--url https://nd-326-444-187.p2pify.com/9de47db917d4f69168e3fed02217d15b \
--header 'Content-Type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"method": "getTransactionCount",
"params": []
}
'{
"jsonrpc": "<string>",
"id": 123,
"result": 123
}The SolanaDocumentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
getTransactionCount method returns the total number of transactions that the node has processed since genesis.
This method is useful for monitoring network activity and throughput over time.
commitment (string, optional) — the commitment level. Values: processed, confirmed, finalized.result (integer) — the total number of transactions processed by the node.getTransactionCount is in network monitoring dashboards that track Solana’s throughput over time. By polling this method at regular intervals, you can calculate the transactions-per-second rate and detect periods of high or low network activity.Was this page helpful?