Skip to main content
Version: 3.5.0

Return API version

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

// Simply...
avnSdk.version;
All API utils also work in offline mode.

See the Initialise page for instructions on how to set the API in Offline mode.

Example

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

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