Skip to main content
Version: 1.0

Set up Complete

Now, let's test our setup and verify that we query blockchain successfully:

  • Query the AvN for data, in this case, the total amount of AVT on the AVN.

Below is a sample script on how your code should look at this point with some additions for querying the total amount of AVT on the Aventus Network. Please, see comments in the code to understand how the code is divided.

important

You can get the AVN_GATEWAY_URL here.

const AVN_API = require("avn-api");
const AVN_GATEWAY_URL = "https://testnet.gateway.aventus.io/";
const options = {
suri: "0x5392ca60a61aea99fce14358798de93c1bc11c3696a905718738c71fae539c24", // this is from the generated example account
};
const API = new AVN_API(AVN_GATEWAY_URL, options);

async function main() {
await API.init();

//Query the AVN for data, in this case, information about your account.
let accountInfo = await API.query.getAccountInfo();
console.log(accountInfo);
}

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


If you had a successful query with a similar result Congratulations! You're all set up to use the AVN Gateway.