Skip to main content
Version: 2.4

Get Total AVT on the AVN

To get the total amount of AVT on the Aventus network:

await API.query.getTotalAvt();
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();

let totalAvt = await API.query.getTotalAvt();
console.log(totalAvt);
}

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