import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common"; export interface DelegateCallTransactionGuardInterface extends utils.Interface { functions: { "allowedTarget()": FunctionFragment; "checkAfterExecution(bytes32,bool)": FunctionFragment; "checkTransaction(address,uint256,bytes,uint8,uint256,uint256,uint256,address,address,bytes,address)": FunctionFragment; "supportsInterface(bytes4)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "allowedTarget" | "checkAfterExecution" | "checkTransaction" | "supportsInterface"): FunctionFragment; encodeFunctionData(functionFragment: "allowedTarget", values?: undefined): string; encodeFunctionData(functionFragment: "checkAfterExecution", values: [PromiseOrValue, PromiseOrValue]): string; encodeFunctionData(functionFragment: "checkTransaction", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue, PromiseOrValue ]): string; encodeFunctionData(functionFragment: "supportsInterface", values: [PromiseOrValue]): string; decodeFunctionResult(functionFragment: "allowedTarget", data: BytesLike): Result; decodeFunctionResult(functionFragment: "checkAfterExecution", data: BytesLike): Result; decodeFunctionResult(functionFragment: "checkTransaction", data: BytesLike): Result; decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result; events: {}; } export interface DelegateCallTransactionGuard extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: DelegateCallTransactionGuardInterface; queryFilter(event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>; listeners(eventFilter?: TypedEventFilter): Array>; listeners(eventName?: string): Array; removeAllListeners(eventFilter: TypedEventFilter): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { allowedTarget(overrides?: CallOverrides): Promise<[string]>; checkAfterExecution(arg0: PromiseOrValue, arg1: PromiseOrValue, overrides?: CallOverrides): Promise<[void]>; checkTransaction(to: PromiseOrValue, arg1: PromiseOrValue, arg2: PromiseOrValue, operation: PromiseOrValue, arg4: PromiseOrValue, arg5: PromiseOrValue, arg6: PromiseOrValue, arg7: PromiseOrValue, arg8: PromiseOrValue, arg9: PromiseOrValue, arg10: PromiseOrValue, overrides?: CallOverrides): Promise<[void]>; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise<[boolean]>; }; allowedTarget(overrides?: CallOverrides): Promise; checkAfterExecution(arg0: PromiseOrValue, arg1: PromiseOrValue, overrides?: CallOverrides): Promise; checkTransaction(to: PromiseOrValue, arg1: PromiseOrValue, arg2: PromiseOrValue, operation: PromiseOrValue, arg4: PromiseOrValue, arg5: PromiseOrValue, arg6: PromiseOrValue, arg7: PromiseOrValue, arg8: PromiseOrValue, arg9: PromiseOrValue, arg10: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; callStatic: { allowedTarget(overrides?: CallOverrides): Promise; checkAfterExecution(arg0: PromiseOrValue, arg1: PromiseOrValue, overrides?: CallOverrides): Promise; checkTransaction(to: PromiseOrValue, arg1: PromiseOrValue, arg2: PromiseOrValue, operation: PromiseOrValue, arg4: PromiseOrValue, arg5: PromiseOrValue, arg6: PromiseOrValue, arg7: PromiseOrValue, arg8: PromiseOrValue, arg9: PromiseOrValue, arg10: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; }; filters: {}; estimateGas: { allowedTarget(overrides?: CallOverrides): Promise; checkAfterExecution(arg0: PromiseOrValue, arg1: PromiseOrValue, overrides?: CallOverrides): Promise; checkTransaction(to: PromiseOrValue, arg1: PromiseOrValue, arg2: PromiseOrValue, operation: PromiseOrValue, arg4: PromiseOrValue, arg5: PromiseOrValue, arg6: PromiseOrValue, arg7: PromiseOrValue, arg8: PromiseOrValue, arg9: PromiseOrValue, arg10: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; }; populateTransaction: { allowedTarget(overrides?: CallOverrides): Promise; checkAfterExecution(arg0: PromiseOrValue, arg1: PromiseOrValue, overrides?: CallOverrides): Promise; checkTransaction(to: PromiseOrValue, arg1: PromiseOrValue, arg2: PromiseOrValue, operation: PromiseOrValue, arg4: PromiseOrValue, arg5: PromiseOrValue, arg6: PromiseOrValue, arg7: PromiseOrValue, arg8: PromiseOrValue, arg9: PromiseOrValue, arg10: PromiseOrValue, overrides?: CallOverrides): Promise; supportsInterface(interfaceId: PromiseOrValue, overrides?: CallOverrides): Promise; }; }