@dhedge/trading-widget 3.9.0 → 3.9.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.
- package/README.md +1 -1
- package/core-kit/hooks/trading/deposit-v2/index.d.ts +1 -0
- package/core-kit/hooks/trading/deposit-v2/use-requires-min-deposit.d.ts +4 -0
- package/index.cjs +43 -43
- package/index.js +3091 -3094
- package/package.json +1 -1
- package/trading-widget/components/deposit/button/valid-deposit-button/valid-deposit-button.hooks.d.ts +1 -1
package/README.md
CHANGED
|
@@ -495,7 +495,7 @@ path: `component.meta[name]`
|
|
|
495
495
|
> | `pending` | string | Pending... | |
|
|
496
496
|
> | `approve` | string | Approve | |
|
|
497
497
|
> | `connectWallet` | string | Connect Wallet | |
|
|
498
|
-
> | `minimumPurchase` | string | Minimum purchase is
|
|
498
|
+
> | `minimumPurchase` | string | Minimum purchase is {value} | |
|
|
499
499
|
> | `poolIsInactive` | string | {poolSymbol} token is no longer active. Please withdraw from them. | |
|
|
500
500
|
> | `poolDepositsAreMaintenance` | string | {poolSymbol} token is under maintenance. Deposits are temporarily blocked. | |
|
|
501
501
|
> | `poolWithdrawalsAreMaintenance` | string | {poolSymbol} token is under maintenance. Withdrawals are temporarily blocked. | |
|
|
@@ -14,3 +14,4 @@ export { useDepositLockTime } from './use-deposit-lock-time';
|
|
|
14
14
|
export { useDepositPriceDiff } from './use-deposit-price-diff';
|
|
15
15
|
export { useIsDepositWithSwapTransaction } from './use-is-deposit-with-swap-transaction';
|
|
16
16
|
export { useMinVaultTokensReceivedAmount } from './use-min-vault-tokens-received-amount';
|
|
17
|
+
export { useRequiresMinDeposit } from './use-requires-min-deposit';
|