Learn getStakeMinimumDelegation use cases, code examples, request parameters, response structure, and tips.
getStakeMinimumDelegation
RPC method returns the current minimum amount of lamports required to create a new stake delegation on the Solana network. This value can change over time due to network governance or updates.
config
(object, optional): Configuration object containing the following field:
commitment
(string, optional): Specifies the commitment level to use when querying the value. If omitted, the default commitment of the RPC node is used (usually finalized
).result
field of the JSON-RPC response is an RpcResponse
object containing:
context
(object): An RpcResponseContext
object with the following field:
slot
(u64
): The slot at which the data was retrieved.value
(u64
): The minimum stake delegation amount in lamports.finalized
provides the most certainty, while processed
might give a newer value that hasn’t been fully confirmed by the cluster.getStakeMinimumDelegation
RPC method to retrieve the minimum required stake delegation on Solana.