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

Hierarchy

  • BaseContract
    • SuperAppMock2ndLevel

Properties

callStatic: {
    afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, ctx, overrides?): Promise<string>;
    allowCompositeApp(overrides?): Promise<void>;
}

Type declaration

  • afterAgreementCreated:function
    • Parameters

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

      Returns Promise<string>

  • allowCompositeApp:function
    • Parameters

      • Optional overrides: CallOverrides

      Returns Promise<void>

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

Type declaration

  • afterAgreementCreated:function
    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • ctx: BytesLike
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

  • allowCompositeApp:function
    • Parameters

      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<BigNumber>

filters: {}

Type declaration

    functions: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, ctx, overrides?): Promise<ContractTransaction>;
        allowCompositeApp(overrides?): Promise<ContractTransaction>;
    }

    Type declaration

    • afterAgreementCreated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • ctx: BytesLike
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    • allowCompositeApp:function
      • Parameters

        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<ContractTransaction>

    interface: SuperAppMock2ndLevelInterface
    off: OnEvent<SuperAppMock2ndLevel>
    once: OnEvent<SuperAppMock2ndLevel>
    populateTransaction: {
        afterAgreementCreated(arg0, arg1, arg2, arg3, arg4, ctx, overrides?): Promise<PopulatedTransaction>;
        allowCompositeApp(overrides?): Promise<PopulatedTransaction>;
    }

    Type declaration

    • afterAgreementCreated:function
      • Parameters

        • arg0: string
        • arg1: string
        • arg2: BytesLike
        • arg3: BytesLike
        • arg4: BytesLike
        • ctx: BytesLike
        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    • allowCompositeApp:function
      • Parameters

        • Optional overrides: Overrides & {
              from?: string;
          }

        Returns Promise<PopulatedTransaction>

    removeListener: OnEvent<SuperAppMock2ndLevel>

    Methods

    • Parameters

      • arg0: string
      • arg1: string
      • arg2: BytesLike
      • arg3: BytesLike
      • arg4: BytesLike
      • ctx: BytesLike
      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Parameters

      • Optional overrides: Overrides & {
            from?: string;
        }

      Returns Promise<ContractTransaction>

    • Parameters

      • addressOrName: string

      Returns this

    • Parameters

      • signerOrProvider: string | Signer | Provider

      Returns this

    • Returns Promise<SuperAppMock2ndLevel>

    • 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