Skip to main content
Version: 1.0

Get AVT Balance

Get the AVT balance of a specific account on the Aventus network.

await API.query.getAvtBalance(<acct>);
important

You can get the AVN_GATEWAY_URL here.

An example of how you would use this in your code could be:

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();

//replace <acct> with the actual account address
let acctAVTbalance = await API.query.getAvtBalance(<acct>);
console.log(acctAVTbalance);
}

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