@dydxprotocol/v4-localization 1.1.3 → 1.1.5

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.
@@ -1711,11 +1711,13 @@
1711
1711
  "REGION_NOT_PERMITTED_SUBTITLE": "Because you appear to be a resident of, or trading from, a jurisdiction that violates our terms of use, or have engaged in activity that violates our terms of use, you have been blocked. You may withdraw your funds from the protocol at any time.",
1712
1712
  "BANNED_USER": "Because you appear to be a resident of, or trading from, a jurisdiction that violates our terms of use, you have been permanently blocked from performing transfers within the protocol, making fast withdrawals to remove funds from the protocol, and placing orders other than market orders that reduce your positions. You may withdraw your funds from the protocol at any time.",
1713
1713
  "COULD_NOT_CONNECT": "Couldn't connect to {WALLET}",
1714
+ "MAX_CCTP_TRANSFER_LIMIT_EXCEEDED": "Please try a smaller amount. The maximum CCTP transfer limit is currently {MAX_CCTP_TRANSFER_AMOUNT}.",
1714
1715
  "INDETERMINISTIC_SIGNING": "Your wallet does not support deterministic signing. Please switch to a different wallet provider.",
1715
1716
  "INVALID_EMAIL": "Please enter a valid email address.",
1716
1717
  "INVALID_USERNAME": "Usernames must start with a letter, be less than 24 characters long, and contain only letters, numbers, and underscores.",
1717
1718
  "KEY_RECOVERY_FAILED": "Key recovery failed. Try again with 'Legacy Signing' enabled.",
1718
1719
  "LEDGER_U2F_REQUIRED": "U2F browser support is required for Ledger connections. Please ensure this feature is supported in your current browser.",
1720
+ "PRICE_IMPACT_TOO_HIGH": "There is not enough liquidity for the amount requested, the resulting slippage exceeds our safe limit.",
1719
1721
  "USERNAME_TAKEN": "This username has already been taken.",
1720
1722
  "WALLET_NO_TRANSACTIONS": "This wallet has no funds and no previous transactions. Please deposit funds in your wallet to continue onboarding."
1721
1723
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-localization",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "v4 localization",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -1398,6 +1398,8 @@ export const ERRORS_STRING_KEYS = {
1398
1398
  INVALID_USERNAME: 'ERRORS.ONBOARDING.INVALID_USERNAME',
1399
1399
  KEY_RECOVERY_FAILED: 'ERRORS.ONBOARDING.KEY_RECOVERY_FAILED',
1400
1400
  LEDGER_U2F_REQUIRED: 'ERRORS.ONBOARDING.LEDGER_U2F_REQUIRED',
1401
+ MAX_CCTP_TRANSFER_LIMIT_EXCEEDED: 'ERRORS.ONBOARDING.MAX_CCTP_TRANSFER_LIMIT_EXCEEDED',
1402
+ PRICE_IMPACT_TOO_HIGH: 'ERRORS.ONBOARDING.PRICE_IMPACT_TOO_HIGH',
1401
1403
  REGION_NOT_PERMITTED_SUBTITLE: 'ERRORS.ONBOARDING.REGION_NOT_PERMITTED_SUBTITLE',
1402
1404
  REGION_NOT_PERMITTED_TITLE: 'ERRORS.ONBOARDING.REGION_NOT_PERMITTED_TITLE',
1403
1405
  USERNAME_TAKEN: 'ERRORS.ONBOARDING.USERNAME_TAKEN',