UNPKG

@vechain.energy/gas

Version:

calculate estimated gas usage for transactions

10 lines (9 loc) 295 B
type Options = { nodeOrConnex?: Connex | string; caller?: string; gasPriceCoef?: number; maxFeePerGas?: string | number; maxPriorityFeePerGas?: string | number; }; export default function estimate(clauses: Connex.VM.Clause[], _options?: Options): Promise<number>; export {};