@dhedge/trading-widget 3.10.0-canary.7 → 3.10.0

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.
@@ -1,5 +1,8 @@
1
1
  import type { PoolContractCallParams } from 'core-kit/types';
2
- export declare const usePoolDynamic: ({ address, chainId }: PoolContractCallParams) => import("wagmi").UseReadContractsReturnType<readonly [{
2
+ type UsePoolDynamicParams = PoolContractCallParams & {
3
+ enabled?: boolean;
4
+ };
5
+ export declare const usePoolDynamic: ({ address, chainId, enabled, }: UsePoolDynamicParams) => import("wagmi").UseReadContractsReturnType<readonly [{
3
6
  readonly address: `0x${string}`;
4
7
  readonly abi: readonly [{
5
8
  readonly inputs: readonly [{
@@ -553,3 +556,4 @@ export declare const usePoolDynamic: ({ address, chainId }: PoolContractCallPara
553
556
  exitFee: string | undefined;
554
557
  managerAddress: string | undefined;
555
558
  }>;
559
+ export {};