@dydxprotocol/v4-localization 1.1.113 → 1.1.114
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/config/localization/en/app.json +17 -0
- package/package.json +1 -1
- package/scripts/generated/app.ts +17 -16
|
@@ -2061,6 +2061,23 @@
|
|
|
2061
2061
|
"V4_TESTNET_IMPERATOR": "V4 Testnet 3(Imperator)"
|
|
2062
2062
|
},
|
|
2063
2063
|
"ERRORS": {
|
|
2064
|
+
"BROADCAST_ERROR_SDK_5": "There is not enough balance in your chain wallet to cover the transaction fees, please deposit additional funds or update gas currency in Preferences.",
|
|
2065
|
+
"BROADCAST_ERROR_CLOB_2000": "Fill Or Kill order could not be fully filled.",
|
|
2066
|
+
"BROADCAST_ERROR_CLOB_2001": "Reduce-only orders cannot increase the position size.",
|
|
2067
|
+
"BROADCAST_ERROR_CLOB_2002": "Reduce-only orders cannot change the position side.",
|
|
2068
|
+
"BROADCAST_ERROR_CLOB_2003": "Post-only order would cross one or more maker orders.",
|
|
2069
|
+
"BROADCAST_ERROR_CLOB_2005": "Order would violate isolated subaccount constraints.",
|
|
2070
|
+
"BROADCAST_ERROR_CLOB_3000": "Invalid order flags.",
|
|
2071
|
+
"BROADCAST_ERROR_CLOB__3001": "Invalid order goodTilBlockTime.",
|
|
2072
|
+
"BROADCAST_ERROR_CLOB_3002": "Stateful orders cannot require immediate execution.",
|
|
2073
|
+
"BROADCAST_ERROR_CLOB_3003": "The block time is greater than the GoodTilBlockTime of the message. Please refresh the page and try again.",
|
|
2074
|
+
"BROADCAST_ERROR_CLOB_3004": "The GoodTilBlockTime of the message is further than StatefulOrderTimeWindow into the future. Please refresh the page and try again.",
|
|
2075
|
+
"BROADCAST_ERROR_CLOB_3005": "Existing stateful order has higher-or-equal priority than the new one.",
|
|
2076
|
+
"BROADCAST_ERROR_CLOB_3006": "Stateful order does not exist.",
|
|
2077
|
+
"BROADCAST_ERROR_CLOB_3007": "Stateful order collateralization check failed.",
|
|
2078
|
+
"BROADCAST_ERROR_CLOB_3008": "Stateful order was previously cancelled and therefore cannot be placed.",
|
|
2079
|
+
"BROADCAST_ERROR_CLOB_3009": "Stateful order was previously removed and therefore cannot be placed.",
|
|
2080
|
+
"BROADCAST_ERROR_CLOB_10001": "Subaccount cannot open more orders due to equity tier limit. {EQUITY_TIER_LEARN_MORE}",
|
|
2064
2081
|
"BROADCAST_ERROR_2000": "Fill Or Kill order could not be fully filled.",
|
|
2065
2082
|
"BROADCAST_ERROR_2001": "Reduce-only orders cannot increase the position size.",
|
|
2066
2083
|
"BROADCAST_ERROR_2002": "Reduce-only orders cannot change the position side.",
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -1712,22 +1712,23 @@ export const ERRORS_STRING_KEYS = {
|
|
|
1712
1712
|
VALIDATOR_ALERT: 'ERRORS.API_STATUS.VALIDATOR_ALERT',
|
|
1713
1713
|
VALIDATOR_DOWN: 'ERRORS.API_STATUS.VALIDATOR_DOWN',
|
|
1714
1714
|
VALIDATOR_HALTED: 'ERRORS.API_STATUS.VALIDATOR_HALTED',
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1715
|
+
BROADCAST_ERROR_CLOB_10001: 'ERRORS.BROADCAST_ERROR_CLOB_10001',
|
|
1716
|
+
BROADCAST_ERROR_CLOB_2000: 'ERRORS.BROADCAST_ERROR_CLOB_2000',
|
|
1717
|
+
BROADCAST_ERROR_CLOB_2001: 'ERRORS.BROADCAST_ERROR_CLOB_2001',
|
|
1718
|
+
BROADCAST_ERROR_CLOB_2002: 'ERRORS.BROADCAST_ERROR_CLOB_2002',
|
|
1719
|
+
BROADCAST_ERROR_CLOB_2003: 'ERRORS.BROADCAST_ERROR_CLOB_2003',
|
|
1720
|
+
BROADCAST_ERROR_CLOB_2005: 'ERRORS.BROADCAST_ERROR_CLOB_2005',
|
|
1721
|
+
BROADCAST_ERROR_CLOB_3000: 'ERRORS.BROADCAST_ERROR_CLOB_3000',
|
|
1722
|
+
BROADCAST_ERROR_CLOB_3002: 'ERRORS.BROADCAST_ERROR_CLOB_3002',
|
|
1723
|
+
BROADCAST_ERROR_CLOB_3003: 'ERRORS.BROADCAST_ERROR_CLOB_3003',
|
|
1724
|
+
BROADCAST_ERROR_CLOB_3004: 'ERRORS.BROADCAST_ERROR_CLOB_3004',
|
|
1725
|
+
BROADCAST_ERROR_CLOB_3005: 'ERRORS.BROADCAST_ERROR_CLOB_3005',
|
|
1726
|
+
BROADCAST_ERROR_CLOB_3006: 'ERRORS.BROADCAST_ERROR_CLOB_3006',
|
|
1727
|
+
BROADCAST_ERROR_CLOB_3007: 'ERRORS.BROADCAST_ERROR_CLOB_3007',
|
|
1728
|
+
BROADCAST_ERROR_CLOB_3008: 'ERRORS.BROADCAST_ERROR_CLOB_3008',
|
|
1729
|
+
BROADCAST_ERROR_CLOB_3009: 'ERRORS.BROADCAST_ERROR_CLOB_3009',
|
|
1730
|
+
BROADCAST_ERROR_CLOB__3001: 'ERRORS.BROADCAST_ERROR_CLOB__3001',
|
|
1731
|
+
BROADCAST_ERROR_SDK_5: 'ERRORS.BROADCAST_ERROR_SDK_5',
|
|
1731
1732
|
|
|
1732
1733
|
// DEPOSIT_MODAL
|
|
1733
1734
|
|