UNPKG

@kaiachain/ethers-ext

Version:
9 lines (8 loc) 431 B
import { ProgressCallback } from "ethers"; 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;