Skip to content

Commit df06bec

Browse files
committed
[Dashboard]Adding zkCandy + Onyx chain updates (#7035)
Adding custom chain info to - Onyx Mainnet - zkCandy Mainnet <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces new assets and updates the `chainMetaRecord` object to include information for the `Onyx` and `zkCandy` blockchains, enhancing the dashboard with additional details and visuals. ### Detailed summary - Added imports for `onyxBanner`, `onyxCTA`, and `zkCandyBanner` images. - Introduced `Onyx` blockchain entry in `chainMetaRecord` with header image, description, and CTA. - Added `zkCandy` blockchain entry in `chainMetaRecord` with header image, description, and CTA. - Updated comment for `zkCandy` entry to specify it as "zkCandy Testnet". > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 6000dac commit df06bec

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed
Loading
Loading
Loading

apps/dashboard/src/app/(app)/(dashboard)/(chain)/utils.ts

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ import flowBanner from "./temp-assets/flowBanner.png";
4545
import flowCTA from "./temp-assets/flowCTA.png";
4646
import mantleBanner from "./temp-assets/mantle.png";
4747
import metalBanner from "./temp-assets/metalBanner.png";
48+
import onyxBanner from "./temp-assets/onyxBanner.png";
49+
import onyxCTA from "./temp-assets/onyxCTA.png";
4850
import plumeBanner from "./temp-assets/plumeBanner.png";
4951

5052
import plumeCTA from "./temp-assets/plumeCTA.png";
@@ -73,6 +75,7 @@ import worldChainCTA from "./temp-assets/worldChainCTA.jpg";
7375
import xaiBanner from "./temp-assets/xai-banner.jpg";
7476
import zetachainBanner from "./temp-assets/zetachainBanner.png";
7577
import zetachainCTA from "./temp-assets/zetachainCTA.png";
78+
import zkCandyBanner from "./temp-assets/zkCandyBanner.jpg";
7679
import zytronBanner from "./temp-assets/zytronBanner.png";
7780
import zytronCTA from "./temp-assets/zytronCTA.jpg";
7881
// END TEMPORARY
@@ -554,6 +557,18 @@ const chainMetaRecord = {
554557
buttonText: "Learn more",
555558
},
556559
},
560+
//Onyx Mainnet
561+
80888: {
562+
headerImgUrl: onyxBanner.src,
563+
about:
564+
"Onyx is a layer 3 blockchain secured by Ethereum and Base providing developers and institutions a secure financial-purposed decentralized blockchain for banking and securities based applications. Powered by XCN.",
565+
cta: {
566+
backgroundImageUrl: onyxCTA.src,
567+
title: "Unlock the potential of your application with Onyx Connect",
568+
buttonLink: "https://onyx.org/",
569+
buttonText: "Learn More",
570+
},
571+
},
557572
//Plume Testnet
558573
98864: {
559574
headerImgUrl: plumeBanner.src,
@@ -718,7 +733,7 @@ const chainMetaRecord = {
718733
buttonText: "Learn More",
719734
},
720735
},
721-
//zkCandy
736+
//zkCandy Testnet
722737
302: {
723738
headerImgUrl: thirdwebBanner.src,
724739
about:
@@ -730,6 +745,19 @@ const chainMetaRecord = {
730745
buttonText: "Learn more",
731746
},
732747
},
748+
749+
//zkCandy Mainnet
750+
320: {
751+
headerImgUrl: zkCandyBanner.src,
752+
about:
753+
"ZKcandy is an AI-powered Layer-2 aiming to redefine what’s possible in gaming and entertainment. As a ZK Chain built on ZKsync’s Elastic Network, it focuses on building immersive gaming ecosystems where players make the most of today’s AI capabilities. Emerged from a groundbreaking collaboration between ZKsync and the award-winning game studio iCandy Interactive, It's the first L2 ZK chain for gaming in the ZKsync ecosystem.",
754+
cta: {
755+
backgroundImageUrl: zkCandyBanner.src,
756+
title: " ",
757+
buttonLink: "https://litepaper.zkcandy.io/dev-guide/",
758+
buttonText: "Learn More",
759+
},
760+
},
733761
//zkSync
734762
324: {
735763
headerImgUrl: thirdwebBanner.src,

0 commit comments

Comments
 (0)