Type Alias EstimateGasParameters<TChain>

EstimateGasParameters<TChain>: UnionOmit<FormattedEstimateGas<TChain>, "from"> & {
    account?: Account | Address;
} & ({
    blockNumber?: bigint;
    blockTag?: never;
} | {
    blockNumber?: never;
    blockTag?: BlockTag;
})

Type Parameters

  • TChain extends Chain | undefined = Chain | undefined