From f20088b7323721811d3fcdbb2c25c77fe16a5975 Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 24 Mar 2026 13:02:45 +0100 Subject: [PATCH 1/6] add GoodBridge page to src/pages/gd --- src/components/SideBar.tsx | 5 ++++ src/connectors/index.ts | 1 - src/hooks/useFeaturesEnabled.tsx | 1 + src/pages/gd/GoodBridge/index.tsx | 46 ++++++++++++++++++++++++++++++ src/pages/gd/GoodBridge/index.tsx~ | 46 ++++++++++++++++++++++++++++++ src/routes.tsx | 2 ++ 6 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 src/pages/gd/GoodBridge/index.tsx create mode 100644 src/pages/gd/GoodBridge/index.tsx~ diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx index b4581633d..1a4e617c3 100644 --- a/src/components/SideBar.tsx +++ b/src/components/SideBar.tsx @@ -226,6 +226,11 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl text: 'Micro Bridge', show: !isMinipay || bridgeEnabled, }, + { + route: '/goodbridge', + text: 'Good Bridge', + show: !isMinipay || bridgeEnabled, + }, { label: i18n._(t`GoodDollar Main Bridge`), url: 'https://docs.gooddollar.org/user-guides/bridge-gooddollars', diff --git a/src/connectors/index.ts b/src/connectors/index.ts index 2acb89d42..96f729724 100644 --- a/src/connectors/index.ts +++ b/src/connectors/index.ts @@ -193,4 +193,3 @@ export const connectOptions = { }, }, } - diff --git a/src/hooks/useFeaturesEnabled.tsx b/src/hooks/useFeaturesEnabled.tsx index 0660f7825..64766b374 100644 --- a/src/hooks/useFeaturesEnabled.tsx +++ b/src/hooks/useFeaturesEnabled.tsx @@ -21,6 +21,7 @@ interface FeatureContextValue { const supportedFeatureKeys = [ 'networkEnabled', 'microBridgeEnabled', + 'goodBridgeEnabled', 'lzBridgeEnabled', 'reserveEnabled', 'claimEnabled', diff --git a/src/pages/gd/GoodBridge/index.tsx b/src/pages/gd/GoodBridge/index.tsx new file mode 100644 index 000000000..5ab83de28 --- /dev/null +++ b/src/pages/gd/GoodBridge/index.tsx @@ -0,0 +1,46 @@ +import React, { memo } from 'react' +import { + SwitchChainModal, + // ClaimCarousel, + MicroBridgeController, + // IClaimCard, +} from '@gooddollar/good-design' +import { Text, VStack } from 'native-base' +import { i18n } from '@lingui/core' +import { t } from '@lingui/macro' +import { useAppKitAccount } from '@reown/appkit/react' + +import { PageLayout } from 'components/Layout/PageLayout' +import Placeholder from 'components/gd/Placeholder' + +const GoodBridge = memo(() => { + const { address } = useAppKitAccount() + return ( + + + + {i18n._( + t`Seamlessly convert between Fuse G$ tokens to Celo and vice versa, +enabling versatile use of G$ tokens across various platforms and +ecosystems` + )} + + +
+ + + {address ? ( + + ) : ( + + {i18n._(t`Connect a wallet to see your portfolio`)} + + )} + + +
+
+ ) +}) + +export default GoodBridge diff --git a/src/pages/gd/GoodBridge/index.tsx~ b/src/pages/gd/GoodBridge/index.tsx~ new file mode 100644 index 000000000..9d385db07 --- /dev/null +++ b/src/pages/gd/GoodBridge/index.tsx~ @@ -0,0 +1,46 @@ +import React, { memo } from 'react' +import { + SwitchChainModal, + // ClaimCarousel, + MicroBridgeController, + // IClaimCard, +} from '@gooddollar/good-design' +import { Text, VStack } from 'native-base' +import { i18n } from '@lingui/core' +import { t } from '@lingui/macro' +import { useAppKitAccount } from '@reown/appkit/react' + +import { PageLayout } from 'components/Layout/PageLayout' +import Placeholder from 'components/gd/Placeholder' + +const MicroBridge = memo(() => { + const { address } = useAppKitAccount() + return ( + + + + {i18n._( + t`Seamlessly convert between Fuse G$ tokens to Celo and vice versa, +enabling versatile use of G$ tokens across various platforms and +ecosystems` + )} + + +
+ + + {address ? ( + + ) : ( + + {i18n._(t`Connect a wallet to see your portfolio`)} + + )} + + +
+
+ ) +}) + +export default MicroBridge diff --git a/src/routes.tsx b/src/routes.tsx index fc89552ec..4eb465c42 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -13,6 +13,7 @@ const Swap = lazy(() => import('./pages/gd/Swap')) const Stakes = lazy(() => import('./pages/gd/Stake')) const Portfolio = lazy(() => import('./pages/gd/Portfolio')) const MicroBridge = lazy(() => import('./pages/gd/MicroBridge')) +const GoodBridge = lazy(() => import('./pages/gd/GoodBridge')) const Claim = lazy(() => import('./pages/gd/Claim/')) const GoodId = lazy(() => import('./pages/gd/GoodId')) const BuyGd = lazy(() => import('./pages/gd/BuyGD')) @@ -55,6 +56,7 @@ function Routes(): JSX.Element { + From 393ce5b051fb1f6d5f39c3a9dbf8d274f17f8f6b Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 24 Mar 2026 22:48:02 +0100 Subject: [PATCH 2/6] update sideBar.tsx --- src/hooks/useFeaturesEnabled.tsx | 4 +++ src/language/locales/af/catalog.po | 6 ++-- src/language/locales/ar/catalog.po | 6 ++-- src/language/locales/ca/catalog.po | 6 ++-- src/language/locales/cs/catalog.po | 6 ++-- src/language/locales/da/catalog.po | 6 ++-- src/language/locales/de/catalog.po | 6 ++-- src/language/locales/el/catalog.po | 6 ++-- src/language/locales/en/catalog.po | 6 ++-- src/language/locales/es-419/catalog.po | 6 ++-- src/language/locales/es/catalog.po | 6 ++-- src/language/locales/fi/catalog.po | 6 ++-- src/language/locales/fr/catalog.po | 6 ++-- src/language/locales/he/catalog.po | 6 ++-- src/language/locales/hi/catalog.po | 6 ++-- src/language/locales/hu/catalog.po | 6 ++-- src/language/locales/it/catalog.po | 6 ++-- src/language/locales/ja/catalog.po | 6 ++-- src/language/locales/ko/catalog.po | 6 ++-- src/language/locales/nl/catalog.po | 6 ++-- src/language/locales/no/catalog.po | 6 ++-- src/language/locales/pl/catalog.po | 6 ++-- src/language/locales/pt-BR/catalog.po | 6 ++-- src/language/locales/pt/catalog.po | 6 ++-- src/language/locales/ro/catalog.po | 6 ++-- src/language/locales/ru/catalog.po | 6 ++-- src/language/locales/sr/catalog.po | 6 ++-- src/language/locales/sv/catalog.po | 6 ++-- src/language/locales/tr/catalog.po | 6 ++-- src/language/locales/uk/catalog.po | 6 ++-- src/language/locales/vi/catalog.po | 6 ++-- src/language/locales/zh-CN/catalog.po | 6 ++-- src/language/locales/zh-TW/catalog.po | 6 ++-- src/language/locales/zh/catalog.po | 6 ++-- src/pages/gd/GoodBridge/index.tsx | 43 +++++++------------------- 35 files changed, 148 insertions(+), 97 deletions(-) diff --git a/src/hooks/useFeaturesEnabled.tsx b/src/hooks/useFeaturesEnabled.tsx index 64766b374..c9542739e 100644 --- a/src/hooks/useFeaturesEnabled.tsx +++ b/src/hooks/useFeaturesEnabled.tsx @@ -35,6 +35,7 @@ const localFeatureConfig: FeatureConfigPayload = { [SupportedChains.CELO]: { networkEnabled: true, microBridgeEnabled: true, + goodBridgeEnabled: true, lzBridgeEnabled: false, reserveEnabled: true, claimEnabled: true, @@ -43,6 +44,7 @@ const localFeatureConfig: FeatureConfigPayload = { [SupportedChains.MAINNET]: { networkEnabled: true, microBridgeEnabled: false, + goodBridgeEnabled: false, lzBridgeEnabled: false, reserveEnabled: false, claimEnabled: false, @@ -51,6 +53,7 @@ const localFeatureConfig: FeatureConfigPayload = { [SupportedChains.FUSE]: { networkEnabled: true, microBridgeEnabled: true, + goodBridgeEnabled: true, lzBridgeEnabled: false, reserveEnabled: false, claimEnabled: true, @@ -59,6 +62,7 @@ const localFeatureConfig: FeatureConfigPayload = { [SupportedChains.XDC]: { networkEnabled: false, microBridgeEnabled: false, + goodBridgeEnabled: false, lzBridgeEnabled: false, reserveEnabled: false, claimEnabled: false, diff --git a/src/language/locales/af/catalog.po b/src/language/locales/af/catalog.po index 899df608f..00a359382 100644 --- a/src/language/locales/af/catalog.po +++ b/src/language/locales/af/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Bevestig hierdie transaksie in jou beursie" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Routing deur middel van hierdie tekens het gelei tot die beste prys vir msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Glip Verdraagsaamheid" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ar/catalog.po b/src/language/locales/ar/catalog.po index 3dba2cb97..28ea9c7be 100644 --- a/src/language/locales/ar/catalog.po +++ b/src/language/locales/ar/catalog.po @@ -2895,6 +2895,7 @@ msgstr "قم بتأكيد هذه المعاملة في محفظتك" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "أدى التوجيه عبر هذه الرموز إلى أفضل سعر msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "تسامح الانزلاق" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ca/catalog.po b/src/language/locales/ca/catalog.po index 59593bd49..dc839ada4 100644 --- a/src/language/locales/ca/catalog.po +++ b/src/language/locales/ca/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/cs/catalog.po b/src/language/locales/cs/catalog.po index 00216e962..f37fa2d30 100644 --- a/src/language/locales/cs/catalog.po +++ b/src/language/locales/cs/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/da/catalog.po b/src/language/locales/da/catalog.po index e49d21a13..a0dcd8e42 100644 --- a/src/language/locales/da/catalog.po +++ b/src/language/locales/da/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/de/catalog.po b/src/language/locales/de/catalog.po index 886d4b23a..be69fcfab 100644 --- a/src/language/locales/de/catalog.po +++ b/src/language/locales/de/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Bestätigen Sie diese Transaktion in Ihrer Brieftasche" msgid "Congratulations!" msgstr "Herzliche Glückwünsche!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Das Weiterleiten durch diese Token ergab den besten Preis für Ihren Han msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Schlupftoleranz" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/el/catalog.po b/src/language/locales/el/catalog.po index f3381ddb8..0488b5819 100644 --- a/src/language/locales/el/catalog.po +++ b/src/language/locales/el/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/en/catalog.po b/src/language/locales/en/catalog.po index 586cac955..a8ca827c5 100644 --- a/src/language/locales/en/catalog.po +++ b/src/language/locales/en/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/es-419/catalog.po b/src/language/locales/es-419/catalog.po index 41e34f09f..446be21b9 100644 --- a/src/language/locales/es-419/catalog.po +++ b/src/language/locales/es-419/catalog.po @@ -253,6 +253,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -389,7 +390,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -624,6 +625,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -649,7 +651,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/es/catalog.po b/src/language/locales/es/catalog.po index 061d623f2..35fd7d5a2 100644 --- a/src/language/locales/es/catalog.po +++ b/src/language/locales/es/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Confirme esta transacción en su billetera." msgid "Congratulations!" msgstr "¡Felicidades!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "El enrutamiento a través de estos tokens resultó en el mejor precio pa msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Tolerancia al deslizamiento" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/fi/catalog.po b/src/language/locales/fi/catalog.po index 880800028..51e8312c9 100644 --- a/src/language/locales/fi/catalog.po +++ b/src/language/locales/fi/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/fr/catalog.po b/src/language/locales/fr/catalog.po index cc09564df..ad6e3ec20 100644 --- a/src/language/locales/fr/catalog.po +++ b/src/language/locales/fr/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "Toutes nos félicitations!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Le routage à travers ces tokens vous a permis d'obtenir le meilleur pri msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Tolérance de slippage" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/he/catalog.po b/src/language/locales/he/catalog.po index e69f2ce33..475d2f7a5 100644 --- a/src/language/locales/he/catalog.po +++ b/src/language/locales/he/catalog.po @@ -2895,6 +2895,7 @@ msgstr "אשר את העסקה הזו בארנק שלך" msgid "Congratulations!" msgstr "מזל טוב!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "ניתוב באמצעות אסימונים אלה הביא את המחי msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "תנודת מחיר מקובלת" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/hi/catalog.po b/src/language/locales/hi/catalog.po index dff67e55d..0a0139a3c 100644 --- a/src/language/locales/hi/catalog.po +++ b/src/language/locales/hi/catalog.po @@ -1650,6 +1650,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -1794,7 +1795,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -2047,6 +2048,7 @@ msgstr "इन टोकन के माध्यम से रूटिंग msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -2072,7 +2074,7 @@ msgstr "स्लिपेज टॉलरेंस" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/hu/catalog.po b/src/language/locales/hu/catalog.po index c2d38730b..518e61ff2 100644 --- a/src/language/locales/hu/catalog.po +++ b/src/language/locales/hu/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/it/catalog.po b/src/language/locales/it/catalog.po index 74c483238..fccc61c85 100644 --- a/src/language/locales/it/catalog.po +++ b/src/language/locales/it/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Conferma questa transazione nel tuo portafoglio" msgid "Congratulations!" msgstr "Congratulazioni!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Il routing attraverso questi token è risultato nel prezzo migliore per msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Tolleranza slippage" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ja/catalog.po b/src/language/locales/ja/catalog.po index 74276e1b2..1e961b941 100644 --- a/src/language/locales/ja/catalog.po +++ b/src/language/locales/ja/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "おめでとう!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "これらのトークンを介してルーティングすると、取引 msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "スリッページ許容値" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ko/catalog.po b/src/language/locales/ko/catalog.po index d90ff63fd..769324fe8 100644 --- a/src/language/locales/ko/catalog.po +++ b/src/language/locales/ko/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "축하합니다!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "다음 토큰들을 통한 라우팅을 통해 최적의 가격이 산 msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "미끄러짐 공차" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/nl/catalog.po b/src/language/locales/nl/catalog.po index e3c67a56a..c01c7d332 100644 --- a/src/language/locales/nl/catalog.po +++ b/src/language/locales/nl/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/no/catalog.po b/src/language/locales/no/catalog.po index ad1f95301..d5da6d2b8 100644 --- a/src/language/locales/no/catalog.po +++ b/src/language/locales/no/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/pl/catalog.po b/src/language/locales/pl/catalog.po index 3726504a3..9cf0ab6ba 100644 --- a/src/language/locales/pl/catalog.po +++ b/src/language/locales/pl/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/pt-BR/catalog.po b/src/language/locales/pt-BR/catalog.po index 62db13da2..a1edc9acb 100644 --- a/src/language/locales/pt-BR/catalog.po +++ b/src/language/locales/pt-BR/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "O roteamento por meio desses tokens resultou no melhor preço para sua n msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Tolerância de deslizamento" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/pt/catalog.po b/src/language/locales/pt/catalog.po index a3e3d1b01..ad8a10418 100644 --- a/src/language/locales/pt/catalog.po +++ b/src/language/locales/pt/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ro/catalog.po b/src/language/locales/ro/catalog.po index f4c874e9c..061071f05 100644 --- a/src/language/locales/ro/catalog.po +++ b/src/language/locales/ro/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Confirmați această tranzacție în portofel" msgid "Congratulations!" msgstr "Felicitări!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Trecerea prin aceste jetoane a dus la cel mai bun preț pentru tranzacț msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Toleranță la alunecare" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/ru/catalog.po b/src/language/locales/ru/catalog.po index a4591c986..fe1d6dfcf 100644 --- a/src/language/locales/ru/catalog.po +++ b/src/language/locales/ru/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Подтвердите эту транзакцию в вашем кош msgid "Congratulations!" msgstr "Поздравляю!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Маршрутизация через эти токены привела msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Допуск по проскальзыванию" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/sr/catalog.po b/src/language/locales/sr/catalog.po index bc2812a42..5e6732927 100644 --- a/src/language/locales/sr/catalog.po +++ b/src/language/locales/sr/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/sv/catalog.po b/src/language/locales/sv/catalog.po index e2dc48cb6..623025b58 100644 --- a/src/language/locales/sv/catalog.po +++ b/src/language/locales/sv/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/tr/catalog.po b/src/language/locales/tr/catalog.po index 0d09f7488..d01f78f26 100644 --- a/src/language/locales/tr/catalog.po +++ b/src/language/locales/tr/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/uk/catalog.po b/src/language/locales/uk/catalog.po index 3fa9e7386..042bbf62c 100644 --- a/src/language/locales/uk/catalog.po +++ b/src/language/locales/uk/catalog.po @@ -2895,6 +2895,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/vi/catalog.po b/src/language/locales/vi/catalog.po index 46ca0c1ad..299d278c7 100644 --- a/src/language/locales/vi/catalog.po +++ b/src/language/locales/vi/catalog.po @@ -2895,6 +2895,7 @@ msgstr "Xác nhận giao dịch này trong ví của bạn" msgid "Congratulations!" msgstr "Xin chúc mừng!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "Định tuyến thông qua các mã thông báo này dẫn đến giá t msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "Khả năng chịu trượt" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/zh-CN/catalog.po b/src/language/locales/zh-CN/catalog.po index 21d5b5dec..493418e99 100644 --- a/src/language/locales/zh-CN/catalog.po +++ b/src/language/locales/zh-CN/catalog.po @@ -2895,6 +2895,7 @@ msgstr "在钱包中确认此事务" msgid "Congratulations!" msgstr "祝贺!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "路由经过这些代币将给您的交易带来最好的价格。" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "可容忍滑点" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/zh-TW/catalog.po b/src/language/locales/zh-TW/catalog.po index f6ff0efad..15111481d 100644 --- a/src/language/locales/zh-TW/catalog.po +++ b/src/language/locales/zh-TW/catalog.po @@ -2895,6 +2895,7 @@ msgstr "在錢包中確認此事務" msgid "Congratulations!" msgstr "祝賀!" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -3039,7 +3040,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -3292,6 +3293,7 @@ msgstr "路由經過這些代幣將給您的交易帶來最好的價格。" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -3317,7 +3319,7 @@ msgstr "可容忍滑點" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/language/locales/zh/catalog.po b/src/language/locales/zh/catalog.po index 88c81e087..fe3c63815 100644 --- a/src/language/locales/zh/catalog.po +++ b/src/language/locales/zh/catalog.po @@ -2366,6 +2366,7 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:36 #: src/pages/gd/MicroBridge/index.tsx:36 #: src/pages/gd/Portfolio/index.tsx:459 msgid "Connect a wallet to see your portfolio" @@ -2510,7 +2511,7 @@ msgstr "" msgid "GoodDollar creates free money as a public good, G$ tokens, which you can collect daily." msgstr "" -#: src/components/SideBar.tsx:230 +#: src/components/SideBar.tsx:235 msgid "GoodDollar Main Bridge" msgstr "" @@ -2763,6 +2764,7 @@ msgstr "" msgid "Savings" msgstr "" +#: src/pages/gd/GoodBridge/index.tsx:23 #: src/pages/gd/MicroBridge/index.tsx:23 msgid "" "Seamlessly convert between Fuse G$ tokens to Celo and vice versa, \n" @@ -2788,7 +2790,7 @@ msgstr "" msgid "Social APY" msgstr "" -#: src/components/SideBar.tsx:237 +#: src/components/SideBar.tsx:242 msgid "Squid Router" msgstr "" diff --git a/src/pages/gd/GoodBridge/index.tsx b/src/pages/gd/GoodBridge/index.tsx index 5ab83de28..b7fb0347c 100644 --- a/src/pages/gd/GoodBridge/index.tsx +++ b/src/pages/gd/GoodBridge/index.tsx @@ -1,43 +1,24 @@ import React, { memo } from 'react' -import { - SwitchChainModal, - // ClaimCarousel, - MicroBridgeController, - // IClaimCard, -} from '@gooddollar/good-design' -import { Text, VStack } from 'native-base' -import { i18n } from '@lingui/core' -import { t } from '@lingui/macro' +import { SwitchChainModal } from '@gooddollar/good-design' +import { MPBBridgeController } from '@gooddollar/good-design/dist/apps/bridge/mpbridge' import { useAppKitAccount } from '@reown/appkit/react' - import { PageLayout } from 'components/Layout/PageLayout' import Placeholder from 'components/gd/Placeholder' +import { i18n } from '@lingui/core' +import { t } from '@lingui/macro' const GoodBridge = memo(() => { const { address } = useAppKitAccount() return ( - - - - {i18n._( - t`Seamlessly convert between Fuse G$ tokens to Celo and vice versa, -enabling versatile use of G$ tokens across various platforms and -ecosystems` - )} - - +
- - - {address ? ( - - ) : ( - - {i18n._(t`Connect a wallet to see your portfolio`)} - - )} - - + + {address ? ( + + ) : ( + {i18n._(t`Connect a wallet to see your portfolio`)} + )} +
) From 3b9177c9143e0edc101f4ed20aca6d2da9c669f2 Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 31 Mar 2026 20:07:20 +0100 Subject: [PATCH 3/6] feat: implement GoodBridge route and update connect wallet copy --- src/pages/gd/GoodBridge/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/gd/GoodBridge/index.tsx b/src/pages/gd/GoodBridge/index.tsx index b7fb0347c..98c17ded5 100644 --- a/src/pages/gd/GoodBridge/index.tsx +++ b/src/pages/gd/GoodBridge/index.tsx @@ -16,7 +16,9 @@ const GoodBridge = memo(() => { {address ? ( ) : ( - {i18n._(t`Connect a wallet to see your portfolio`)} + + {i18n._(t`Connect a wallet to start bridging assets`)} + )} From 12e8e3b8dd223f069e6753d60bac2ec2491760af Mon Sep 17 00:00:00 2001 From: Nicholas Igber <111025771+Gutopro@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:15:25 +0100 Subject: [PATCH 4/6] Delete src/pages/gd/GoodBridge/index.tsx~ --- src/pages/gd/GoodBridge/index.tsx~ | 46 ------------------------------ 1 file changed, 46 deletions(-) delete mode 100644 src/pages/gd/GoodBridge/index.tsx~ diff --git a/src/pages/gd/GoodBridge/index.tsx~ b/src/pages/gd/GoodBridge/index.tsx~ deleted file mode 100644 index 9d385db07..000000000 --- a/src/pages/gd/GoodBridge/index.tsx~ +++ /dev/null @@ -1,46 +0,0 @@ -import React, { memo } from 'react' -import { - SwitchChainModal, - // ClaimCarousel, - MicroBridgeController, - // IClaimCard, -} from '@gooddollar/good-design' -import { Text, VStack } from 'native-base' -import { i18n } from '@lingui/core' -import { t } from '@lingui/macro' -import { useAppKitAccount } from '@reown/appkit/react' - -import { PageLayout } from 'components/Layout/PageLayout' -import Placeholder from 'components/gd/Placeholder' - -const MicroBridge = memo(() => { - const { address } = useAppKitAccount() - return ( - - - - {i18n._( - t`Seamlessly convert between Fuse G$ tokens to Celo and vice versa, -enabling versatile use of G$ tokens across various platforms and -ecosystems` - )} - - -
- - - {address ? ( - - ) : ( - - {i18n._(t`Connect a wallet to see your portfolio`)} - - )} - - -
-
- ) -}) - -export default MicroBridge From 991dc3895f5eeb924075cbec26bb76240c59fe1b Mon Sep 17 00:00:00 2001 From: Nicholas Igber <111025771+Gutopro@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:26:23 +0100 Subject: [PATCH 5/6] Add goodBridgeEnabled to payload destructuring --- src/components/SideBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx index 1a4e617c3..01eafb4e1 100644 --- a/src/components/SideBar.tsx +++ b/src/components/SideBar.tsx @@ -100,7 +100,7 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl }) const isMinipay = isMiniPay() - const { bridgeEnabled = false, swapEnabled = false } = payload || {} + const { bridgeEnabled = false, swapEnabled = false, goodBridgeEnabled = false } = payload || {} const externalLinks = useMemo( () => [ @@ -229,7 +229,7 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl { route: '/goodbridge', text: 'Good Bridge', - show: !isMinipay || bridgeEnabled, + show: !isMinipay || goodbridgeEnabled, }, { label: i18n._(t`GoodDollar Main Bridge`), From 7923fa6da1e593e4bb26499083ce434ddd3d2e1f Mon Sep 17 00:00:00 2001 From: Nicholas Igber <111025771+Gutopro@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:29:06 +0100 Subject: [PATCH 6/6] Fix typo in goodBridgeEnabled variable --- src/components/SideBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx index 01eafb4e1..299afbcc9 100644 --- a/src/components/SideBar.tsx +++ b/src/components/SideBar.tsx @@ -229,7 +229,7 @@ export default function SideBar({ mobile, closeSidebar }: { mobile?: boolean; cl { route: '/goodbridge', text: 'Good Bridge', - show: !isMinipay || goodbridgeEnabled, + show: !isMinipay || goodBridgeEnabled, }, { label: i18n._(t`GoodDollar Main Bridge`),