diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index b26d3e50e..74f4a11e3 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -330,6 +330,13 @@ export default { uaw: 'Unique Active Wallets', cantClaimWihtoutError: 'You cannot claim with automatic re-stake because it is been a while since you claimed your rewards. Please turn off the Auto Re-Stake feature to be able to claim. After you claimed rewards you can turn on re-stake again. The UI team is working to fix this issue.', + migrationSupport: { + actionRequired: 'Action Required', + yourTokensAreLocked: + 'Your tokens are locked in dAppStaking V2. Please migrate your funds to V3 today and start participating.', + balanceFromV2: 'Balance from V2 (locked)', + migrateNow: 'Migrate Now', + }, stakePage: { backToDappList: 'Back to dApps list', whereFundsFrom: 'Where would you like to bring your funds from?', diff --git a/src/staking-v3/components/my-staking/MigrationSupport.vue b/src/staking-v3/components/my-staking/MigrationSupport.vue new file mode 100644 index 000000000..1a09c58e4 --- /dev/null +++ b/src/staking-v3/components/my-staking/MigrationSupport.vue @@ -0,0 +1,117 @@ + + + + + diff --git a/src/staking-v3/components/my-staking/Staking.vue b/src/staking-v3/components/my-staking/Staking.vue index c124e1442..425d5a1d0 100644 --- a/src/staking-v3/components/my-staking/Staking.vue +++ b/src/staking-v3/components/my-staking/Staking.vue @@ -13,6 +13,9 @@
+ + + @@ -30,6 +33,7 @@ import MyStaking from './MyStaking.vue'; import TokenBalanceNative from 'src/components/common/TokenBalanceNative.vue'; import MyDapps from './MyDapps.vue'; import Unbonding from './Unbonding.vue'; +import MigrationSupport from './MigrationSupport.vue'; export default defineComponent({ components: { @@ -38,6 +42,7 @@ export default defineComponent({ MyStaking, MyDapps, Unbonding, + MigrationSupport, }, setup() { const { t } = useI18n();