interface ForwarderMock {
    callStatic: {
        execute(req, overrides?): Promise<void>;
    };
    estimateGas: {
        execute(req, overrides?): Promise<BigNumber>;
    };
    filters: {};
    functions: {
        execute(req, overrides?): Promise<ContractTransaction>;
    };
    interface: ForwarderMockInterface;
    off: OnEvent<ForwarderMock>;
    on: OnEvent<ForwarderMock>;
    once: OnEvent<ForwarderMock>;
    populateTransaction: {
        execute(req, overrides?): Promise<PopulatedTransaction>;
    };
    removeListener: OnEvent<ForwarderMock>;
    attach(addressOrName): this;
    connect(signerOrProvider): this;
    deployed(): Promise<ForwarderMock>;
    execute(req, overrides?): Promise<ContractTransaction>;
    listeners<TEvent>(eventFilter?): TypedListener<TEvent>[];
    listeners(eventName?): Listener[];
    queryFilter<TEvent>(event, fromBlockOrBlockhash?, toBlock?): Promise<TEvent[]>;
    removeAllListeners<TEvent>(eventFilter): this;
    removeAllListeners(eventName?): this;
}

Hierarchy

  • BaseContract
    • ForwarderMock

Properties

callStatic: {
    execute(req, overrides?): Promise<void>;
}

Type declaration

  • execute:function
    • Parameters

      Returns Promise<void>

estimateGas: {
    execute(req, overrides?): Promise<BigNumber>;
}

Type declaration

  • execute:function
    • Parameters

      Returns Promise<BigNumber>

filters: {}

Type declaration

    functions: {
        execute(req, overrides?): Promise<ContractTransaction>;
    }

    Type declaration

    • execute:function
      • Parameters

        Returns Promise<ContractTransaction>

    interface: ForwarderMockInterface
    off: OnEvent<ForwarderMock>
    on: OnEvent<ForwarderMock>
    once: OnEvent<ForwarderMock>
    populateTransaction: {
        execute(req, overrides?): Promise<PopulatedTransaction>;
    }

    Type declaration

    • execute:function
      • Parameters

        Returns Promise<PopulatedTransaction>

    removeListener: OnEvent<ForwarderMock>

    Methods

    • Parameters

      • addressOrName: string

      Returns this

    • Parameters

      • signerOrProvider: string | Signer | Provider

      Returns this

    • Returns Promise<ForwarderMock>

    • Parameters

      Returns Promise<ContractTransaction>

    • 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