import { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers"; import { FunctionFragment, Result } from "@ethersproject/abi"; import { Listener, Provider } from "@ethersproject/providers"; import { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common"; export interface ISuperAppInterface extends utils.Interface { functions: { "afterAgreementCreated(address,address,bytes32,bytes,bytes,bytes)": FunctionFragment; "afterAgreementTerminated(address,address,bytes32,bytes,bytes,bytes)": FunctionFragment; "afterAgreementUpdated(address,address,bytes32,bytes,bytes,bytes)": FunctionFragment; "beforeAgreementCreated(address,address,bytes32,bytes,bytes)": FunctionFragment; "beforeAgreementTerminated(address,address,bytes32,bytes,bytes)": FunctionFragment; "beforeAgreementUpdated(address,address,bytes32,bytes,bytes)": FunctionFragment; }; encodeFunctionData(functionFragment: "afterAgreementCreated", values: [string, string, BytesLike, BytesLike, BytesLike, BytesLike]): string; encodeFunctionData(functionFragment: "afterAgreementTerminated", values: [string, string, BytesLike, BytesLike, BytesLike, BytesLike]): string; encodeFunctionData(functionFragment: "afterAgreementUpdated", values: [string, string, BytesLike, BytesLike, BytesLike, BytesLike]): string; encodeFunctionData(functionFragment: "beforeAgreementCreated", values: [string, string, BytesLike, BytesLike, BytesLike]): string; encodeFunctionData(functionFragment: "beforeAgreementTerminated", values: [string, string, BytesLike, BytesLike, BytesLike]): string; encodeFunctionData(functionFragment: "beforeAgreementUpdated", values: [string, string, BytesLike, BytesLike, BytesLike]): string; decodeFunctionResult(functionFragment: "afterAgreementCreated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "afterAgreementTerminated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "afterAgreementUpdated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "beforeAgreementCreated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "beforeAgreementTerminated", data: BytesLike): Result; decodeFunctionResult(functionFragment: "beforeAgreementUpdated", data: BytesLike): Result; events: {}; } export interface ISuperApp extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ISuperAppInterface; 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: { afterAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; beforeAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise<[string] & { cbdata: string; }>; beforeAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise<[string] & { cbdata: string; }>; beforeAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise<[string] & { cbdata: string; }>; }; afterAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; beforeAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; callStatic: { afterAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; afterAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; afterAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; }; filters: {}; estimateGas: { afterAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; beforeAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; }; populateTransaction: { afterAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; afterAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, cbdata: BytesLike, ctx: BytesLike, overrides?: Overrides & { from?: string | Promise; }): Promise; beforeAgreementCreated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementTerminated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; beforeAgreementUpdated(superToken: string, agreementClass: string, agreementId: BytesLike, agreementData: BytesLike, ctx: BytesLike, overrides?: CallOverrides): Promise; }; }