Skip to main content
Version: 2.0

Get Staking Statistics

Returns the stats of the staking program on the AvN.

await API.query.getStakingStats();

Results Fields

  • totalStaked - the total amount of AVT actively staked.
  • minUserBond - the minimum amount of stake allowed by the chain for first time stakers. This restriction does not apply when topping up stake.
  • maxNominatorsRewardedPerValidator - the maximum number of stakers that will be rewared per validator.
  • totalStakers - the total number of stakers, excluding validators.
  • averageStaked - the average stake, calculated as totalStaked divided by total number of active stakers.
important

You can get the AVN_GATEWAY_URL here.

const AVN_API = require("avn-api");
const AVN_GATEWAY_URL = "<node_url>";
const options = {
suri: "<account_suri>",
};
const API = new AVN_API(AVN_GATEWAY_URL, options);

async function main() {
await API.init();

let result = await API.query.getStakingStats();
// Returns a request id
console.log(result);
}

(async () => {
await main();
})();