Skip to main content
Version: 1.0

Get Staking Status

Returns the staking status of the given AvN account.

await API.query.getStakingStatus(<acct>);

Possible Results

  • 'isStaking'
  • 'isNotStaking'
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();

//Replace "<acct>" with the Aventus account you're trying to check.
let result = await API.query.getStakingStatus(<acct>);
console.log(result);
}

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