@dhedge/trading-widget 2.0.9 → 2.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -736,5 +736,8 @@ declare const getPoolContracts: ({ account, chainId, address, }: PoolContractAcc
736
736
  readonly chainId: number;
737
737
  }];
738
738
  type PoolsMap = Record<Address, DynamicPoolContractData>;
739
- export declare const usePoolsDynamic: () => UseReadContractsReturnType<ReturnType<typeof getPoolContracts>, true, PoolsMap>;
739
+ type UsePoolsDynamicParams = {
740
+ account?: Address;
741
+ };
742
+ export declare const usePoolsDynamic: ({ account, }?: UsePoolsDynamicParams) => UseReadContractsReturnType<ReturnType<typeof getPoolContracts>, true, PoolsMap>;
740
743
  export {};