import { Abi } from 'abitype'; import BaseContract, { ContractReadFunctionNames, EstimateGasFunction, SafeContractFunction } from '../common/BaseContract'; /** * Represents the base contract type for an ExtensibleFallbackHandler contract. * * @template ExtensibleFallbackHandlerContractAbi - The ABI of the ExtensibleFallbackHandler contract. * @type {ExtensibleFallbackHandlerBaseContract} */ type ExtensibleFallbackHandlerBaseContract = BaseContract> & { estimateGas: EstimateGasFunction; addSupportedInterfaceBatch: SafeContractFunction; removeSupportedInterfaceBatch: SafeContractFunction; setDomainVerifier: SafeContractFunction; setSafeMethod: SafeContractFunction; setSupportedInterface: SafeContractFunction; }; export default ExtensibleFallbackHandlerBaseContract; //# sourceMappingURL=ExtensibleFallbackHandlerBaseContract.d.ts.map