interface SuperAppMockReturningInvalidCtx {
    callStatic: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    };
    estimateGas: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    };
    filters: {};
    functions: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<[BigNumber]>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<[BigNumber]>;
    };
    interface: SuperAppMockReturningInvalidCtxInterface;
    off: OnEvent<SuperAppMockReturningInvalidCtx>;
    on: OnEvent<SuperAppMockReturningInvalidCtx>;
    once: OnEvent<SuperAppMockReturningInvalidCtx>;
    populateTransaction: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<PopulatedTransaction>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<PopulatedTransaction>;
    };
    removeListener: OnEvent<SuperAppMockReturningInvalidCtx>;
    afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    attach(addressOrName): this;
    connect(signerOrProvider): this;
    deployed(): Promise<SuperAppMockReturningInvalidCtx>;
    listeners<TEvent>(eventFilter?): TypedListener<TEvent>[];
    listeners(eventName?): Listener[];
    queryFilter<TEvent>(event, fromBlockOrBlockhash?, toBlock?): Promise<TEvent[]>;
    removeAllListeners<TEvent>(eventFilter): this;
    removeAllListeners(eventName?): this;
}

Hierarchy

  • BaseContract
    • SuperAppMockReturningInvalidCtx

Properties

callStatic: {
    afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
}

Type declaration

  • afterAgreementCreated:function
    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

  • afterAgreementTerminated:function
    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

estimateGas: {
    afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
    afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<BigNumber>;
}

Type declaration

  • afterAgreementCreated:function
    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

  • afterAgreementTerminated:function
    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

filters: {}

Type declaration

    functions: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<[BigNumber]>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<[BigNumber]>;
    }

    Type declaration

    • afterAgreementCreated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • arg5: BytesLike
        • Optional overrides: CallOverrides

        Returns Promise<[BigNumber]>

    • afterAgreementTerminated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • arg5: BytesLike
        • Optional overrides: CallOverrides

        Returns Promise<[BigNumber]>

    interface: SuperAppMockReturningInvalidCtxInterface
    populateTransaction: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<PopulatedTransaction>;
        afterAgreementTerminated(arg0, arg1, arg2, arg3, arg4, arg5, overrides?): Promise<PopulatedTransaction>;
    }

    Type declaration

    • afterAgreementCreated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • arg5: BytesLike
        • Optional overrides: CallOverrides

        Returns Promise<PopulatedTransaction>

    • afterAgreementTerminated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • arg5: BytesLike
        • Optional overrides: CallOverrides

        Returns Promise<PopulatedTransaction>

    removeListener: OnEvent<SuperAppMockReturningInvalidCtx>

    Methods

    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • arg5: BytesLike
      • Optional overrides: CallOverrides

      Returns Promise<BigNumber>

    • Parameters

      • addressOrName: string

      Returns this

    • Parameters

      • signerOrProvider: string | Signer | Provider

      Returns this

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • Optional eventFilter: TypedEventFilter<TEvent>

      Returns TypedListener<TEvent>[]

    • Parameters

      • Optional eventName: string

      Returns Listener[]

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • event: TypedEventFilter<TEvent>
      • Optional fromBlockOrBlockhash: string | number
      • Optional toBlock: string | number

      Returns Promise<TEvent[]>

    • Type Parameters

      • TEvent extends TypedEvent<any, any>

      Parameters

      • eventFilter: TypedEventFilter<TEvent>

      Returns this

    • Parameters

      • Optional eventName: string

      Returns this

    Generated using TypeDoc