Skip to main content
Version: 5.0.0

Get Node Config

Get the node manager pallet's configuration values. The result contains:

  "rewardEnabled": A flag indicating if rewards are enabled or disabled,
"rewardAccount": The account address that pays out rewards,
"nodeRegistrar": The privileged account address that is able to register nodes,
"heartbeatPeriodInBlocks": The minimum number of blocks between heartbeats,
"rewardAmount": The reward amount to pay out each `rewardPeriodInBLocks`,
"rewardPeriodInBlocks": The minimum number of blocks between each reward payout,
"nodeRegistrationTransactionLifetime": The maximum number of blocks a signed node registration transaction can live for
await api.query.getNodeManagerConfig();
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.getNodeManagerConfig();
console.log(JSON.stringify(config));
}

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