@dhedge/trading-widget 3.4.0 → 3.5.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.
package/README.md CHANGED
@@ -439,7 +439,7 @@ path: `component.meta[name]`
439
439
  </summary>|
440
440
 
441
441
  > | name | type | default value | description |
442
- > | -------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
442
+ > |----------------------------------| ------ |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| ----------- |
443
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. | |
@@ -483,6 +483,7 @@ path: `component.meta[name]`
483
483
  > | `connectWallet` | string | Connect Wallet | |
484
484
  > | `minimumPurchase` | string | Minimum purchase is ${value} | |
485
485
  > | `poolIsInactive` | string | {poolSymbol} token is no longer active. Please withdraw from them. | |
486
+ > | `poolIsMaintenance` | string | {poolSymbol} token is under maintenance. Deposits and withdrawals are temporarily blocked. | |
486
487
  > | `poolIsPrivate` | string | This vault is currently private | |
487
488
  > | `updateOracles` | string | Update Oracles | |
488
489
  > | `checkingOracles` | string | Checking Oracles | |
@@ -13,6 +13,7 @@ export interface PoolConfig {
13
13
  customTokens: TradingToken[];
14
14
  };
15
15
  deprecated?: boolean;
16
+ maintenance?: boolean;
16
17
  }
17
18
  export interface PoolFallbackData {
18
19
  address: Address;