import type { Abi } from 'abitype'; import type { Account } from '../../accounts/types.js'; import { type ParseAccountErrorType } from '../../accounts/utils/parseAccount.js'; import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Chain } from '../../types/chain.js'; import type { ContractFunctionArgs, ContractFunctionName, ContractFunctionParameters, GetValue } from '../../types/contract.js'; import type { UnionOmit } from '../../types/utils.js'; import { type EncodeFunctionDataErrorType } from '../../utils/abi/encodeFunctionData.js'; import { type GetContractErrorReturnType } from '../../utils/errors/getContractError.js'; import { type EstimateTotalFeeErrorType, type EstimateTotalFeeParameters } from './estimateTotalFee.js'; export type EstimateContractTotalFeeParameters = ContractFunctionName, args extends ContractFunctionArgs = ContractFunctionArgs, chain extends Chain | undefined = Chain | undefined, account extends Account | undefined = undefined, chainOverride extends Chain | undefined = Chain | undefined> = ContractFunctionParameters & UnionOmit, 'data' | 'to' | 'value'> & GetValue extends EstimateTotalFeeParameters ? EstimateTotalFeeParameters['value'] : EstimateTotalFeeParameters['value']>; export type EstimateContractTotalFeeReturnType = bigint; export type EstimateContractTotalFeeErrorType = GetContractErrorReturnType; /** * Estimates the L1 data fee + L2 fee to execute an L2 contract write. * * @param client - Client to use * @param parameters - {@link EstimateContractTotalFeeParameters} * @returns The gas estimate (in wei). {@link EstimateContractTotalFeeReturnType} * * @example * import { createPublicClient, http, parseAbi } from 'viem' * import { optimism } from 'viem/chains' * import { estimateContractTotalFee } from 'viem/op-stack' * * const client = createPublicClient({ * chain: optimism, * transport: http(), * }) * const totalFee = await estimateContractTotalFee(client, { * address: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2', * abi: parseAbi(['function mint() public']), * functionName: 'mint', * account: '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266', * }) */ export declare function estimateContractTotalFee, args extends ContractFunctionArgs, chain extends Chain | undefined, account extends Account | undefined = undefined, chainOverride extends Chain | undefined = undefined>(client: Client, parameters: EstimateContractTotalFeeParameters): Promise; //# sourceMappingURL=estimateContractTotalFee.d.ts.map