From 347f05e7ebaea1e9983874775a9231e4b430bcf0 Mon Sep 17 00:00:00 2001
From: Anton Shalimov
You can use your stETH as collateral, for lending, and{' '} more diff --git a/features/stake/stake-faq/list/lido-eth-apr.tsx b/features/stake/stake-faq/list/lido-eth-apr.tsx index b80fc0e20..e5adb1923 100644 --- a/features/stake/stake-faq/list/lido-eth-apr.tsx +++ b/features/stake/stake-faq/list/lido-eth-apr.tsx @@ -20,7 +20,7 @@ export const LidoEthApr: FC = () => {
More about Lido staking APR for Ethereum you could find on the{' '}
Ethereum landing page
diff --git a/features/wsteth/shared/wrap-faq/list/how-can-i-get-wsteth.tsx b/features/wsteth/shared/wrap-faq/list/how-can-i-get-wsteth.tsx
index 9ad8752f4..d9d916e53 100644
--- a/features/wsteth/shared/wrap-faq/list/how-can-i-get-wsteth.tsx
+++ b/features/wsteth/shared/wrap-faq/list/how-can-i-get-wsteth.tsx
@@ -1,6 +1,7 @@
import { FC } from 'react';
import { Accordion, Link as OuterLink } from '@lidofinance/lido-ui';
+import { config } from 'config';
import { WRAP_PATH } from 'consts/urls';
import { MATOMO_CLICK_EVENTS_TYPES } from 'consts/matomo-click-events';
import { trackMatomoEvent } from 'utils/track-matomo-event';
@@ -24,7 +25,7 @@ export const HowCanIGetWsteth: FC = () => {
{' '}
or{' '}
wstETH is useful across{' '}
L2
{' '}
and other{' '}
void;
};
-export const L2_DISCOVERY_LINK = 'https://lido.fi/lido-on-l2';
+export const L2_DISCOVERY_LINK = `${config.rootOrigin}/lido-on-l2`;
export const L2Banner = ({
title,
diff --git a/shared/banners/l2-banners/l2-after-wrap.tsx b/shared/banners/l2-banners/l2-after-wrap.tsx
index 7cfaf84d1..55caf55b3 100644
--- a/shared/banners/l2-banners/l2-after-wrap.tsx
+++ b/shared/banners/l2-banners/l2-after-wrap.tsx
@@ -1,11 +1,13 @@
import { trackEvent } from '@lidofinance/analytics-matomo';
+
+import { config } from 'config';
import { MATOMO_CLICK_EVENTS } from 'consts/matomo-click-events';
+
import { L2Banner } from '../l2-banner';
const linkClickHandler = () => trackEvent(...MATOMO_CLICK_EVENTS.l2LowFeeWrap);
-const L2_LEARN_MORE_AFTER_WRAP_LINK =
- 'https://lido.fi/lido-ecosystem?networks=arbitrum%2Coptimism%2Cbase%2Czksync+era%2Cmantle%2Clinea%2Cpolygon&criteria=or&tokens=wsteth';
+const L2_LEARN_MORE_AFTER_WRAP_LINK = `${config.rootOrigin}/lido-ecosystem?networks=arbitrum%2Coptimism%2Cbase%2Czksync+era%2Cmantle%2Clinea%2Cpolygon&criteria=or&tokens=wsteth`;
export const L2AfterWrap = () => {
return (
diff --git a/shared/banners/modal-pool-banners/modal-pool-banners.tsx b/shared/banners/modal-pool-banners/modal-pool-banners.tsx
index 16c0f1786..40c394bf4 100644
--- a/shared/banners/modal-pool-banners/modal-pool-banners.tsx
+++ b/shared/banners/modal-pool-banners/modal-pool-banners.tsx
@@ -1,10 +1,12 @@
import { trackEvent } from '@lidofinance/analytics-matomo';
-import { Curve } from 'shared/banners/curve';
+
+import { config } from 'config';
import { MATOMO_CLICK_EVENTS } from 'consts/matomo-click-events';
+import { Curve } from 'shared/banners/curve';
import { TextStyles, DescStyles, ButtonLinkWrap, ButtonStyled } from './styles';
-const ECOSYSTEM_LINK = 'https://lido.fi/lido-ecosystem';
+const ECOSYSTEM_LINK = `${config.rootOrigin}/lido-ecosystem`;
const linkClickHandler = () =>
trackEvent(...MATOMO_CLICK_EVENTS.clickExploreDeFi);
diff --git a/shared/components/layout/footer/footer.tsx b/shared/components/layout/footer/footer.tsx
index c4d95004e..b044d04f6 100644
--- a/shared/components/layout/footer/footer.tsx
+++ b/shared/components/layout/footer/footer.tsx
@@ -1,5 +1,6 @@
import { FC } from 'react';
import buildInfo from 'build-info.json';
+import { config } from 'config';
import {
FooterStyle,
@@ -42,13 +43,16 @@ export const Footer: FC = () => {
return (
+ APR
+
+ Points
+
+ Points
+
+ APR TBD
+
From a50b9a974582ce99daafe677cf713a289af292ab Mon Sep 17 00:00:00 2001
From: Anton Shalimov