Skip to main content
Version: 1.0

Get Active Era

Returns the current active era to call payoutStakers with, collecting any rewards due (pays out the next 250 unpaid stakers for the staking era - callable until that era is emptied).

await API.query.getActiveEra()
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.getActiveEra();
console.log(result);
}

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