2019-05-15 01:48:48 +03:00
|
|
|
import { Contract, ContractFactory } from "@ethersproject/contracts";
|
|
|
|
import { BigNumber, FixedNumber } from "@ethersproject/bignumber";
|
|
|
|
import { Signer, VoidSigner } from "@ethersproject/abstract-signer";
|
|
|
|
import { Wallet } from "@ethersproject/wallet";
|
|
|
|
import * as constants from "@ethersproject/constants";
|
|
|
|
import * as providers from "@ethersproject/providers";
|
2019-06-12 16:38:15 +03:00
|
|
|
import { Wordlist, wordlists } from "@ethersproject/wordlists";
|
2019-05-15 01:48:48 +03:00
|
|
|
import * as utils from "./utils";
|
2019-08-02 09:32:32 +03:00
|
|
|
declare const errors: {
|
|
|
|
[name: string]: string;
|
|
|
|
};
|
2019-05-15 01:48:48 +03:00
|
|
|
import { BigNumberish } from "@ethersproject/bignumber";
|
|
|
|
import { Bytes, BytesLike, Signature } from "@ethersproject/bytes";
|
|
|
|
import { Transaction, UnsignedTransaction } from "@ethersproject/transactions";
|
|
|
|
import { platform } from "./platform";
|
2019-06-12 16:38:15 +03:00
|
|
|
import { version } from "./_version";
|
2019-08-02 09:32:32 +03:00
|
|
|
declare const logger: utils.Logger;
|
2019-05-15 01:48:48 +03:00
|
|
|
import { ContractFunction, ContractReceipt, ContractTransaction, Event, EventFilter, Overrides, PayableOverrides, CallOverrides, ContractInterface } from "@ethersproject/contracts";
|
|
|
|
declare function getDefaultProvider(network?: providers.Network | string, options?: any): providers.BaseProvider;
|
2019-08-02 09:32:32 +03:00
|
|
|
export { version, Signer, Wallet, VoidSigner, getDefaultProvider, providers, Contract, ContractFactory, BigNumber, FixedNumber, constants, errors, logger, utils, wordlists, platform, ContractFunction, ContractReceipt, ContractTransaction, Event, EventFilter, Overrides, PayableOverrides, CallOverrides, ContractInterface, BigNumberish, Bytes, BytesLike, Signature, Transaction, UnsignedTransaction, Wordlist };
|