@kaiachain/web3js-ext
Version:
web3.js extension for kaiachain blockchain
7 lines (6 loc) • 393 B
TypeScript
import { Wallet as EthWallet } from "web3-eth-accounts";
import { Web3BaseWalletAccount, KeyStore } from "web3-types";
import { KaiaWeb3Account } from "../index.js";
export declare class Wallet<T extends Web3BaseWalletAccount = KaiaWeb3Account> extends EthWallet<T> {
decrypt(encryptedWallets: KeyStore[], password: string, options?: Record<string, unknown> | undefined): Promise<this>;
}