Skip to main content
Version: 3.0

Return API version

Returns the API version, the connected Gateway URL and all available functions for the respective version.

// Simply...
avnSdk.version;
This also works in offline mode.

Example

const { AvnApi, SetupMode, SigningMode } = require("avn-api");
const AVN_GATEWAY_URL = "https://gateway.testnet.aventus.network/";

const singleUserOptions = {
suri: "0x5392ca60a61aea99fce14358798de93c1bc11c3696a905718738c71fae539c24", // this is from the generated example account
setupMode: SetupMode.SingleUser,
signingMode: SigningMode.SuriBased,
};

const avnSdk = new AvnApi(AVN_GATEWAY_URL, singleUserOptions);

(async () => {
await avnSdk.init();
console.log(avnSdk.version);
})();