@dhedge/trading-widget 1.2.6 → 1.2.7
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.
- package/core-kit/const/default-data.d.ts +3 -1
- package/{index-49e86eb7.js → index-38597836.js} +9454 -9434
- package/index-fb58ff86.cjs +207 -0
- package/index.cjs +1 -1
- package/index.d.ts +1 -1
- package/index.js +218 -217
- package/package.json +1 -1
- package/{pyth-adapter-8eca747e.cjs → pyth-adapter-064ddb92.cjs} +1 -1
- package/{pyth-adapter-b5e265c0.js → pyth-adapter-c6163410.js} +1 -1
- package/trading-widget/providers/config-provider/config-provider.types.d.ts +1 -1
- package/index-8d970364.cjs +0 -207
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ChainId } from 'core-kit/types';
|
|
1
2
|
import type { PoolConfig } from 'core-kit/types/config.types';
|
|
2
3
|
import type { DepositMethodName } from 'core-kit/types/trading-panel.types';
|
|
3
4
|
import type { PoolDepositMethodName } from 'core-kit/types/trading.types';
|
|
@@ -8,7 +9,8 @@ export declare const EXTREMELY_SHORT_POLLING_INTERVAL = 15000;
|
|
|
8
9
|
export declare const DEFAULT_RETRIES_NUMBER = 5;
|
|
9
10
|
export declare const DEFAULT_LOCK_TIME: string;
|
|
10
11
|
export declare const CUSTOM_LOCK_TIME: string;
|
|
11
|
-
export declare const
|
|
12
|
+
export declare const EXTENDED_CUSTOM_LOCK_TIME: string;
|
|
13
|
+
export declare const DEFAULT_DEPOSIT_LOCKTIME_MAP: Record<ChainId, Record<PoolDepositMethodName, string>>;
|
|
12
14
|
export declare const EMPTY_POOL_CONFIG: PoolConfig;
|
|
13
15
|
export declare const DEFAULT_DEPOSIT_METHOD: DepositMethodName;
|
|
14
16
|
export declare const DEFAULT_WITHDRAW_SLIPPAGE = 3;
|