diff --git a/public/images/dapp_promotions/neurolanche.jpeg b/public/images/dapp_promotions/neurolanche.jpeg deleted file mode 100644 index bbdbbfc96..000000000 Binary files a/public/images/dapp_promotions/neurolanche.jpeg and /dev/null differ diff --git a/src/assets/img/lfgm.svg b/src/assets/img/lfgm.svg new file mode 100644 index 000000000..172625914 --- /dev/null +++ b/src/assets/img/lfgm.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/header/mobile/MobileNav.vue b/src/components/header/mobile/MobileNav.vue index 8201086fb..dead1d09e 100644 --- a/src/components/header/mobile/MobileNav.vue +++ b/src/components/header/mobile/MobileNav.vue @@ -46,12 +46,21 @@ {{ $t('sidenavi.data') }} - {{ $t('sidenavi.governance') }} + +
+ {{ $t('sidenavi.forum') }} +
+
+ {{ + $t('sidenavi.governance') + }} - + + LFGM +
- +
@@ -85,26 +94,27 @@ diff --git a/src/staking-v3/hooks/useDappStaking.ts b/src/staking-v3/hooks/useDappStaking.ts index 4127dad5f..ec068e863 100644 --- a/src/staking-v3/hooks/useDappStaking.ts +++ b/src/staking-v3/hooks/useDappStaking.ts @@ -445,15 +445,6 @@ export function useDappStaking() { return [false, t('stakingV3.dappStaking.WrongNetworkZkEvm'), '']; } else if (stake.amount <= 0) { return [false, t('stakingV3.dappStaking.ZeroAmount'), '']; - } else if ( - constants.value && - (ledger.value?.contractStakeCount ?? 0) >= constants.value.maxNumberOfStakedContracts - ) { - return [ - false, - t('stakingV3.dappStaking.TooManyStakedContracts'), - docsUrl.dappStakingStaked16Dapps, - ]; } else if ( constants.value?.minStakeAmountToken && stake.amount < constants.value.minStakeAmountToken &&