interface SuperAppMockWithRegistrationKey {
    callStatic: {};
    estimateGas: {};
    filters: {};
    functions: {};
    interface: SuperAppMockWithRegistrationKeyInterface;
    off: OnEvent<SuperAppMockWithRegistrationKey>;
    on: OnEvent<SuperAppMockWithRegistrationKey>;
    once: OnEvent<SuperAppMockWithRegistrationKey>;
    populateTransaction: {};
    removeListener: OnEvent<SuperAppMockWithRegistrationKey>;
    attach(addressOrName): this;
    connect(signerOrProvider): this;
    deployed(): Promise<SuperAppMockWithRegistrationKey>;
    listeners<TEvent>(eventFilter?): TypedListener<TEvent>[];
    listeners(eventName?): Listener[];
    queryFilter<TEvent>(event, fromBlockOrBlockhash?, toBlock?): Promise<TEvent[]>;
    removeAllListeners<TEvent>(eventFilter): this;
    removeAllListeners(eventName?): this;
}

Hierarchy

  • BaseContract
    • SuperAppMockWithRegistrationKey

Properties

callStatic: {}

Type declaration

    estimateGas: {}

    Type declaration

      filters: {}

      Type declaration

        functions: {}

        Type declaration

          interface: SuperAppMockWithRegistrationKeyInterface
          populateTransaction: {}

          Type declaration

            removeListener: OnEvent<SuperAppMockWithRegistrationKey>

            Methods

            • 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