walletVersion
Othent JS SDK walletVersion property
Indicates what Othent (@othent/kms
) version you are using, following semver.
API
walletVersion: string;
Example usage
import { Othent } from "@othent/kms";
console.log(`Wallet Version = ${ Othent.walletVersion }`);
// or:
const othent = new Othent({ appInfo, throwErrors: false, ... });
console.log(`Wallet Version = ${ othent.walletVersion }`);
Last updated