Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ethereum-ecosystem.com to tools on layer 2 page [Fixes #11700] #12181

Merged
merged 2 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/layer-2/ethereumecosystem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/intl/en/page-layer-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"layer-2-tools-title": "Tools to be effective on layer 2",
"layer-2-tools-l2beat-description": "L2BEAT is a great resource for looking at technical risk assessments of layer 2 projects. We recommend checking out their resources when researching specific layer 2 projects.",
"layer-2-tools-growthepie-description": "Curated analytics about Ethereun layer 2s",
"layer-2-tools-ethereumecosystem-description": "Unofficial Ecosystem page of Ethereum and its Layer 2s including Base, Optimism, and Starknet featuring hundreds of dApps and tools.",
"layer-2-tools-l2fees-description": "L2 Fees lets you see the current cost (denominated in USD) for doing transactions on different layer 2s.",
"layer-2-tools-chainlist-description": "Chainlist is a great resource for importing network RPC's into supporting wallets. You will find RPC's for layer 2 projects here to help get you connected.",
"layer-2-tools-zapper-description": "Manage your entire web3 portfolio from DeFi to NFTs and whatever comes next. Invest in the latest opportunities from one convenient place.",
Expand Down
1 change: 1 addition & 0 deletions src/intl/fr/page-layer-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"layer-2-go-to": "Aller à",
"layer-2-tools-title": "Outils à utiliser sur la couche 2",
"layer-2-tools-l2beat-description": "L2BEAT est un excellent site pour se documenter sur les risques techniques des projets des couches 2. Nous vous recommandons de vérifier sur ce site quand vous recherchez des projets spécifiques de couche 2.",
"layer-2-tools-ethereumecosystem-description": "Page d'écosystème non officielle d'Ethereum et de ses solutions de couche 2, incluant Base, Optimism et Starknet, présentant des centaines de dApps et d'outils.",
"layer-2-tools-l2fees-description": "L2 Fees vous permet de voir le coût à un moment précis (en USD) pour réaliser des transactions sur les différentes couches 2.",
"layer-2-tools-chainlist-description": "Chainlist est un excellent site pour enregistrer des réseaux RPC sur votre portefeuille. Vous trouverez les RPC pour les projets de couche 2 afin de vous aider à vous y connecter.",
"layer-2-tools-zapper-description": "Gérez l'ensemble de votre portefeuille web3 de la DeFi aux NFT et quel que soit le projet. Investissez dans les dernières opportunités à partir d'un unique endroit.",
Expand Down
8 changes: 8 additions & 0 deletions src/pages/layer-2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import DogeImage from "@/public/doge-computer.png"
import EthHomeImage from "@/public/eth-home-icon.png"
import HeroImage from "@/public/heroes/layer-2-hub-hero.jpg"
import DebankImage from "@/public/layer-2/debank.png"
import ethereumecosystemImage from "@/public/layer-2/ethereumecosystem.png"
import growthepieImage from "@/public/layer-2/growthepie.png"
import L2BEATImage from "@/public/layer-2/l2beat.jpg"
import OptimisticRollupImage from "@/public/layer-2/optimistic_rollup.png"
Expand Down Expand Up @@ -201,6 +202,13 @@ const Layer2Page = () => {
image: L2BEATImage,
alt: "L2BEAT",
},
{
title: "Ethereum Ecosystem",
description: t("layer-2-tools-ethereumecosystem-description"),
link: "https://www.ethereum-ecosystem.com/",
image: ethereumecosystemImage,
alt: "Ethereum Ecosystem",
},
{
title: "growthepie",
description: t("layer-2-tools-growthepie-description"),
Expand Down
Loading