Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 8 additions & 6 deletions apps/dashboard/src/app/(dashboard)/(chain)/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ export const ApplyForOpCreditsForm: React.FC<ApplyForOpCreditsFormProps> = ({
"Donatuz",
"Mantle",
"Soneium",
"Lisk",
].map((chain) => ({
label: chain === "Optimism" ? "OP Mainnet" : chain,
value: chain,
Expand Down
20 changes: 13 additions & 7 deletions apps/dashboard/src/pages/grant/superchain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,26 @@ 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",
link: "/camp-network-testnet-v2?switch",
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 = () => {
Expand Down
Loading