ethers.js/packages/wallet/lib.esm/index.d.ts

30 lines
1.6 KiB
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
import { Provider, TransactionRequest } from "@ethersproject/abstract-provider";
import { ExternallyOwnedAccount, Signer } from "@ethersproject/abstract-signer";
import { Bytes, BytesLike, SignatureLike } from "@ethersproject/bytes";
2020-01-19 05:48:12 +03:00
import { Mnemonic } from "@ethersproject/hdnode";
2019-05-15 01:48:48 +03:00
import { SigningKey } from "@ethersproject/signing-key";
import { ProgressCallback } from "@ethersproject/json-wallets";
import { Wordlist } from "@ethersproject/wordlists";
2019-05-15 01:48:48 +03:00
export declare class Wallet extends Signer implements ExternallyOwnedAccount {
readonly address: string;
readonly provider: Provider;
readonly _signingKey: () => SigningKey;
2020-01-19 05:48:12 +03:00
readonly _mnemonic: () => Mnemonic;
2019-05-15 01:48:48 +03:00
constructor(privateKey: BytesLike | ExternallyOwnedAccount | SigningKey, provider?: Provider);
2020-01-19 05:48:12 +03:00
readonly mnemonic: Mnemonic;
2019-05-15 01:48:48 +03:00
readonly privateKey: string;
readonly publicKey: string;
getAddress(): Promise<string>;
connect(provider: Provider): Wallet;
signTransaction(transaction: TransactionRequest): Promise<string>;
signMessage(message: Bytes | string): Promise<string>;
encrypt(password: Bytes | string, options?: any, progressCallback?: ProgressCallback): Promise<string>;
/**
* Static methods to create Wallet instances.
*/
static createRandom(options?: any): Wallet;
static fromEncryptedJson(json: string, password: Bytes | string, progressCallback?: ProgressCallback): Promise<Wallet>;
static fromMnemonic(mnemonic: string, path?: string, wordlist?: Wordlist): Wallet;
}
export declare function verifyMessage(message: Bytes | string, signature: SignatureLike): string;