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.
- Example
- Example Result
- JSON-RPC
- JSON-RPC Output
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();
})();
"currentRewardPeriodIndex": 9,
"oldestUnpaidRewardPeriodIndex": 9,
"totalRegisteredNodes": 6
REQUEST
POST https://AVN_GATEWAY_URL/query
HEADERS
Content-Type: application/json Authorization': bearer <awtToken>
JSON-RPC Example
curl https://AVN_GATEWAY_URL/query
-X POST
-H "Content-Type: application/json"
-H "Authorization: bearer <awtToken>"
-d '{"jsonrpc":"2.0", "method":"getNodeManagerInfo", "params":{}, "id":1}'
note
result - A JSON object with information about the status of node manager pallet.
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"currentRewardPeriodIndex": 9,
"oldestUnpaidRewardPeriodIndex": 9,
"totalRegisteredNodes": 6
}
}