@dydxprotocol/v4-localization 1.1.122 → 1.1.124

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.
@@ -122,6 +122,7 @@
122
122
  "DIRECTION": "Direction",
123
123
  "DISCOUNT": "Discount",
124
124
  "DISMISS": "Dismiss",
125
+ "DOCUMENT": "Document",
125
126
  "DONE": "Done",
126
127
  "DOWNLOAD_MOBILE_APP": "Download mobile app",
127
128
  "DYDX_CHAIN_ADDRESS": "dYdX Chain Address",
@@ -1732,9 +1733,11 @@
1732
1733
  "FAQ_HOW_DO_I_CLAIM_MY_REWARDS_QUESTION": "How do I claim my rewards?",
1733
1734
  "FAQ_HOW_DO_I_CLAIM_MY_REWARDS_ANSWER": "Each block, trading rewards are automatically sent directly to the trader’s dYdX Chain address.",
1734
1735
  "FAQ_HOW_DO_I_STAKE_AND_CLAIM_QUESTION": "How do I stake and claim staking rewards?",
1735
- "FAQ_HOW_DO_I_STAKE_AND_CLAIM_ANSWER": "To stake, click the “Stake” button and input the amount of tokens you would like to stake. A validator from a set of validators in good standing (meaning one that has never been slashed) will automatically be selected based on which eligible validator has the fewest tokens staked. To claim staking rewards, click the “Claim” button whenever USDC rewards are available. The claimed USDC rewards will be deposited into your account so that you may trade instantly! Note that there is a gas fee to claim USDC rewards.",
1736
+ "FAQ_HOW_DO_I_STAKE_AND_CLAIM_ANSWER": "To stake, click the “Stake” button and input the amount of tokens you would like to stake. A validator from a set of validators in good standing with the community will automatically be selected based on which eligible validator has the fewest tokens staked and has never been slashed.. To claim staking rewards, click the “Claim” button whenever USDC rewards are available. The claimed USDC rewards will be deposited into your account so that you may trade instantly! Note that there is a gas fee to claim USDC rewards.",
1736
1737
  "FAQ_HOW_DO_TRADING_REWARDS_WORK_QUESTION": "How do trading rewards work?",
1737
1738
  "FAQ_HOW_DO_TRADING_REWARDS_WORK_ANSWER": "Immediately after each fill, trading rewards are sent directly to the trader’s dYdX Chain address, based on the amount of fees paid by the trader. Read more {HERE_LINK}.",
1739
+ "FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_QUESTION": "How is the pre-configured set of validators determined?",
1740
+ "FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_ANSWER": "Please refer to this [DOCUMENT_LINK]. Note that you can always stake to any validator of your choice on other staking platforms that support dYdX (e.g., Keplr).",
1738
1741
  "FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_QUESTION": "What are the risks of staking?",
1739
1742
  "FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_ANSWER": "Use of any DeFi protocol comes with risks. In the case of staking, it is important to understand that unstaking tokens takes 30 days, which means there is a period of illiquidity during which you will not be able to transfer your tokens, even in the case of protocol or market volatility. Additionally, users should do their own due diligence on validators before staking their assets with one. Validators who violate protocol rules may be penalized by having tokens staked to them slashed (i.e. burned) or being jailed which will prevent them from earning rewards. While the frontend selects the validator that tokens get staked to from a trusted set based on historical performance, there is no guarantee of a validator’s future conduct.",
1740
1743
  "FAQ_WHAT_IS_STAKING_QUESTION": "What is staking?",
@@ -2285,7 +2288,7 @@
2285
2288
  "TRANSFER_INVALID_ETH_ADDRESS": "We could not find an account associated with this wallet address.",
2286
2289
  "TRANSFER_MORE_THAN_FREE": "You cannot transfer more than your free collateral.",
2287
2290
  "TRANSFER_TO_YOURSELF": "You cannot complete a direct transfer to your own wallet address.",
2288
- "TRANSFER_INSUFFICIENT_GAS": "The {TOKEN} balance {BALANCE} in your chain wallet may not cover the transaction fees. Please deposit additional funds.",
2291
+ "TRANSFER_INSUFFICIENT_GAS": "The {TOKEN} balance ({BALANCE} {TOKEN}) in your chain wallet may not cover the transaction fees. Please deposit additional funds.",
2289
2292
  "TRANSFER_WITHOUT_MEMO": "Transferring to a centralized exchange without the memo they have provided you can result in a loss of funds."
2290
2293
  },
2291
2294
  "ADJUST_ISOLATED_MARGIN": {
@@ -338,7 +338,7 @@
338
338
  "STAKE": {
339
339
  "VALIDATOR_SELECTION": {
340
340
  "TITLE": "Selected Validator",
341
- "BODY": "Selection is based on lowest stake weight from a pre-configured set of validators."
341
+ "BODY": "The validator is selected from a pre-configured set of unslashed validators based on lowest stakeweight."
342
342
  }
343
343
  },
344
344
  "EMAIL_NOTIFICATIONS": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-localization",
3
- "version": "1.1.122",
3
+ "version": "1.1.124",
4
4
  "description": "v4 localization",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -347,6 +347,7 @@ export const APP_STRING_KEYS = {
347
347
  DIRECTION: 'APP.GENERAL.DIRECTION',
348
348
  DISCOUNT: 'APP.GENERAL.DISCOUNT',
349
349
  DISMISS: 'APP.GENERAL.DISMISS',
350
+ DOCUMENT: 'APP.GENERAL.DOCUMENT',
350
351
  DONE: 'APP.GENERAL.DONE',
351
352
  DOWNLOAD_MOBILE_APP: 'APP.GENERAL.DOWNLOAD_MOBILE_APP',
352
353
  DYDX_CHAIN: 'APP.GENERAL.DYDX_CHAIN',
@@ -1593,6 +1594,8 @@ export const APP_STRING_KEYS = {
1593
1594
  FAQ_HOW_DO_I_STAKE_AND_CLAIM_QUESTION: 'APP.TRADING_REWARDS.FAQ_HOW_DO_I_STAKE_AND_CLAIM_QUESTION',
1594
1595
  FAQ_HOW_DO_TRADING_REWARDS_WORK_ANSWER: 'APP.TRADING_REWARDS.FAQ_HOW_DO_TRADING_REWARDS_WORK_ANSWER',
1595
1596
  FAQ_HOW_DO_TRADING_REWARDS_WORK_QUESTION: 'APP.TRADING_REWARDS.FAQ_HOW_DO_TRADING_REWARDS_WORK_QUESTION',
1597
+ FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_ANSWER: 'APP.TRADING_REWARDS.FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_ANSWER',
1598
+ FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_QUESTION: 'APP.TRADING_REWARDS.FAQ_HOW_IS_THE_PRECONFIGURED_SET_OF_VALIDATORS_DETERMINED_QUESTION',
1596
1599
  FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_ANSWER: 'APP.TRADING_REWARDS.FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_ANSWER',
1597
1600
  FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_QUESTION: 'APP.TRADING_REWARDS.FAQ_WHAT_ARE_THE_RISKS_OF_STAKING_QUESTION',
1598
1601
  FAQ_WHAT_IS_STAKING_ANSWER: 'APP.TRADING_REWARDS.FAQ_WHAT_IS_STAKING_ANSWER',