UNPKG

@tan_hoang/test2

Version:
9 lines (8 loc) 432 B
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;