diff --git a/apps/dashboard/public/assets/grant/superchain/icon-arena-z.png b/apps/dashboard/public/assets/grant/superchain/icon-arena-z.png new file mode 100644 index 00000000000..8ceef84d704 Binary files /dev/null and b/apps/dashboard/public/assets/grant/superchain/icon-arena-z.png differ diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts b/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts index 8c9af9d461c..e7b11cdfab2 100644 --- a/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts +++ b/apps/dashboard/src/app/(dashboard)/(chain)/utils.ts @@ -391,12 +391,14 @@ const chainMetaRecord = { headerImgUrl: liskBanner.src, about: "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.", - cta: { - backgroundImageUrl: liskCTA.src, - title: "Ready to reshape the world?", - buttonLink: "https://lisk.com", - buttonText: "Learn more", - }, + // cta: { + // backgroundImageUrl: liskCTA.src, + // title: "Ready to reshape the world?", + // buttonLink: "https://lisk.com", + // buttonText: "Learn more", + // }, + cta: OP_CTA, + gasSponsored: true, }, //0G-Newton-Testnet 16600: { diff --git a/apps/dashboard/src/components/onboarding/ApplyForOpCreditsForm.tsx b/apps/dashboard/src/components/onboarding/ApplyForOpCreditsForm.tsx index bd131b3ed10..eb8db7127a1 100644 --- a/apps/dashboard/src/components/onboarding/ApplyForOpCreditsForm.tsx +++ b/apps/dashboard/src/components/onboarding/ApplyForOpCreditsForm.tsx @@ -214,6 +214,7 @@ export const ApplyForOpCreditsForm: React.FC = ({ "Donatuz", "Mantle", "Soneium", + "Lisk", ].map((chain) => ({ label: chain === "Optimism" ? "OP Mainnet" : chain, value: chain, diff --git a/apps/dashboard/src/pages/grant/superchain.tsx b/apps/dashboard/src/pages/grant/superchain.tsx index bded5dd4c45..c99d626503a 100644 --- a/apps/dashboard/src/pages/grant/superchain.tsx +++ b/apps/dashboard/src/pages/grant/superchain.tsx @@ -93,6 +93,19 @@ const superchains = [ link: "/soneium-minato?switch", src: require("../../../public/assets/grant/superchain/soneium-icon.png"), }, + { + id: "lisk", + name: "Lisk", + link: "/lisk", + src: require("../../../public/assets/grant/superchain/icon-lisk.png"), + }, + { + id: "Arena-Z", + name: "ArenaZ", + link: "/arena-z-testnet", + src: require("../../../public/assets/grant/superchain/icon-arena-z.png"), + isComingSoon: true, + }, { id: "campNetworkv2", name: "CampNetworkV2", @@ -100,13 +113,6 @@ const superchains = [ src: require("../../../public/assets/grant/superchain/campNetwork-icon.jpg"), isComingSoon: true, }, - { - id: "lisk", - name: "Lisk", - link: "/lisk-sepolia-testnet", - src: require("../../../public/assets/grant/superchain/icon-lisk.png"), - isComingSoon: true, - }, ]; const GrantSuperChain = () => {