import { TransactionResponse } from "@ethersproject/providers"; import { BigNumber } from "@ethersproject/bignumber"; import { BuidlerRuntimeEnvironment, DeploymentsExtension, Artifact, EthereumProvider } from "@nomiclabs/buidler/types"; import { PartialExtension } from "./types"; export declare function addHelpers(env: BuidlerRuntimeEnvironment, partialExtension: PartialExtension, // TODO getArtifact: (name: string) => Promise, onPendingTx: (txResponse: TransactionResponse, name?: string, data?: any) => Promise, getGasPrice: () => Promise, log: (...args: any[]) => void, print: (msg: string) => void): DeploymentsExtension; export declare function waitForTx(ethereum: EthereumProvider, txHash: string, isContract: boolean): Promise; //# sourceMappingURL=helpers.d.ts.map