getStakeMinimumDelegation RPC Method

Returns the stake minimum delegation, in lamports.

Parameters

object optional
Configuration object containing the following fields:

commitment string optional
The level of commitment desired when querying state

Code Sample

curl https://rpc.testnet.soo.network/rpc \
-X POST \
-H "Content-Type: application/json" \
-d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getStakeMinimumDelegation",
  "params": [{
    "commitment": "finalized"
  }]
}'

Response

{
  "jsonrpc": "2.0",
  "result": {
    "context": {
      "slot": 369624
    },
    "value": 1000000
  },
  "id": 1
}

Result Details

The result is an RpcResponse JSON object with:

  • value: <u64>
    • The stake minimum delegation amount
    • Represented in lamports
    • Defines the minimum amount of stake that can be delegated to a validator