@dhedge/trading-widget 3.18.1 → 3.18.2

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.
@@ -11,6 +11,7 @@ export declare const TRADING_PANEL_LOG_EVENT: {
11
11
  WITHDRAWAL: string;
12
12
  TRADING_SETTINGS_OPENED: string;
13
13
  INFINITE_ALLOWANCE_CHANGE: string;
14
+ BATCH_TRANSACTIONS_CHANGE: string;
14
15
  };
15
16
  export declare const LOG_EVENT_BY_TRANSACTION_ACTION_MAP: Record<TransactionAction, string[]>;
16
17
  /**
@@ -36,4 +37,8 @@ export declare const TRADING_LOG_EVENT_PARAM: {
36
37
  NAME: string;
37
38
  TYPE: string;
38
39
  };
40
+ IS_BATCH_TRANSACTIONS_ENABLED: {
41
+ NAME: string;
42
+ TYPE: string;
43
+ };
39
44
  };
@@ -10,3 +10,4 @@ export { useProjectedEarningsCore } from './projected-earnings/use-projected-ear
10
10
  export { useSwapDataQuery } from './use-swap-data-query';
11
11
  export { useSendTokenDebouncedValue } from './use-send-token-debounced-value';
12
12
  export { useEasySwapperTrackedAssets } from './use-easy-swapper-tracked-assets';
13
+ export { useIsBatchContractWritesTrading } from './use-is-batch-contract-writes-trading';
@@ -0,0 +1 @@
1
+ export declare const useIsBatchContractWritesTrading: () => boolean;