Skip to main content
Version: 1.0

Get the Contract Address of the AVT Token

Returns the 20 byte Ethereum address of the AVT token contract for the network you're querying.

await api.query.getAvtContractAddress();
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 contractAddress = await API.query.getAvtContractAddress();
console.log(contractAddress);
}

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