Skip to content

Commit

Permalink
Merge pull request #356 from zkLinkProtocol/feat/add-sumermoney-desyn
Browse files Browse the repository at this point in the history
add sumermoney  & desyn
  • Loading branch information
MickWang authored Aug 22, 2024
2 parents 2de6d26 + 6e5db14 commit 17d0da5
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 1 deletion.
Binary file added public/img/icon-desyn.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/icon-sumermoney.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 63 additions & 1 deletion src/components/DashboardS2/Tabs/EcoDApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,13 @@ const EcoDApp = (props: {
height={16}
/>
</div>
<div className="name mt-[5px]">{data.handler}</div>
<a
href={`https://x.com/${data.handler}`}
target="_blank"
className="name mt-[5px]"
>
{data.handler}
</a>
</div>
</div>
<div
Expand Down Expand Up @@ -1257,6 +1263,62 @@ export default function EcoDApps({
},
],
},
{
category: "lending",
iconURL: "/img/icon-sumermoney.jpg",
name: "Sumer.money",
link: "https://app.sumer.money/",
handler: "@SumerMoney",
type: "DEX",
rewardsIcon: [
{ name: "Nova Points", iconURL: "/img/icon-rewards-nova.svg" },
],
rewards: "Lending",
holdingPoints: getHoldingPointsByProject("sumer"),
totalPoints: getTotalPointsByProject("sumer"),
remainSpinNum: getSpinByProject("sumer").remainSpinNum,
projectName: "sumer",
details: [
{
booster: (
<div>
<p>20x for ETH/wETH, merged wBTC, USDT, USDC and ZKL</p>
<p>4x for wBTC, mBTC, pufETH.eth, STONE.manta, MANTA.manta</p>
</div>
),
description: `Cross-chain synthetic assets protocol with a unified lending & borrowing market`,
action: "Use Protocol",
},
],
},
{
category: "other",
iconURL: "/img/icon-desyn.jpg",
name: "Desyn",
link: "https://app.sumer.money/",
handler: "@DesynLab",
type: "DEX",
rewardsIcon: [
{ name: "Nova Points", iconURL: "/img/icon-rewards-nova.svg" },
],
rewards: "Farming",
holdingPoints: getHoldingPointsByProject("desyn"),
totalPoints: getTotalPointsByProject("desyn"),
remainSpinNum: getSpinByProject("desyn").remainSpinNum,
projectName: "desyn",
details: [
{
booster: (
<div>
<p>10x for ETH/wETH, merged wBTC, USDT, USDC, DAI and ZKL</p>
<p>2x for nETH</p>
</div>
),
description: `A decentralized platform that enables users to create, manage, and invest in customizable, on-chain asset portfolios.`,
action: "Use Protocol",
},
],
},
];

return tabActive
Expand Down

0 comments on commit 17d0da5

Please sign in to comment.