Learn getVersion use cases, code examples, request parameters, response structure, and tips.
getVersion
RPC method returns the current Solana software version running on the queried RPC node. This includes the solana-core
version string and a feature-set
identifier.
This method is useful for verifying the version of a node you are interacting with or for diagnostic purposes.
getClusterNodes
provides a more comprehensive view for this).result
field of the JSON-RPC response will be an object containing:
solana-core
(string): The version string of the Solana core software (e.g., “1.18.4”).feature-set
(u32): A numerical identifier for the set of features activated on the node.getVersion
RPC method, its use cases, and how to interpret its response.