Skip to content

Commit a443b30

Browse files
committed
Adding NeoX custom chain info. (#7045)
Adding Custom chain info to - NeoX Mainnet 47763 - NeoX Testnt 12227332 <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces new assets and metadata for the `Neo X` blockchain, enhancing the dashboard with images and information about its features and offerings. ### Detailed summary - Added imports for `NeoXBanner` and `NeoXCTA` images. - Introduced metadata for `Neo X` (ID: 47763) including: - `headerImgUrl` - `about` description - `cta` object with `backgroundImageUrl`, `title`, `buttonLink`, and `buttonText`. - Duplicated metadata for `Neo X Testnet` (ID: 12227332) with similar structure. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent ae2ff74 commit a443b30

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
Loading
Loading

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ import creatorCTA from "./temp-assets/creatorCTA.png";
4141
import lumiaBanner from "./temp-assets/lumiaBanner.png";
4242
import somniaBanner from "./temp-assets/somniaBanner.png";
4343

44+
import NeoXBanner from "./temp-assets/NeoXBanner.jpg";
45+
import NeoXCTA from "./temp-assets/NeoXCTA.jpg";
4446
import flowBanner from "./temp-assets/flowBanner.png";
4547
import flowCTA from "./temp-assets/flowCTA.png";
4648
import mantleBanner from "./temp-assets/mantle.png";
@@ -545,6 +547,30 @@ const chainMetaRecord = {
545547
about:
546548
"Metal L2 is a banking-focused Layer 2 blockchain built on the Optimism Superchain, designed to enable direct on-chain fiat deposits through its connection to The Digital Banking Network—an open-source blockchain banking protocol developed by Metallicus",
547549
},
550+
//NEO X
551+
47763: {
552+
headerImgUrl: NeoXBanner.src,
553+
about:
554+
"Neo X is an EVM-compatible sidechain built by Neo, incorporating Neo's distinctive dBFT consensus mechanism. Serving as a bridge between Neo N3 and the widely used EVM network, Neo X will play a crucial role in expanding the Neo ecosystem and offering developers more opportunities for innovation.",
555+
cta: {
556+
backgroundImageUrl: NeoXCTA.src,
557+
title: "Learn more about Neo X",
558+
buttonLink: "https://x.neo.org/",
559+
buttonText: "Learn More",
560+
},
561+
},
562+
//NEO X Testnet
563+
12227332: {
564+
headerImgUrl: NeoXBanner.src,
565+
about:
566+
"Neo X is an EVM-compatible sidechain built by Neo, incorporating Neo's distinctive dBFT consensus mechanism. Serving as a bridge between Neo N3 and the widely used EVM network, Neo X will play a crucial role in expanding the Neo ecosystem and offering developers more opportunities for innovation.",
567+
cta: {
568+
backgroundImageUrl: NeoXCTA.src,
569+
title: "Learn more about Neo X",
570+
buttonLink: "https://x.neo.org/",
571+
buttonText: "Learn More",
572+
},
573+
},
548574
//0G-Newton-Testnet
549575
16600: {
550576
headerImgUrl: zeroGBanner.src,

0 commit comments

Comments
 (0)