@dydxprotocol/v4-localization 1.1.275 → 1.1.278

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.
@@ -2515,6 +2515,7 @@
2515
2515
  },
2516
2516
  "ERRORS": {
2517
2517
  "BROADCAST_ERROR_SDK_5": "Wallet balance is insufficient to cover the transaction fees; please deposit additional funds.",
2518
+ "BROADCAST_ERROR_SDK_32": "Operation could not be processed because submitted timestamp nonce was not within the selected node's valid time range. Please refresh the page and try again.",
2518
2519
  "BROADCAST_ERROR_CLOB_2000": "Fill Or Kill order could not be fully filled.",
2519
2520
  "BROADCAST_ERROR_CLOB_2001": "Reduce-only orders cannot increase the position size.",
2520
2521
  "BROADCAST_ERROR_CLOB_2002": "Reduce-only orders cannot change the position side.",
@@ -2553,6 +2554,7 @@
2553
2554
  "RATE_LIMIT_REACHED_ERROR_MESSAGE": "Rate limited reached for this IP address. Please try again later.",
2554
2555
  "SOMETHING_WENT_WRONG_WITH_MESSAGE": "Something went wrong: {ERROR_MESSAGE}",
2555
2556
  "SOMETHING_WENT_WRONG": "Something went wrong. Please try again later.",
2557
+ "NETWORKING_ERROR": "Error connecting to the network. Please check your internet connection, refresh the page, and try again.",
2556
2558
  "TIMESTAMP_DISCREPANCY": "For security purposes, we verify timestamps when authenticating your account. Please make sure your system clock is synced correctly and refresh the app."
2557
2559
  },
2558
2560
  "TRADE_BOX": {
@@ -2673,6 +2675,7 @@
2673
2675
  "LOSS_COLON": "Loss:",
2674
2676
  "PRICE_MUST_POSITIVE": "All input prices must be positive. Please adjust your input prices.",
2675
2677
  "PROFIT_COLON": "Profit:",
2678
+ "TRIGGERS_EQUITY_TIER_ERROR": "Can't place order due to equity tier limit. The current subaccount has {CURRENT_EQUITY} in equity and thus can only have up to {MAX_ORDERS} open orders. Bring equity up to {NEXT_TIER_EQUITY} in this subaccount to increase the limit.",
2676
2679
  "SELL_TRIGGER_TOO_CLOSE_TO_LIQUIDATION_PRICE_NO_LIMIT": "Your trigger price is too close to your liquidation price - this order may not execute fully before you get liquidated. Please enter a trigger price above {TRIGGER_PRICE_LIMIT}.",
2677
2680
  "STOP_LOSS_LIMIT_MUST_ABOVE_TRIGGER_PRICE": "Your stop loss limit price must be above your trigger price for this order to fill when it triggers. Please adjust your limit price.",
2678
2681
  "STOP_LOSS_LIMIT_MUST_BELOW_TRIGGER_PRICE": "Your stop loss limit price must be below your trigger price for this order to fill when it triggers. Please adjust your limit price.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-localization",
3
- "version": "1.1.275",
3
+ "version": "1.1.278",
4
4
  "description": "v4 localization",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -2188,6 +2188,7 @@ export const ERRORS_STRING_KEYS = {
2188
2188
  BROADCAST_ERROR_CLOB_3007: 'ERRORS.BROADCAST_ERROR_CLOB_3007',
2189
2189
  BROADCAST_ERROR_CLOB_3008: 'ERRORS.BROADCAST_ERROR_CLOB_3008',
2190
2190
  BROADCAST_ERROR_CLOB_3009: 'ERRORS.BROADCAST_ERROR_CLOB_3009',
2191
+ BROADCAST_ERROR_SDK_32: 'ERRORS.BROADCAST_ERROR_SDK_32',
2191
2192
  BROADCAST_ERROR_SDK_5: 'ERRORS.BROADCAST_ERROR_SDK_5',
2192
2193
 
2193
2194
  // DEPOSIT_MODAL
@@ -2202,6 +2203,7 @@ export const ERRORS_STRING_KEYS = {
2202
2203
 
2203
2204
  // GENERAL
2204
2205
 
2206
+ NETWORKING_ERROR: 'ERRORS.GENERAL.NETWORKING_ERROR',
2205
2207
  RATE_LIMIT_REACHED_ERROR_MESSAGE: 'ERRORS.GENERAL.RATE_LIMIT_REACHED_ERROR_MESSAGE',
2206
2208
  RATE_LIMIT_REACHED_ERROR_TITLE: 'ERRORS.GENERAL.RATE_LIMIT_REACHED_ERROR_TITLE',
2207
2209
  SOMETHING_WENT_WRONG: 'ERRORS.GENERAL.SOMETHING_WENT_WRONG',
@@ -2319,6 +2321,7 @@ export const ERRORS_STRING_KEYS = {
2319
2321
  TAKE_PROFIT_LIMIT_MUST_BELOW_TRIGGER_PRICE: 'ERRORS.TRIGGERS_FORM.TAKE_PROFIT_LIMIT_MUST_BELOW_TRIGGER_PRICE',
2320
2322
  TAKE_PROFIT_TRIGGER_MUST_ABOVE_INDEX_PRICE: 'ERRORS.TRIGGERS_FORM.TAKE_PROFIT_TRIGGER_MUST_ABOVE_INDEX_PRICE',
2321
2323
  TAKE_PROFIT_TRIGGER_MUST_BELOW_INDEX_PRICE: 'ERRORS.TRIGGERS_FORM.TAKE_PROFIT_TRIGGER_MUST_BELOW_INDEX_PRICE',
2324
+ TRIGGERS_EQUITY_TIER_ERROR: 'ERRORS.TRIGGERS_FORM.TRIGGERS_EQUITY_TIER_ERROR',
2322
2325
 
2323
2326
  // TRIGGERS_FORM_TITLE
2324
2327