ethers#CallOverrides TypeScript Examples

The following examples show how to use ethers#CallOverrides. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Auth.d.ts    From nova with GNU Affero General Public License v3.0 6 votes vote down vote up
functions: {
    authority(overrides?: CallOverrides): Promise<[string]>;

    owner(overrides?: CallOverrides): Promise<[string]>;

    setAuthority(
      newAuthority: string,
      overrides?: Overrides & { from?: string | Promise<string> }
    ): Promise<ContractTransaction>;

    setOwner(
      newOwner: string,
      overrides?: Overrides & { from?: string | Promise<string> }
    ): Promise<ContractTransaction>;
  };
Example #2
Source File: Hypervisor.d.ts    From hypervisor with The Unlicense 6 votes vote down vote up
getBasePosition(
    overrides?: CallOverrides
  ): Promise<
    [BigNumber, BigNumber, BigNumber] & {
      liquidity: BigNumber;
      amount0: BigNumber;
      amount1: BigNumber;
    }
  >;
Example #3
Source File: Auth.d.ts    From nova with GNU Affero General Public License v3.0 5 votes vote down vote up
authority(overrides?: CallOverrides): Promise<string>;