@hiveio/beekeeper / IBeekeeperWallet
Interface: IBeekeeperWallet
Extends
Properties
isTemporary
readonly
isTemporary:boolean
Indicates if wallet exists only in memory or is saved into a file.
Inherited from
Defined in
name
readonly
name:string
Name of this wallet
Inherited from
Defined in
unlocked?
readonly
optional
unlocked:IBeekeeperUnlockedWallet
Indicates if the wallet is unlocked. If the wallet is locked, this property will be undefined. IBeekeeperUnlockedWallet type otherwise
Defined in
src/detailed/interfaces.ts:187
Methods
close()
close():
IBeekeeperSession
Ensures that this wallet is locked, then closes it
Returns
Beekeeper session owning the closed wallet
Throws
on any beekeeper API-related error (error parsing response, invalid input, timeout error, fs sync error etc.)
Inherited from
Defined in
unlock()
unlock(
password
):IBeekeeperUnlockedWallet
Unlocks this wallet
Parameters
password
string
password to the wallet
Returns
Unlocked Beekeeper wallet
Throws
on any beekeeper API-related error (error parsing response, invalid input, timeout error, fs sync error etc.)