Skip to main content
Version: 5.0.0

Get Node Info

Get information about the node manager pallet. The result contains:

  "currentRewardPeriodIndex": The current reward period index
"oldestUnpaidRewardPeriodIndex": The older reward period index we have not paid. If reward payments are up to date, it should be the same as `currentRewardPeriodIndex`
"totalRegisteredNodes": The total number of nodes registered on chain. This includes nodes that are not connected.
await api.query.getNodeManagerInfo();
important

You can get the AVN_GATEWAY_URL here.

const { AvnApi, SetupMode, SigningMode } = require("avn-api");
const AVN_GATEWAY_URL = "gateway url of your chosen network";
const options = {
suri: "suri of your account",
setupMode: SetupMode.SingleUser,
signingMode: SigningMode.SuriBased,
};

async function main() {
await avnSdk.init();
const api = await avnSdk.apis();

let config = await api.query.getNodeManagerInfo();
console.log(JSON.stringify(config));
}

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