UNPKG

dop-stick

Version:

Source control tooling for versionable-upgradeable smart contracts

14 lines 359 B
import { BigNumber } from 'ethers'; export interface GasInfo { gasLimit: BigNumber; gasPrice: BigNumber; maxFeePerGas?: BigNumber; maxPriorityFeePerGas?: BigNumber; } export interface GasCalculationResult { gasUsed: BigNumber; gasPrice: BigNumber; transactionHash: string; costInEth: string; } //# sourceMappingURL=gas.d.ts.map