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 Krystal to the dapps page #7639

Merged
merged 1 commit into from
Sep 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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 src/assets/dapps/krystal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/intl/en/page-dapps.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"page-dapps-dapp-description-zapper": "Track your portfolio and use a range of DeFi products from one interface.",
"page-dapps-dapp-description-zerion": "Manage your portfolio and simply evaluate every single DeFi asset on the market.",
"page-dapps-dapp-description-rotki": "Open source portfolio tracking, analytics, accounting and tax reporting tool that respects your privacy.",
"page-dapps-dapp-description-krystal": "A one-stop platform to access all your favourite DeFi services.",
"page-dapps-dapp-description-rarible": "Create, sell and buy tokenised collectibles.",
"page-dapps-dapp-description-sablier": "Stream money in real-time.",
"page-dapps-dapp-description-superrare": "Buy digital artworks direct from artists or in secondary markets.",
Expand All @@ -94,6 +95,7 @@
"page-dapps-zapper-logo-alt": "Zapper logo",
"page-dapps-zerion-logo-alt": "Zerion logo",
"page-dapps-rotki-logo-alt": "Rotki logo",
"page-dapps-krystal-logo-alt": "Krystal logo",
"page-dapps-desc": "Find an Ethereum application to try.",
"page-dapps-doge-img-alt": "Illustration of a doge using a computer",
"page-dapps-dydx-logo-alt": "dYdX logo",
Expand Down
13 changes: 13 additions & 0 deletions src/pages-conditional/dapps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,16 @@ const DappsPage = ({
image: getImage(data.rotki),
alt: translateMessageId("page-dapps-rotki-logo-alt", intl),
},
{
title: "Krystal",
description: translateMessageId(
"page-dapps-dapp-description-krystal",
intl
),
link: "https://defi.krystal.app/",
image: getImage(data.krystal),
alt: translateMessageId("page-dapps-krystal-logo-alt", intl),
},
]

const computing = [
Expand Down Expand Up @@ -1899,6 +1909,9 @@ export const query = graphql`
rotki: file(relativePath: { eq: "dapps/rotki.png" }) {
...dappImage
}
krystal: file(relativePath: { eq: "dapps/krystal.png" }) {
...dappImage
}
poap: file(relativePath: { eq: "dapps/poap.png" }) {
...dappImage
}
Expand Down