Skip to content

Commit 245dcad

Browse files
authored
Merge pull request #11261 from ethereum/addCurveandDodo
Add Curve and DODO to dex's
2 parents 3b66a2f + 2ef0495 commit 245dcad

File tree

8 files changed

+28
-9
lines changed

8 files changed

+28
-9
lines changed

src/assets/dapps/curve.png

288 KB
Loading

src/assets/dapps/dodo.png

123 KB
Loading

src/content/developers/docs/frameworks/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ Before diving into frameworks, we recommend you first read through our introduct
114114
- [Community Forum](https://forum.openzeppelin.com/c/support/17)
115115
- **OpenZeppelin SDK development has ended**
116116

117-
118117
## Further reading {#further-reading}
119118

120119
_Know of a community resource that helped you? Edit this page and add it!_

src/content/developers/docs/nodes-and-clients/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ This table summarizes the different clients. All of them pass [client tests](htt
139139
| [Nethermind](http://nethermind.io/) | C#, .NET | Linux, Windows, macOS | Mainnet, Sepolia, Goerli, and more | Snap (without serving), Fast, Full | Archive, Pruned |
140140
| [Besu](https://besu.hyperledger.org/en/stable/) | Java | Linux, Windows, macOS | Mainnet, Sepolia, Goerli, and more | Snap, Fast, Full | Archive, Pruned |
141141
| [Erigon](https://github.com/ledgerwatch/erigon) | Go | Linux, Windows, macOS | Mainnet, Sepolia, Goerli, and more | Full | Archive, Pruned |
142-
| [Reth](https://github.com/paradigmxyz/reth) | Rust | Linux, Windows, macOS | Mainnet, Sepolia, Goerli, and more | Full | Archive, Pruned |
142+
| [Reth](https://github.com/paradigmxyz/reth) | Rust | Linux, Windows, macOS | Mainnet, Sepolia, Goerli, and more | Full | Archive, Pruned |
143143

144144
For more on supported networks, read up on [Ethereum networks](/developers/docs/networks/).
145145

src/data/crowdin/combined-translators.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60989,4 +60989,4 @@
6098960989
}
6099060990
]
6099160991
}
60992-
]
60992+
]

src/data/crowdin/file-ids.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,4 +1183,4 @@
11831183
"id": 7304,
11841184
"path": "/developers/tutorials/short-abi/index.md"
11851185
}
1186-
]
1186+
]

src/intl/en/page-dapps.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,10 @@
285285
"foundation": "Foundation",
286286
"transaction-fees": "What are transaction fees?",
287287
"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
"page-dapps-dapp-description-artblocks": "Art Blocks is dedicated to bringing compelling works of contemporary generative art to life",
289293
"page-dapps-artblocks-image-alt": "Art Blocks logo"
290294
}

src/pages-conditional/dapps.tsx

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,20 @@ const DappsPage = ({
670670
image: getImage(data.balancer),
671671
alt: t("page-dapps-balancer-logo-alt"),
672672
},
673+
{
674+
title: "Curve",
675+
description: t("page-dapps-dapp-description-curve"),
676+
link: "https://curve.fi/",
677+
image: getImage(data.curve),
678+
alt: t("page-dapps-curve-logo-alt"),
679+
},
680+
{
681+
title: "DODO",
682+
description: t("page-dapps-dapp-description-dodo"),
683+
link: "https://dodoex.io/",
684+
image: getImage(data.dodo),
685+
alt: t("page-dapps-dodo-logo-alt"),
686+
},
673687
]
674688

675689
const trading = [
@@ -1642,11 +1656,7 @@ const DappsPage = ({
16421656
<Column>
16431657
<H2>
16441658
<Translation id="page-dapps-metaverse-title" />{" "}
1645-
<Emoji
1646-
fontSize="5xl"
1647-
ml="2"
1648-
text=":globe_with_meridians:"
1649-
/>
1659+
<Emoji fontSize="5xl" ml="2" text=":globe_with_meridians:" />
16501660
</H2>
16511661
<Subtitle>
16521662
<Translation id="page-dapps-metaverse-description" />
@@ -2154,6 +2164,12 @@ export const query = graphql`
21542164
synthetix: file(relativePath: { eq: "dapps/synthetix.png" }) {
21552165
...dappImage
21562166
}
2167+
curve: file(relativePath: { eq: "dapps/curve.png" }) {
2168+
...dappImage
2169+
}
2170+
dodo: file(relativePath: { eq: "dapps/dodo.png" }) {
2171+
...dappImage
2172+
}
21572173
artblocks: file(relativePath: { eq: "dapps/artblocks.png" }) {
21582174
...dappImage
21592175
}

0 commit comments

Comments
 (0)