Comment on page
platform.getMinStake
Get the minimum amount of AVAX required to validate the Primary Network and the minimum amount of AVAX that can be delegated.
platform.getMinStake() ->
{
minValidatorStake : uint64,
minDelegatorStake : uint64
}
Request
curl -X POST --data '{
"jsonrpc":"2.0",
"id" :1,
"method" :"platform.getMinStake"
}' -H 'content-type:application/json;' https://ava-mainnet.blastapi.io/<project-id>/ext/P
Result
{
"jsonrpc": "2.0",
"result": {
"minValidatorStake": "2000000000000",
"minDelegatorStake": "25000000000"
},
"id": 1
}
Last modified 1yr ago