Skip to content

Commit ec84ed3

Browse files
committed
Joe arena z superchain mainnet (#5648)
## Problem solved Short description of the bug fixed or feature added Adding Arena-Z mainnet to OP Superchain grant page. Linear DASH-562 <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces updates related to the `Arena Z` network within the dashboard application, including configurations and UI adjustments. ### Detailed summary - Added configuration for `Arena Z Mainnet` with properties `cta`, and `gasSponsored`. - Included `Arena-Z` in the onboarding form's chain options. - Updated the `superchain` page with `Arena-Z` details, changing the link to `/arena-z` and setting `isComingSoon` to `false`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 87b54c9 commit ec84ed3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,11 @@ const chainMetaRecord = {
269269
buttonText: "Learn more",
270270
},
271271
},
272+
//Arena Z Mainnet
273+
7897: {
274+
cta: OP_CTA,
275+
gasSponsored: true,
276+
},
272277
// B3 Mainnet
273278
8333: {
274279
headerImgUrl: thirdwebBanner.src,

apps/dashboard/src/components/onboarding/ApplyForOpCreditsForm.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ export const ApplyForOpCreditsForm: React.FC<ApplyForOpCreditsFormProps> = ({
215215
"Mantle",
216216
"Soneium",
217217
"Lisk",
218+
"Arena-Z",
218219
].map((chain) => ({
219220
label: chain === "Optimism" ? "OP Mainnet" : chain,
220221
value: chain,

apps/dashboard/src/pages/grant/superchain.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ const superchains = [
102102
{
103103
id: "Arena-Z",
104104
name: "ArenaZ",
105-
link: "/arena-z-testnet",
105+
link: "/arena-z",
106106
src: require("../../../public/assets/grant/superchain/icon-arena-z.png"),
107-
isComingSoon: true,
107+
isComingSoon: false,
108108
},
109109
{
110110
id: "campNetworkv2",

0 commit comments

Comments
 (0)