@dhedge/trading-widget 2.0.0 → 2.0.1

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.
@@ -2,3 +2,4 @@ export * from './arbitrum';
2
2
  export * from './base';
3
3
  export * from './optimism';
4
4
  export * from './polygon';
5
+ export declare const MULTI_CHAIN_SWAPPER_CONTRACT_ADDRESS = "0x4F754e0F0924afD74980886b0B479Fa1D7C58D0D";
@@ -1,6 +1,6 @@
1
1
  import { type UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { SwapDataRequest, SwapDataResponse } from 'core-kit/types';
3
- export declare const useSwapDataQuery: (variables: SwapDataRequest, options?: Omit<UseQueryOptions<SwapDataResponse | null, Error, SwapDataResponse | null, [
3
+ export declare const useSwapDataQuery: (variables: Omit<SwapDataRequest, 'fromAddress'>, options?: Omit<UseQueryOptions<SwapDataResponse | null, Error, SwapDataResponse | null, [
4
4
  string,
5
5
  SwapDataRequest
6
6
  ]>, 'queryKey' | 'queryFn'>) => import("@tanstack/react-query/build/legacy/types").UseQueryResult<SwapDataResponse | null, Error>;