@dydxprotocol/v4-localization 1.1.208 → 1.1.210

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.
@@ -1678,6 +1678,8 @@
1678
1678
  "ACKNOWLEDGE_HIGH_SLIPPAGE": "Acknowledge High Slippage",
1679
1679
  "SLIPPAGE_WARNING": "This withdrawal would result in {AMOUNT} slippage. Slippage may be reduced if you withdraw at a later time. For more information, see {LINK}.",
1680
1680
  "EST_SLIPPAGE": "Est. slippage",
1681
+ "ESTIMATED_SLIPPAGE": "Estimated Slippage",
1682
+ "ESTIMATED_AMOUNT_RECEIVED": "Estimated Amount Received",
1681
1683
  "PROTOCOL_VAULT": "dYdX Protocol Vault",
1682
1684
  "LOCKED_BALANCE": "Locked Balance",
1683
1685
  "WITHDRAW_TOO_HIGH": "You cannot withdraw more than your vault balance.",
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "GENERAL": {
3
- "DYDX_ADDRESS": {
3
+ "DYDX_ADDRESS_FROM_ETHEREUM": {
4
4
  "BODY": "Your dYdX Chain address \"{DYDX_ADDRESS}\" was created from the signature of the Ethereum address \"{EVM_ADDRESS}\"."
5
5
  },
6
+ "DYDX_ADDRESS_FROM_SOLANA": {
7
+ "BODY": "Your dYdX Chain address \"{DYDX_ADDRESS}\" was created from the signature of the Solana address \"{SOLANA_ADDRESS}\"."
8
+ },
6
9
  "LEGACY_SIGNING": {
7
10
  "TITLE": "Legacy Signing",
8
11
  "BODY": "Only check this option if you previously used hardware wallet signing / legacy signing to generate your keys."
@@ -378,5 +381,22 @@
378
381
  "TITLE": "Reference Price",
379
382
  "BODY": "The Reference Price is the rolling 30 day average of the market's price and is used as an input to automatically calculate the market's parameters on dYdX Chain. The Reference Price should approximately be the same as the market's current price (i.e. round down to the same powers of 10)."
380
383
  }
384
+ },
385
+ "VAULT": {
386
+ "ESTIMATED_AMOUNT_RECEIVED": {
387
+ "BODY": "The estimated amount to receive when withdrawing, which is withdrawal amount minus estimated slippage amount. This amount is an estimation based on the current conditions. The actual amount may be different based on the actual conditions at the execution time."
388
+ },
389
+ "ESTIMATED_SLIPPAGE": {
390
+ "BODY": "The estimated amount of slippage when withdrawing. The slippage comes from the vault's need to update the current positions to free up margin in order to meet the withdrawal amount. This amount is an estimation based on the current conditions. The actual amount may be different based on the actual conditions at the execution time."
391
+ },
392
+ "AVAILABLE_TO_WITHDRAW": {
393
+ "BODY": "The amount you can withdraw, which is your vault balance minus any amount that's locked up for new market listings."
394
+ },
395
+ "YOUR_VAULT_BALANCE": {
396
+ "BODY": "The current value of your deposits. This is calculated based on the vault's current equity and positions."
397
+ },
398
+ "YOUR_ALL_TIME_PNL": {
399
+ "BODY": "The total PnL over time. This includes historical PnL of your vault deposits."
400
+ }
381
401
  }
382
402
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-localization",
3
- "version": "1.1.208",
3
+ "version": "1.1.210",
4
4
  "description": "v4 localization",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  // !! GENERATED FILE - DO NOT EDIT
2
2
 
3
- // Generated from ../config/localization/en/app.json using ./codegen_localization_app.swift
3
+ // Generated from ../config/localization/en/app.json using codegen_localization_app.swift
4
4
 
5
5
  export const APP_STRING_KEYS = {
6
6
 
@@ -1848,6 +1848,8 @@ export const APP_STRING_KEYS = {
1848
1848
  DEPOSIT_TOO_LOW: 'APP.VAULTS.DEPOSIT_TOO_LOW',
1849
1849
  ENTER_AMOUNT_TO_DEPOSIT: 'APP.VAULTS.ENTER_AMOUNT_TO_DEPOSIT',
1850
1850
  ENTER_AMOUNT_TO_WITHDRAW: 'APP.VAULTS.ENTER_AMOUNT_TO_WITHDRAW',
1851
+ ESTIMATED_AMOUNT_RECEIVED: 'APP.VAULTS.ESTIMATED_AMOUNT_RECEIVED',
1852
+ ESTIMATED_SLIPPAGE: 'APP.VAULTS.ESTIMATED_SLIPPAGE',
1851
1853
  EST_SLIPPAGE: 'APP.VAULTS.EST_SLIPPAGE',
1852
1854
  LOCKED_BALANCE: 'APP.VAULTS.LOCKED_BALANCE',
1853
1855
  MEGAVAULT: 'APP.VAULTS.MEGAVAULT',
@@ -35,7 +35,8 @@ export const TOOLTIP_STRING_KEYS = {
35
35
 
36
36
  // GENERAL
37
37
 
38
- DYDX_ADDRESS_BODY: 'TOOLTIPS.GENERAL.DYDX_ADDRESS.BODY',
38
+ DYDX_ADDRESS_FROM_ETHEREUM_BODY: 'TOOLTIPS.GENERAL.DYDX_ADDRESS_FROM_ETHEREUM.BODY',
39
+ DYDX_ADDRESS_FROM_SOLANA_BODY: 'TOOLTIPS.GENERAL.DYDX_ADDRESS_FROM_SOLANA.BODY',
39
40
  LEGACY_SIGNING_BODY: 'TOOLTIPS.GENERAL.LEGACY_SIGNING.BODY',
40
41
  LEGACY_SIGNING_TITLE: 'TOOLTIPS.GENERAL.LEGACY_SIGNING.TITLE',
41
42
  REMEMBER_ME_BODY: 'TOOLTIPS.GENERAL.REMEMBER_ME.BODY',
@@ -204,6 +205,14 @@ export const TOOLTIP_STRING_KEYS = {
204
205
  UNEQUAL_ORDER_SIZES_BODY: 'TOOLTIPS.TRIGGER_ORDERS.UNEQUAL_ORDER_SIZES.BODY',
205
206
  UNEQUAL_ORDER_SIZES_TITLE: 'TOOLTIPS.TRIGGER_ORDERS.UNEQUAL_ORDER_SIZES.TITLE',
206
207
 
208
+ // VAULT
209
+
210
+ AVAILABLE_TO_WITHDRAW_BODY: 'TOOLTIPS.VAULT.AVAILABLE_TO_WITHDRAW.BODY',
211
+ ESTIMATED_AMOUNT_RECEIVED_BODY: 'TOOLTIPS.VAULT.ESTIMATED_AMOUNT_RECEIVED.BODY',
212
+ ESTIMATED_SLIPPAGE_BODY: 'TOOLTIPS.VAULT.ESTIMATED_SLIPPAGE.BODY',
213
+ YOUR_ALL_TIME_PNL_BODY: 'TOOLTIPS.VAULT.YOUR_ALL_TIME_PNL.BODY',
214
+ YOUR_VAULT_BALANCE_BODY: 'TOOLTIPS.VAULT.YOUR_VAULT_BALANCE.BODY',
215
+
207
216
  // WITHDRAW
208
217
 
209
218
  BRIDGE_FEES_BODY: 'TOOLTIPS.WITHDRAW.BRIDGE_FEES.BODY',