declare module "utils/keccak256" { import { Arrayish } from "utils/convert"; export function keccak256(data: Arrayish): string; } declare module "utils/properties" { export function defineReadOnly(object: any, name: any, value: any): void; export function defineFrozen(object: any, name: any, value: any): void; export type DeferredSetter = (value: any) => void; export function defineDeferredReadOnly(object: any, name: any, value: any): DeferredSetter; export function resolveProperties(object: any): Promise; export function shallowCopy(object: any): any; export function jsonCopy(object: any): any; } declare module "utils/errors" { export const UNKNOWN_ERROR = "UNKNOWN_ERROR"; export const NOT_IMPLEMENTED = "NOT_IMPLEMENTED"; export const MISSING_NEW = "MISSING_NEW"; export const CALL_EXCEPTION = "CALL_EXCEPTION"; export const INVALID_ARGUMENT = "INVALID_ARGUMENT"; export const MISSING_ARGUMENT = "MISSING_ARGUMENT"; export const UNEXPECTED_ARGUMENT = "UNEXPECTED_ARGUMENT"; export const NUMERIC_FAULT = "NUMERIC_FAULT"; export const UNSUPPORTED_OPERATION = "UNSUPPORTED_OPERATION"; export function throwError(message: string, code: string, params: any): never; export function checkNew(self: any, kind: any): void; } declare module "utils/secp256k1" { import { Arrayish } from "utils/convert"; export const N: string; export interface Signature { r: string; s: string; recoveryParam: number; v?: number; } export class KeyPair { readonly privateKey: string; readonly publicKey: string; readonly compressedPublicKey: string; readonly publicKeyBytes: Uint8Array; constructor(privateKey: Arrayish); sign(digest: Arrayish): Signature; } export function recoverPublicKey(digest: Arrayish, signature: Signature): string; export function computePublicKey(key: Arrayish, compressed?: boolean): string; export function recoverAddress(digest: Arrayish, signature: Signature): string; export function computeAddress(key: string): string; } declare module "utils/convert" { /** * Conversion Utilities * */ import { BigNumber } from "utils/bignumber"; import { Signature } from "utils/secp256k1"; export type Arrayish = string | ArrayLike; export function isArrayish(value: any): boolean; export function arrayify(value: Arrayish | BigNumber): Uint8Array; export function concat(objects: Array): Uint8Array; export function stripZeros(value: Arrayish): Uint8Array; export function padZeros(value: Arrayish, length: number): Uint8Array; export function isHexString(value: any, length?: number): boolean; export function hexlify(value: Arrayish | BigNumber | number): string; export function hexDataLength(data: string): number; export function hexDataSlice(data: string, offset: number, length?: number): string; export function hexStripZeros(value: string): string; export function hexZeroPad(value: string, length: number): string; export function splitSignature(signature: Arrayish): Signature; } declare module "utils/bignumber" { import { Arrayish } from "utils/convert"; export type BigNumberish = BigNumber | string | number | Arrayish; export class BigNumber { private readonly _bn; constructor(value: BigNumberish); fromTwos(value: BigNumberish): BigNumber; toTwos(value: BigNumberish): BigNumber; add(other: BigNumberish): BigNumber; sub(other: BigNumberish): BigNumber; div(other: BigNumberish): BigNumber; mul(other: BigNumberish): BigNumber; mod(other: BigNumberish): BigNumber; pow(other: BigNumberish): BigNumber; maskn(value: BigNumberish): BigNumber; eq(other: BigNumberish): boolean; lt(other: BigNumberish): boolean; lte(other: BigNumberish): boolean; gt(other: BigNumberish): boolean; gte(other: BigNumberish): boolean; isZero(): boolean; toNumber(): number; toString(): string; toHexString(): string; } export function isBigNumber(value: any): boolean; export function bigNumberify(value: BigNumberish): BigNumber; export const ConstantNegativeOne: BigNumber; export const ConstantZero: BigNumber; export const ConstantOne: BigNumber; export const ConstantTwo: BigNumber; export const ConstantWeiPerEther: BigNumber; } declare module "utils/rlp" { import { Arrayish } from "utils/convert"; export function encode(object: any): string; export function decode(data: Arrayish): any; } declare module "utils/address" { import { BigNumber } from "utils/bignumber"; import { Arrayish } from "utils/convert"; export function getAddress(address: string): string; export function getIcapAddress(address: string): string; export function getContractAddress(transaction: { from: string; nonce: Arrayish | BigNumber | number; }): string; } declare module "utils/utf8" { import { Arrayish } from "utils/convert"; export enum UnicodeNormalizationForm { current = "", NFC = "NFC", NFD = "NFD", NFKC = "NFKC", NFKD = "NFKD" } export function toUtf8Bytes(str: string, form?: UnicodeNormalizationForm): Uint8Array; export function toUtf8String(bytes: Arrayish): string; } declare module "utils/abi-coder" { import { Arrayish } from "utils/convert"; export type CoerceFunc = (type: string, value: any) => any; export type ParamType = { name?: string; type: string; indexed?: boolean; components?: Array; }; export const defaultCoerceFunc: CoerceFunc; export type EventFragment = { type: string; name: string; anonymous: boolean; inputs: Array; }; export type FunctionFragment = { type: string; name: string; constant: boolean; inputs: Array; outputs: Array; payable: boolean; stateMutability: string; }; export function parseParamType(type: string): ParamType; export function parseSignature(fragment: string): EventFragment | FunctionFragment; export class AbiCoder { readonly coerceFunc: CoerceFunc; constructor(coerceFunc?: CoerceFunc); encode(types: Array, values: Array): string; decode(types: Array, data: Arrayish): any; } export const defaultAbiCoder: AbiCoder; } declare module "contracts/interface" { import { ParamType } from "utils/abi-coder"; import { BigNumber, BigNumberish } from "utils/bignumber"; export class Description { readonly type: string; readonly inputs: Array; constructor(info: any); } export class Indexed { readonly type: string; readonly hash: string; constructor(value: string); } export class DeployDescription extends Description { readonly payable: boolean; encode(bytecode: string, params: Array): string; } export class FunctionDescription extends Description { readonly name: string; readonly signature: string; readonly sighash: string; readonly outputs: Array; readonly payable: boolean; encode(params: Array): string; decode(data: string): any; } export type CallTransaction = { args: Array; signature: string; sighash: string; decode: (data: string) => any; value: BigNumber; }; export class EventDescription extends Description { readonly name: string; readonly signature: string; readonly anonymous: boolean; readonly topic: string; decode(data: string, topics?: Array): any; } export class Interface { readonly abi: Array; readonly functions: Array; readonly events: Array; readonly deployFunction: DeployDescription; constructor(abi: Array | string); parseTransaction(tx: { data: string; value?: BigNumberish; }): CallTransaction; } } declare module "utils/namehash" { export function namehash(name: string): string; } declare module "providers/networks" { export type Network = { name: string; chainId: number; ensAddress?: string; }; export const networks: { "unspecified": { "chainId": number; "name": string; }; "homestead": { "chainId": number; "ensAddress": string; "name": string; }; "mainnet": { "chainId": number; "ensAddress": string; "name": string; }; "morden": { "chainId": number; "name": string; }; "ropsten": { "chainId": number; "ensAddress": string; "name": string; }; "testnet": { "chainId": number; "ensAddress": string; "name": string; }; "rinkeby": { "chainId": number; "name": string; }; "kovan": { "chainId": number; "name": string; }; "classic": { "chainId": number; "name": string; }; }; /** * getNetwork * * If the network is a the name of a common network, return that network. * Otherwise, if it is a network object, verify the chain ID is valid * for that network. Otherwise, return the network. * */ export function getNetwork(network: Network | string | number): Network; } declare module "utils/transaction" { import { BigNumber, BigNumberish } from "utils/bignumber"; import { Arrayish } from "utils/convert"; import { Signature } from "utils/secp256k1"; export interface UnsignedTransaction { to?: string; nonce?: number; gasLimit?: BigNumberish; gasPrice?: BigNumberish; data?: Arrayish; value?: BigNumberish; chainId?: number; } export interface Transaction { hash?: string; to?: string; from?: string; nonce: number; gasLimit: BigNumber; gasPrice: BigNumber; data: string; value: BigNumber; chainId: number; r?: string; s?: string; v?: number; } export type SignDigestFunc = (digest: Arrayish) => Signature; export function sign(transaction: UnsignedTransaction, signDigest: SignDigestFunc): string; export function parse(rawTransaction: Arrayish): Transaction; } declare module "providers/provider" { import { BigNumber, BigNumberish } from "utils/bignumber"; import { Arrayish } from "utils/convert"; import { Network } from "providers/networks"; import { Transaction } from "utils/transaction"; export type BlockTag = string | number; export interface Block { hash: string; parentHash: string; number: number; timestamp: number; nonce: string; difficulty: string; gasLimit: BigNumber; gasUsed: BigNumber; miner: string; extraData: string; transactions: Array; } export type TransactionRequest = { to?: string | Promise; from?: string | Promise; nonce?: number | string | Promise; gasLimit?: BigNumberish | Promise; gasPrice?: BigNumberish | Promise; data?: Arrayish | Promise; value?: BigNumberish | Promise; chainId?: number | Promise; }; export interface TransactionResponse extends Transaction { blockNumber?: number; blockHash?: string; timestamp?: number; from: string; wait: (timeout?: number) => Promise; } export interface TransactionReceipt { contractAddress?: string; transactionIndex?: number; root?: string; gasUsed?: BigNumber; logsBloom?: string; blockHash?: string; transactionHash?: string; logs?: Array; blockNumber?: number; cumulativeGasUsed?: BigNumber; status?: number; } export type Filter = { fromBlock?: BlockTag; toBlock?: BlockTag; address?: string; topics?: Array; }; export interface Log { blockNumber?: number; blockHash?: string; transactionIndex?: number; removed?: boolean; address: string; data?: string; topics?: Array; transactionHash?: string; logIndex?: number; } export function checkTransactionResponse(transaction: any): TransactionResponse; export class Provider { private _network; private _events; protected _emitted: any; private _pollingInterval; private _poller; private _lastBlockNumber; private _balances; /** * ready * * A Promise that resolves only once the provider is ready. * * Sub-classes that call the super with a network without a chainId * MUST set this. Standard named networks have a known chainId. * */ protected ready: Promise; constructor(network: string | Network); private _doPoll; resetEventsBlock(blockNumber: number): void; readonly network: Network; getNetwork(): Promise; readonly blockNumber: number; polling: boolean; pollingInterval: number; waitForTransaction(transactionHash: string, timeout?: number): Promise; getBlockNumber(): Promise; getGasPrice(): Promise; getBalance(addressOrName: string | Promise, blockTag?: BlockTag | Promise): Promise; getTransactionCount(addressOrName: string | Promise, blockTag?: BlockTag | Promise): Promise; getCode(addressOrName: string | Promise, blockTag?: BlockTag | Promise): Promise; getStorageAt(addressOrName: string | Promise, position: BigNumberish | Promise, blockTag?: BlockTag | Promise): Promise; sendTransaction(signedTransaction: string | Promise): Promise; call(transaction: TransactionRequest): Promise; estimateGas(transaction: TransactionRequest): Promise; getBlock(blockHashOrBlockTag: BlockTag | string | Promise): Promise; getTransaction(transactionHash: string): Promise; getTransactionReceipt(transactionHash: string): Promise; getLogs(filter: Filter): Promise>; getEtherPrice(): Promise; _resolveNames(object: any, keys: Array): Promise; _getResolver(name: string): Promise; resolveName(name: string | Promise): Promise; lookupAddress(address: string | Promise): Promise; doPoll(): void; perform(method: string, params: any): Promise; _startPending(): void; _stopPending(): void; on(eventName: any, listener: any): Provider; once(eventName: any, listener: any): Provider; emit(eventName: any, ...args: any[]): boolean; listenerCount(eventName?: any): number; listeners(eventName: any): Array; removeAllListeners(eventName: any): Provider; removeListener(eventName: any, listener: any): Provider; } } declare module "wallet/words" { export function getWord(index: number): string; export function getWordIndex(word: string): number; } declare module "utils/hmac" { import { Arrayish } from "utils/convert"; interface HashFunc { (): HashFunc; update(chunk: Uint8Array): HashFunc; digest(encoding: string): string; digest(): Uint8Array; } export interface HmacFunc extends HashFunc { (hashFunc: HashFunc, key: Arrayish): HmacFunc; } export function createSha256Hmac(key: Arrayish): HmacFunc; export function createSha512Hmac(key: Arrayish): HmacFunc; } declare module "utils/pbkdf2" { import { Arrayish } from "utils/convert"; import { HmacFunc } from "utils/hmac"; export interface CreateHmacFunc { (key: Arrayish): HmacFunc; } export function pbkdf2(password: Arrayish, salt: Arrayish, iterations: number, keylen: number, createHmac: CreateHmacFunc): Uint8Array; } declare module "utils/sha2" { import { Arrayish } from "utils/convert"; export function sha256(data: Arrayish): string; export function sha512(data: Arrayish): string; } declare module "wallet/hdnode" { import { Arrayish } from "utils/convert"; import { KeyPair } from "utils/secp256k1"; export class HDNode { private readonly keyPair; readonly privateKey: string; readonly publicKey: string; readonly mnemonic: string; readonly path: string; readonly chainCode: string; readonly index: number; readonly depth: number; constructor(keyPair: KeyPair, chainCode: Uint8Array, index: number, depth: number, mnemonic: string, path: string); private _derive; derivePath(path: string): HDNode; } export function fromMnemonic(mnemonic: string): HDNode; export function fromSeed(seed: Arrayish): HDNode; export function mnemonicToSeed(mnemonic: string, password?: string): string; export function mnemonicToEntropy(mnemonic: string): string; export function entropyToMnemonic(entropy: Arrayish): string; export function isValidMnemonic(mnemonic: string): boolean; } declare module "utils/random-bytes" { export function randomBytes(length: number): Uint8Array; } declare module "wallet/signing-key" { import { Arrayish } from "utils/convert"; import { HDNode } from "wallet/hdnode"; import { Signature } from "utils/secp256k1"; export class SigningKey { readonly privateKey: string; readonly publicKey: string; readonly address: string; readonly mnemonic: string; readonly path: string; private readonly keyPair; constructor(privateKey: Arrayish | HDNode); signDigest(digest: Arrayish): Signature; } export function recoverAddress(digest: Arrayish, signature: Signature): string; export function computeAddress(key: string): string; } declare module "wallet/secret-storage" { import { Arrayish } from "utils/convert"; import { SigningKey } from "wallet/signing-key"; export interface ProgressCallback { (percent: number): void; } export function isCrowdsaleWallet(json: string): boolean; export function isValidWallet(json: string): boolean; export function decryptCrowdsale(json: string, password: Arrayish | string): SigningKey; export function decrypt(json: string, password: any, progressCallback?: ProgressCallback): Promise; export function encrypt(privateKey: Arrayish | SigningKey, password: Arrayish | string, options?: any, progressCallback?: ProgressCallback): Promise; } declare module "wallet/wallet" { import { HDNode } from "wallet/hdnode"; import { ProgressCallback } from "wallet/secret-storage"; import { SigningKey } from "wallet/signing-key"; import { BlockTag, Provider, TransactionRequest, TransactionResponse } from "providers/provider"; import { BigNumber, BigNumberish } from "utils/bignumber"; import { Arrayish } from "utils/convert"; import { UnsignedTransaction } from "utils/transaction"; export interface Signer { address?: string; getAddress(): Promise; sendTransaction(transaction: UnsignedTransaction): Promise; provider: Provider; sign(transaction: UnsignedTransaction): string; getTransactionCount(blockTag?: BlockTag): Promise; estimateGas(transaction: TransactionRequest): Promise; getGasPrice(transaction?: TransactionRequest): Promise; } export class Wallet implements Signer { readonly address: string; readonly privateKey: string; private mnemonic; private path; private readonly signingKey; provider: Provider; defaultGasLimit: number; constructor(privateKey: SigningKey | HDNode | Arrayish, provider?: Provider); sign(transaction: UnsignedTransaction): string; getAddress(): Promise; getBalance(blockTag?: BlockTag): Promise; getTransactionCount(blockTag?: BlockTag): Promise; getGasPrice(): Promise; estimateGas(transaction: TransactionRequest): Promise; sendTransaction(transaction: TransactionRequest): Promise; send(addressOrName: string, amountWei: BigNumberish, options: any): Promise; static hashMessage(message: Arrayish | string): string; signMessage(message: Arrayish | string): string; static verifyMessage(message: Arrayish | string, signature: string): string; encrypt(password: Arrayish | string, options: any, progressCallback: ProgressCallback): Promise; static createRandom(options: any): Wallet; static isEncryptedWallet(json: string): boolean; static fromEncryptedWallet(json: string, password: Arrayish, progressCallback: ProgressCallback): Promise; static fromMnemonic(mnemonic: string, path?: string): Wallet; static fromBrainWallet(username: Arrayish | string, password: Arrayish | string, progressCallback: ProgressCallback): Promise; } } declare module "contracts/contract" { import { Interface } from "contracts/interface"; import { Provider, TransactionResponse } from "providers/provider"; import { Signer } from "wallet/wallet"; import { ParamType } from "utils/abi-coder"; import { BigNumber } from "utils/bignumber"; export type ContractEstimate = (...params: Array) => Promise; export type ContractFunction = (...params: Array) => Promise; export type ContractEvent = (...params: Array) => void; interface Bucket { [name: string]: T; } export type Contractish = Array | Interface | string; export class Contract { readonly address: string; readonly interface: Interface; readonly signer: Signer; readonly provider: Provider; readonly estimate: Bucket; readonly functions: Bucket; readonly events: Bucket; readonly addressPromise: Promise; readonly deployTransaction: TransactionResponse; constructor(addressOrName: string, contractInterface: Contractish, signerOrProvider: Signer | Provider); connect(signerOrProvider: Signer | Provider): Contract; deploy(bytecode: string, ...args: Array): Promise; } } declare module "contracts/index" { import { Contract } from "contracts/contract"; import { Interface } from "contracts/interface"; export { Contract, Interface }; } declare module "utils/base64" { import { Arrayish } from "utils/convert"; export function decode(textData: string): Uint8Array; export function encode(data: Arrayish): string; } declare module "utils/web" { export type ConnectionInfo = { url: string; user?: string; password?: string; allowInsecure?: boolean; }; export type ProcessFunc = (value: any) => any; export function fetchJson(url: string | ConnectionInfo, json: string, processFunc: ProcessFunc): Promise; } declare module "providers/etherscan-provider" { import { Provider } from "providers/provider"; import { Network } from "providers/networks"; export class EtherscanProvider extends Provider { readonly baseUrl: string; readonly apiKey: string; constructor(network?: Network | string, apiKey?: string); perform(method: string, params: any): Promise; getHistory(addressOrName: any, startBlock: any, endBlock: any): Promise; } } declare module "providers/fallback-provider" { import { Provider } from "providers/provider"; export class FallbackProvider extends Provider { private _providers; constructor(providers: Array); readonly providers: Provider[]; perform(method: string, params: any): any; } } declare module "providers/json-rpc-provider" { import { Network } from "providers/networks"; import { BlockTag, Provider, TransactionRequest } from "providers/provider"; import { BigNumber } from "utils/bignumber"; import { Arrayish } from "utils/convert"; import { ConnectionInfo } from "utils/web"; export function hexlifyTransaction(transaction: TransactionRequest): any; export class JsonRpcSigner { readonly provider: JsonRpcProvider; readonly _address: string; constructor(provider: JsonRpcProvider, address?: string); readonly address: string; getAddress(): Promise; getBalance(blockTag?: BlockTag): Promise; getTransactionCount(blockTag: any): Promise; sendTransaction(transaction: TransactionRequest): Promise; signMessage(message: Arrayish | string): Promise; unlock(password: any): Promise; } export class JsonRpcProvider extends Provider { readonly connection: ConnectionInfo; private _pendingFilter; constructor(url?: ConnectionInfo | string, network?: Network | string); getSigner(address: string): JsonRpcSigner; listAccounts(): Promise>; send(method: string, params: any): Promise; perform(method: string, params: any): Promise; _startPending(): void; _stopPending(): void; } } declare module "providers/infura-provider" { import { JsonRpcProvider, JsonRpcSigner } from "providers/json-rpc-provider"; import { Network } from "providers/networks"; export class InfuraProvider extends JsonRpcProvider { readonly apiAccessToken: string; constructor(network?: Network | string, apiAccessToken?: string); _startPending(): void; getSigner(address?: string): JsonRpcSigner; listAccounts(): Promise>; } } declare module "providers/web3-provider" { import { Network } from "providers/networks"; import { JsonRpcProvider } from "providers/json-rpc-provider"; export type Callback = (error: any, response: any) => void; export type AsyncProvider = { isMetaMask: boolean; host?: string; path?: string; sendAsync: (request: any, callback: Callback) => void; }; export class Web3Provider extends JsonRpcProvider { readonly _web3Provider: AsyncProvider; constructor(web3Provider: AsyncProvider, network?: Network | string); send(method: string, params: any): Promise; } } declare module "providers/index" { import { Provider } from "providers/provider"; import { Network } from "providers/networks"; import { EtherscanProvider } from "providers/etherscan-provider"; import { FallbackProvider } from "providers/fallback-provider"; import { InfuraProvider } from "providers/infura-provider"; import { JsonRpcProvider } from "providers/json-rpc-provider"; import { Web3Provider } from "providers/web3-provider"; function getDefaultProvider(network?: Network | string): FallbackProvider; export { Provider, getDefaultProvider, FallbackProvider, EtherscanProvider, InfuraProvider, JsonRpcProvider, Web3Provider, }; } declare module "utils/id" { export function id(text: string): string; } declare module "utils/solidity" { export function pack(types: Array, values: Array): string; export function keccak256(types: Array, values: Array): string; export function sha256(types: Array, values: Array): string; } declare module "utils/units" { import { BigNumber, BigNumberish } from "utils/bignumber"; export function formatUnits(value: BigNumberish, unitType?: string | number, options?: any): string; export function parseUnits(value: string, unitType?: string | number): BigNumber; export function formatEther(wei: BigNumberish, options: any): string; export function parseEther(ether: string): BigNumber; } declare module "utils/index" { import { getAddress, getContractAddress, getIcapAddress } from "utils/address"; import { AbiCoder, parseSignature } from "utils/abi-coder"; import * as base64 from "utils/base64"; import * as bigNumber from "utils/bignumber"; import * as convert from "utils/convert"; import { id } from "utils/id"; import { keccak256 } from "utils/keccak256"; import { namehash } from "utils/namehash"; import * as sha2 from "utils/sha2"; import * as solidity from "utils/solidity"; import { randomBytes } from "utils/random-bytes"; import * as RLP from "utils/rlp"; import * as utf8 from "utils/utf8"; import * as units from "utils/units"; import { fetchJson } from "utils/web"; import { parse as parseTransaction } from "utils/transaction"; const _default: { AbiCoder: typeof AbiCoder; defaultAbiCoder: AbiCoder; parseSignature: typeof parseSignature; RLP: typeof RLP; fetchJson: typeof fetchJson; etherSymbol: string; arrayify: typeof convert.arrayify; concat: typeof convert.concat; padZeros: typeof convert.padZeros; stripZeros: typeof convert.stripZeros; base64: typeof base64; bigNumberify: typeof bigNumber.bigNumberify; BigNumber: typeof bigNumber.BigNumber; hexlify: typeof convert.hexlify; toUtf8Bytes: typeof utf8.toUtf8Bytes; toUtf8String: typeof utf8.toUtf8String; namehash: typeof namehash; id: typeof id; getAddress: typeof getAddress; getIcapAddress: typeof getIcapAddress; getContractAddress: typeof getContractAddress; formatEther: typeof units.formatEther; parseEther: typeof units.parseEther; formatUnits: typeof units.formatUnits; parseUnits: typeof units.parseUnits; keccak256: typeof keccak256; sha256: typeof sha2.sha256; randomBytes: typeof randomBytes; solidityPack: typeof solidity.pack; solidityKeccak256: typeof solidity.keccak256; soliditySha256: typeof solidity.sha256; splitSignature: typeof convert.splitSignature; parseTransaction: typeof parseTransaction; }; export default _default; } declare module "wallet/index" { import { Wallet } from "wallet/wallet"; import * as HDNode from "wallet/hdnode"; import { SigningKey } from "wallet/signing-key"; export { HDNode, SigningKey, Wallet }; } declare module "index" { import { Contract, Interface } from "contracts/index"; import * as providers from "providers/index"; import * as errors from "utils/errors"; import { networks } from "providers/networks"; import utils from "utils/index"; import { HDNode, SigningKey, Wallet } from "wallet/index"; export { Wallet, HDNode, SigningKey, Contract, Interface, networks, providers, errors, utils, }; } declare module "providers/ipc-provider" { import { JsonRpcProvider } from "providers/json-rpc-provider"; import { Network } from "providers/networks"; export class IpcProvider extends JsonRpcProvider { readonly path: string; constructor(path: string, network?: Network | string); send(method: string, params: any): Promise; } } //# sourceMappingURL=ethers.d.ts.map