@dydxprotocol/v4-localization 1.1.42 → 1.1.43
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.
|
@@ -187,6 +187,14 @@
|
|
|
187
187
|
"TITLE": "Step Size",
|
|
188
188
|
"BODY": "Step size is the smallest factor allowed for order amounts on this market."
|
|
189
189
|
},
|
|
190
|
+
"STOP_LOSS_ABOVE_LIQUIDATION_PRICE": {
|
|
191
|
+
"TITLE": "Stop Loss Above Liquidation Price",
|
|
192
|
+
"BODY": "The stop-loss price has risen above the liquidation price. This can happen due to funding changes, due to withdrawing funds, or due to changing margin requirements."
|
|
193
|
+
},
|
|
194
|
+
"STOP_LOSS_BELOW_LIQUIDATION_PRICE": {
|
|
195
|
+
"TITLE": "Stop Loss Below Liquidation Price",
|
|
196
|
+
"BODY": "The stop-loss price has fallen below the liquidation price. This can happen due to funding changes, due to withdrawing funds, or due to changing margin requirements."
|
|
197
|
+
},
|
|
190
198
|
"TAKER_FEE": {
|
|
191
199
|
"TITLE": "Taker Fee",
|
|
192
200
|
"BODY": "Trades that take liquidity from the book (e.g. market or crossing limit orders) execute as taker orders. Taker orders have a higher fee than maker orders."
|
package/package.json
CHANGED
package/scripts/generated/app.ts
CHANGED
|
@@ -132,6 +132,10 @@ export const TOOLTIP_STRING_KEYS = {
|
|
|
132
132
|
SPREAD_TITLE: 'TOOLTIPS.TRADE.SPREAD.TITLE',
|
|
133
133
|
STEP_SIZE_BODY: 'TOOLTIPS.TRADE.STEP_SIZE.BODY',
|
|
134
134
|
STEP_SIZE_TITLE: 'TOOLTIPS.TRADE.STEP_SIZE.TITLE',
|
|
135
|
+
STOP_LOSS_ABOVE_LIQUIDATION_PRICE_BODY: 'TOOLTIPS.TRADE.STOP_LOSS_ABOVE_LIQUIDATION_PRICE.BODY',
|
|
136
|
+
STOP_LOSS_ABOVE_LIQUIDATION_PRICE_TITLE: 'TOOLTIPS.TRADE.STOP_LOSS_ABOVE_LIQUIDATION_PRICE.TITLE',
|
|
137
|
+
STOP_LOSS_BELOW_LIQUIDATION_PRICE_BODY: 'TOOLTIPS.TRADE.STOP_LOSS_BELOW_LIQUIDATION_PRICE.BODY',
|
|
138
|
+
STOP_LOSS_BELOW_LIQUIDATION_PRICE_TITLE: 'TOOLTIPS.TRADE.STOP_LOSS_BELOW_LIQUIDATION_PRICE.TITLE',
|
|
135
139
|
TAKER_FEE_BODY: 'TOOLTIPS.TRADE.TAKER_FEE.BODY',
|
|
136
140
|
TAKER_FEE_TITLE: 'TOOLTIPS.TRADE.TAKER_FEE.TITLE',
|
|
137
141
|
TICK_SIZE_BODY: 'TOOLTIPS.TRADE.TICK_SIZE.BODY',
|