diff --git a/packages/suite-data/files/translations/en.json b/packages/suite-data/files/translations/en.json index 97d2bdd12ef..9502da70326 100644 --- a/packages/suite-data/files/translations/en.json +++ b/packages/suite-data/files/translations/en.json @@ -1795,7 +1795,7 @@ "TR_SPEND_TRANS_ID": "Trans. ID:", "TR_STAKE_ACKNOWLEDGE_ENTRY_PERIOD": "I acknowledge the above entry period", "TR_STAKE_ADDING_TO_POOL": "Adding to staking pool", - "TR_STAKE_ANY_AMOUNT_ETH": "Stake any amount and watch that sweet {symbol} roll in. With our current APY rate of {apyPercent}%, your rewards earn too!", + "TR_STAKE_ANY_AMOUNT_ETH": "Stake a minimum amount of {amount} {symbol} and start earning rewards. With our current APY rate of {apyPercent}%, your rewards earn too!", "TR_STAKE_APY": "Annual Percentage Yield", "TR_STAKE_APY_DESC": "*Annual Percentage Yield", "TR_STAKE_AVAILABLE": "Available", diff --git a/packages/suite/src/components/wallet/WalletLayout/AccountBanners/StakeEthBanner.tsx b/packages/suite/src/components/wallet/WalletLayout/AccountBanners/StakeEthBanner.tsx index dd12e8c9024..08807bf355c 100644 --- a/packages/suite/src/components/wallet/WalletLayout/AccountBanners/StakeEthBanner.tsx +++ b/packages/suite/src/components/wallet/WalletLayout/AccountBanners/StakeEthBanner.tsx @@ -9,6 +9,7 @@ import { selectSuiteFlags } from '../../../../reducers/suite/suiteReducer'; import { Account } from '@suite-common/wallet-types'; import { selectPoolStatsApyData } from '@suite-common/wallet-core'; import { isSupportedEthStakingNetworkSymbol } from '@suite-common/wallet-core'; +import { MIN_ETH_AMOUNT_FOR_STAKING } from 'src/constants/suite/ethStaking'; const StyledCard = styled(Card)` padding: ${spacingsPx.lg} ${spacingsPx.xxl} ${spacingsPx.lg} ${spacingsPx.md}; @@ -94,6 +95,7 @@ export const StakeEthBanner = ({ account }: StakeEthBannerProps) => { values={{ apyPercent: ethApy, symbol: account?.symbol.toUpperCase(), + amount: MIN_ETH_AMOUNT_FOR_STAKING.toString(), }} /> diff --git a/packages/suite/src/support/messages.ts b/packages/suite/src/support/messages.ts index 6271f1b60e2..606bd451de7 100644 --- a/packages/suite/src/support/messages.ts +++ b/packages/suite/src/support/messages.ts @@ -8642,7 +8642,7 @@ export default defineMessages({ TR_STAKE_ANY_AMOUNT_ETH: { id: 'TR_STAKE_ANY_AMOUNT_ETH', defaultMessage: - 'Stake any amount and watch that sweet {symbol} roll in. With our current APY rate of {apyPercent}%, your rewards earn too!', + 'Stake a minimum amount of {amount} {symbol} and start earning rewards. With our current APY rate of {apyPercent}%, your rewards earn too!', }, TR_STAKE_LEARN_MORE: { id: 'TR_STAKE_LEARN_MORE',