@okxweb3/coin-kaia
Version:
An kaia SDK for building Web3 wallets and applications.
9 lines (8 loc) • 432 B
TypeScript
import { ProgressCallback } from "ethers6";
export interface KeystoreAccountList {
address: string;
privateKey: string;
privateKeyList: string[];
}
export declare function decryptKeystoreList(json: string, password: Uint8Array | string, progressCallback?: ProgressCallback): Promise<KeystoreAccountList>;
export declare function decryptKeystoreListSync(json: string, password: Uint8Array | string): KeystoreAccountList;