1 | import Wallet from './index';
|
2 | export interface EvpKdfOpts {
|
3 | count: number;
|
4 | keysize: number;
|
5 | ivsize: number;
|
6 | digest: string;
|
7 | }
|
8 | export interface EtherWalletOptions {
|
9 | address: string;
|
10 | encrypted: boolean;
|
11 | locked: boolean;
|
12 | hash: string;
|
13 | private: string;
|
14 | public: string;
|
15 | }
|
16 | export declare function fromEtherWallet(input: string | EtherWalletOptions, password: string): Wallet;
|
17 |
|
18 |
|
19 |
|
20 | export declare function fromEtherCamp(passphrase: string): Wallet;
|
21 |
|
22 |
|
23 |
|
24 | export declare function fromKryptoKit(entropy: string, password: string): Promise<Wallet>;
|
25 |
|
26 |
|
27 |
|
28 | export declare function fromQuorumWallet(passphrase: string, userid: string): Wallet;
|
29 | declare const Thirdparty: {
|
30 | fromEtherWallet: typeof fromEtherWallet;
|
31 | fromEtherCamp: typeof fromEtherCamp;
|
32 | fromKryptoKit: typeof fromKryptoKit;
|
33 | fromQuorumWallet: typeof fromQuorumWallet;
|
34 | };
|
35 | export default Thirdparty;
|