Skip to content

Commit db4382c

Browse files
committed
Add Curve and DODO to dex's
1 parent 22de241 commit db4382c

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

src/assets/dapps/curve.png

288 KB
Loading

src/assets/dapps/dodo.png

123 KB
Loading

src/intl/en/page-dapps.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,5 +284,9 @@
284284
"page-dapps-convex-image-alt": "Convex logo",
285285
"foundation": "Foundation",
286286
"transaction-fees": "What are transaction fees?",
287-
"page-wallets-get-some": "Get some ETH"
287+
"page-wallets-get-some": "Get some ETH",
288+
"page-dapps-dapp-description-curve": "Curve is a dex focused on stablecoins",
289+
"page-dapps-curve-image-alt": "Curve logo",
290+
"page-dapps-dapp-description-dodo": "DODO is a on-chain liquidity provider, which leverages the Proactive Market Maker algorithm (PMM)",
291+
"page-dapps-dodo-image-alt": "DODO logo"
288292
}

src/pages-conditional/dapps.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,20 @@ const DappsPage = ({
692692
image: getImage(data.balancer),
693693
alt: t("page-dapps-balancer-logo-alt"),
694694
},
695+
{
696+
title: "Curve",
697+
description: t("page-dapps-dapp-description-curve"),
698+
link: "https://curve.fi/",
699+
image: getImage(data.curve),
700+
alt: t("page-dapps-curve-logo-alt"),
701+
},
702+
{
703+
title: "DODO",
704+
description: t("page-dapps-dapp-description-dodo"),
705+
link: "https://dodo.io/",
706+
image: getImage(data.dodo),
707+
alt: t("page-dapps-dodo-logo-alt"),
708+
},
695709
]
696710

697711
const trading = [
@@ -2182,5 +2196,11 @@ export const query = graphql`
21822196
synthetix: file(relativePath: { eq: "dapps/synthetix.png" }) {
21832197
...dappImage
21842198
}
2199+
curve: file(relativePath: { eq: "dapps/curve.png" }) {
2200+
...dappImage
2201+
}
2202+
dodo: file(relativePath: { eq: "dapps/dodo.png" }) {
2203+
...dappImage
2204+
}
21852205
}
21862206
`

0 commit comments

Comments
 (0)