I need to get the total number of NEAR token staked in NEAR Blockchain programmatically, like it is shown in the NEAR explorer(https://explorer.near.org/nodes/validators). Total Staked in NEAR Blockchain
NEAR provides JSON RPC API(https://docs.near.org/api/rpc/setup) to get some of the details by hitting respective RPC endpoints. For example, I am able to get the total number of NEAR token staked in a staking pool using below RPC constructs.
endpoint URL: https://rpc.mainnet.near.org
Header = {"Content-Type":"application/json"}
Body:
{
"jsonrpc": "2.0",
"id": 1,
"method": "query",
"params": {
"request_type": "call_function",
"finality": "final",
"account_id": "staking pool id",
"method_name": "get_total_staked_balance",
"args_base64": '{"account_id": “staking account id”}’ in base64 encoding
}
}
But there is no similar details available to get Total NEAR Staked in NEAR Blockchain. Would appreciate if someone could help me in this. Thanks.
Went through NEAR official API documentation(https://docs.near.org/api/rpc/setup), NEAR explorer codebase(https://github.com/near/near-explorer), NEAR core-contracts codebase(https://github.com/near/core-contracts)
You can use the method
EXPERIMENTAL_validators_ordered
:This will return a list with all validators and their stake:
You can also use near-cli:
near validators current