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.
- 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.getNodeManagerConfig();
console.log(JSON.stringify(config));
}
(async () => {
await main();
})();
"rewardAccount": "5EYCAe5...RuRM",
"nodeRegistrationTransactionLifetime": "64",
"nodeRegistrar": "5C7XUCw...MF8shx",
"heartbeatPeriodInBLocks": "10",
"rewardAmount": "200000000000",
"rewardPeriodInBLocks": 14400,
"rewardEnabled": true
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":"getNodeManagerConfig", "params":{}, "id":1}'
note
result - A JSON object with a list of configuration values of the node manager pallet.
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"rewardAccount": "5EYCAe5...RuRM",
"nodeRegistrationTransactionLifetime": "64",
"nodeRegistrar": "5C7XUCw...MF8shx",
"heartbeatPeriodInBLocks": "10",
"rewardAmount": "200000000000",
"rewardPeriodInBLocks": 14400,
"rewardEnabled": true
}
}