Skip to content

Commit c186f63

Browse files
committed
Superchain Grant Updates (#5633)
## Problem solved - Adding Lisk Mainnet to the available grants - Adding Arena -Z to the coming soon List ![image](https://github.com/user-attachments/assets/22d67963-0bdb-4737-9bbb-36ac591cc3a8) ## Linear ticket DASH-544 <!-- start pr-codex --> --- ## PR-Codex overview This PR introduces `Lisk` as a new entry in the onboarding process and modifies the `cta` structure in the `utils.ts` file. It also adds an `ArenaZ` entry to the `superchains` array while removing a previous `Lisk` entry. ### Detailed summary - Added `Lisk` to the chain mapping in `ApplyForOpCreditsForm.tsx`. - Commented out the previous `cta` structure in `utils.ts` and replaced it with `OP_CTA`. - Set `gasSponsored` to `true` in `utils.ts`. - Added `ArenaZ` to the `superchains` array in `superchain.tsx`. - Removed the previous `Lisk` entry from the `superchains` array in `superchain.tsx`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 0f4dfd1 commit c186f63

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed
2.26 KB
Loading

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -391,12 +391,14 @@ const chainMetaRecord = {
391391
headerImgUrl: liskBanner.src,
392392
about:
393393
"Lisk is focused on serving builders in high-growth markets like Africa and Southeast Asia. When you build on Lisk, you become part of the strongest Ethereum collective, alongside Coinbase, Sony, World, Kraken and Uniswap -- the OP Superchain.",
394-
cta: {
395-
backgroundImageUrl: liskCTA.src,
396-
title: "Ready to reshape the world?",
397-
buttonLink: "https://lisk.com",
398-
buttonText: "Learn more",
399-
},
394+
// cta: {
395+
// backgroundImageUrl: liskCTA.src,
396+
// title: "Ready to reshape the world?",
397+
// buttonLink: "https://lisk.com",
398+
// buttonText: "Learn more",
399+
// },
400+
cta: OP_CTA,
401+
gasSponsored: true,
400402
},
401403
//0G-Newton-Testnet
402404
16600: {

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

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

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

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,26 @@ const superchains = [
9393
link: "/soneium-minato?switch",
9494
src: require("../../../public/assets/grant/superchain/soneium-icon.png"),
9595
},
96+
{
97+
id: "lisk",
98+
name: "Lisk",
99+
link: "/lisk",
100+
src: require("../../../public/assets/grant/superchain/icon-lisk.png"),
101+
},
102+
{
103+
id: "Arena-Z",
104+
name: "ArenaZ",
105+
link: "/arena-z-testnet",
106+
src: require("../../../public/assets/grant/superchain/icon-arena-z.png"),
107+
isComingSoon: true,
108+
},
96109
{
97110
id: "campNetworkv2",
98111
name: "CampNetworkV2",
99112
link: "/camp-network-testnet-v2?switch",
100113
src: require("../../../public/assets/grant/superchain/campNetwork-icon.jpg"),
101114
isComingSoon: true,
102115
},
103-
{
104-
id: "lisk",
105-
name: "Lisk",
106-
link: "/lisk-sepolia-testnet",
107-
src: require("../../../public/assets/grant/superchain/icon-lisk.png"),
108-
isComingSoon: true,
109-
},
110116
];
111117

112118
const GrantSuperChain = () => {

0 commit comments

Comments
 (0)