ethers-tools
Version:
Contains tools for work with web3 contracts.
26 lines (23 loc) • 522 B
TypeScript
import {
Contract,
FeeData,
Provider,
Signer,
TransactionResponse,
} from 'ethers';
import { PriorityCallOptions } from '../entities';
export declare const priorityCall: (
provider: Provider,
signer: Signer,
contract: Contract,
method: string,
args: any[],
options: PriorityCallOptions
) => Promise<TransactionResponse>;
declare const gatherOriginalData: (
provider: Provider,
contract: Contract,
method: string,
args: any[],
options: PriorityCallOptions
) => Promise<[FeeData, bigint]>;