@dhedge/trading-widget 3.3.7 → 3.3.9
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/README.md +1 -1
- package/core-kit/const/synthetix.d.ts +0 -1
- package/core-kit/utils/synthetix.d.ts +0 -1
- package/{index-3a92f495.cjs → index-5925d2c5.cjs} +38 -38
- package/{index-828fca53.js → index-8b4eb89d.js} +2564 -2605
- package/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/{pyth-adapter-6401b7a1.cjs → pyth-adapter-4b48dc11.cjs} +1 -1
- package/{pyth-adapter-dde23792.js → pyth-adapter-920d6792.js} +1 -1
package/README.md
CHANGED
|
@@ -440,7 +440,7 @@ path: `component.meta[name]`
|
|
|
440
440
|
|
|
441
441
|
> | name | type | default value | description |
|
|
442
442
|
> | -------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
443
|
-
> | `depositSlippageWarning` | string | Excludes entry fee.
|
|
443
|
+
> | `depositSlippageWarning` | string | Excludes entry fee. | |
|
|
444
444
|
> | `withdrawSlippageWarning` | string | Slippage only applies to single asset withdrawals and withdrawals from vaults with debt positions in Aave. | |
|
|
445
445
|
> | `minSlippageWarning` | string | Flexible min slippage value that is likely enough to process the transaction. | |
|
|
446
446
|
> | `highSlippageWarning` | string | We recommend using another asset to trade with lower slippage. | |
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { Address, ChainId } from 'core-kit/types';
|
|
2
2
|
export declare const DHEDGE_SYNTHETIX_V3_ASSETS_MAP: Record<ChainId, Address>;
|
|
3
3
|
export declare const DHEDGE_SYNTHETIX_V3_VAULT_ADDRESSES: Address[];
|
|
4
|
-
export declare const DHEDGE_SYNTHETIX_V3_DEPRECATED_VAULT_ADDRESSES: Address[];
|
|
5
4
|
export declare const SYNTHETIX_V3_VAULTS_WITHDRAW_ASSET_SYMBOL_MAP: Record<string, string>;
|
|
6
5
|
export declare const SYNTHETIX_V3_POSITION_DEBT_ARGUMENTS: Record<string, string[]>;
|
|
7
6
|
export declare const WITHDRAWAL_FEE_MAP: Map<`0x${string}`, number>;
|