@dydxprotocol/v4-localization 1.1.13 → 1.1.14
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.
|
@@ -155,6 +155,10 @@
|
|
|
155
155
|
"TITLE": "Post-Only",
|
|
156
156
|
"BODY": "Orders with post-only enabled can only be placed as maker orders. If the order crosses other orders at the time of placement, it will be automatically cancelled."
|
|
157
157
|
},
|
|
158
|
+
"POST_ONLY_TIMEINFORCE_GTT": {
|
|
159
|
+
"TITLE": "Post-Only",
|
|
160
|
+
"BODY": "Post-Only is only available if Time in Force is set to Good Til Time."
|
|
161
|
+
},
|
|
158
162
|
"PRICE_IMPACT": {
|
|
159
163
|
"TITLE": "Price Impact",
|
|
160
164
|
"BODY": "The difference between the expected execution price for your order and the best order on the bid or ask side. This will increase for larger trade sizes."
|
|
@@ -167,6 +171,14 @@
|
|
|
167
171
|
"TITLE": "Reduce-Only",
|
|
168
172
|
"BODY": "Reduce-Only prevents an order from changing the side of your position (long to short, or short to long). An order with Reduce-Only set will automatically resize and cancel itself as your position changes."
|
|
169
173
|
},
|
|
174
|
+
"REDUCE_ONLY_TIMEINFORCE_IOC_FOK": {
|
|
175
|
+
"TITLE": "Reduce-Only",
|
|
176
|
+
"BODY": "Reduce-Only is only available if Time in Force is set to IOC or FOK."
|
|
177
|
+
},
|
|
178
|
+
"REDUCE_ONLY_EXECUTION_IOC_FOK": {
|
|
179
|
+
"TITLE": "Reduce-Only",
|
|
180
|
+
"BODY": "Reduce-Only is only available if Execution is set to IOC or FOK."
|
|
181
|
+
},
|
|
170
182
|
"SPREAD": {
|
|
171
183
|
"TITLE": "Spread",
|
|
172
184
|
"BODY": "The difference in price between the highest bid (the price a buyer is willing to buy for) and lowest ask (the price a seller is willing to sell for) an asset."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -110,12 +110,19 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
110
110
|
ORDER_AMOUNT_USD_TITLE: 'TOOLTIPS.TRADE.ORDER_AMOUNT_USD.TITLE',
|
|
111
111
|
POST_ONLY_BODY: 'TOOLTIPS.TRADE.POST_ONLY.BODY',
|
|
112
112
|
POST_ONLY_TITLE: 'TOOLTIPS.TRADE.POST_ONLY.TITLE',
|
|
113
|
+
POST_ONLY_TIMEINFORCE_GTT_BODY: 'TOOLTIPS.TRADE.POST_ONLY_TIMEINFORCE_GTT.BODY',
|
|
114
|
+
POST_ONLY_TIMEINFORCE_GTT_TITLE: 'TOOLTIPS.TRADE.POST_ONLY_TIMEINFORCE_GTT.TITLE',
|
|
113
115
|
PRICE_IMPACT_BODY: 'TOOLTIPS.TRADE.PRICE_IMPACT.BODY',
|
|
114
116
|
PRICE_IMPACT_TITLE: 'TOOLTIPS.TRADE.PRICE_IMPACT.TITLE',
|
|
115
117
|
REALIZED_PNL_BODY: 'TOOLTIPS.TRADE.REALIZED_PNL.BODY',
|
|
116
118
|
REALIZED_PNL_TITLE: 'TOOLTIPS.TRADE.REALIZED_PNL.TITLE',
|
|
117
119
|
REDUCE_ONLY_BODY: 'TOOLTIPS.TRADE.REDUCE_ONLY.BODY',
|
|
118
120
|
REDUCE_ONLY_TITLE: 'TOOLTIPS.TRADE.REDUCE_ONLY.TITLE',
|
|
121
|
+
REDUCE_ONLY_EXECUTION_IOC_FOK_BODY: 'TOOLTIPS.TRADE.REDUCE_ONLY_EXECUTION_IOC_FOK.BODY',
|
|
122
|
+
REDUCE_ONLY_EXECUTION_IOC_FOK_TITLE: 'TOOLTIPS.TRADE.REDUCE_ONLY_EXECUTION_IOC_FOK.TITLE',
|
|
123
|
+
REDUCE_ONLY_TIMEINFORCE_IOC_FOK_BODY: 'TOOLTIPS.TRADE.REDUCE_ONLY_TIMEINFORCE_IOC_FOK.BODY',
|
|
124
|
+
REDUCE_ONLY_TIMEINFORCE_IOC_FOK_TITLE: 'TOOLTIPS.TRADE.REDUCE_ONLY_TIMEINFORCE_IOC_FOK.TITLE',
|
|
125
|
+
REWARD_HISTORY_BODY: 'TOOLTIPS.TRADE.REWARD_HISTORY.BODY',
|
|
119
126
|
SPREAD_BODY: 'TOOLTIPS.TRADE.SPREAD.BODY',
|
|
120
127
|
SPREAD_TITLE: 'TOOLTIPS.TRADE.SPREAD.TITLE',
|
|
121
128
|
STEP_SIZE_BODY: 'TOOLTIPS.TRADE.STEP_SIZE.BODY',
|