walletName

Othent JS SDK walletName property

Indicates the name of the wallet, "Othent KMS" in this case.

API

walletName: string;

Example usage

import { Othent } from "@othent/kms";

console.log(`Wallet Name = ${ Othent.walletName }`);

// or:

const othent = new Othent({ appInfo, throwErrors: false, ... });

console.log(`Wallet Name = ${ othent.walletName }`);

Last updated