Skip to content

Commit

Permalink
update epoch3
Browse files Browse the repository at this point in the history
  • Loading branch information
zkLeonardo committed Aug 29, 2024
1 parent fac5263 commit 9c950fc
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 29 deletions.
2 changes: 1 addition & 1 deletion src/components/DashboardS2/Tabs/EcoDApps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ export default function EcoDApps({
],
},
{
category: "gamefi",
category: "other",
iconURL: "/img/icon-skyrangers.png",
name: "Sky Rangers",
link: "https://statics.skyrangers.io/",
Expand Down
30 changes: 15 additions & 15 deletions src/components/DashboardS2/Tabs/SectorHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ export default function SectorHeader({
holding: [
{
tvl: 0,
zkl: 500000,
zkl: 100000,
},
{
tvl: 200000000,
zkl: 1000000,
zkl: 200000,
},
{
tvl: 500000000,
zkl: 2000000,
zkl: 500000,
},
{
tvl: 1000000000,
zkl: 3000000,
zkl: 1000000,
},
],
spotdex: [
Expand All @@ -71,15 +71,15 @@ export default function SectorHeader({
},
{
tvl: 5000000,
zkl: 500000,
zkl: 200000,
},
{
tvl: 25000000,
zkl: 1000000,
zkl: 500000,
},
{
tvl: 50000000,
zkl: 1500000,
zkl: 1000000,
},
],
perpdex: [
Expand All @@ -89,15 +89,15 @@ export default function SectorHeader({
},
{
tvl: 100000000,
zkl: 500000,
zkl: 200000,
},
{
tvl: 500000000,
zkl: 1000000,
zkl: 500000,
},
{
tvl: 2000000000,
zkl: 2000000,
zkl: 1000000,
},
],
lending: [
Expand All @@ -107,15 +107,15 @@ export default function SectorHeader({
},
{
tvl: 10000000,
zkl: 350000,
zkl: 200000,
},
{
tvl: 50000000,
zkl: 700000,
zkl: 500000,
},
{
tvl: 200000000,
zkl: 1500000,
zkl: 1000000,
},
],
};
Expand All @@ -128,15 +128,15 @@ export default function SectorHeader({
} = {
gamefi: {
zkl: 10000,
max: 1000000,
max: 500000,
},
other: {
zkl: 50000,
max: 500000,
},
nativeboost: {
zkl: 50000,
max: 500000,
max: 5000000,
},
};

Expand Down
1 change: 1 addition & 0 deletions src/constants/epoch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export const epochList = [
season: 2,
},
{ name: "Epoch Two", season: 3 },
{ name: "Epoch Three", season: 4 },
];
23 changes: 13 additions & 10 deletions src/pages/DashboardS2/index2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,11 +306,11 @@ export default function Dashboard() {
name: "Lending",
category: "lending",
},
{
iconURL: "/img/icon-sector-6.svg",
name: "GameFi",
category: "gamefi",
},
// {
// iconURL: "/img/icon-sector-6.svg",
// name: "GameFi",
// category: "gamefi",
// },
{
iconURL: "/img/icon-sector-7.svg",
name: "Others",
Expand Down Expand Up @@ -478,10 +478,10 @@ export default function Dashboard() {
name: "Lending Points",
category: "lending",
},
{
name: "GameFi Points",
category: "gamefi",
},
// {
// name: "GameFi Points",
// category: "gamefi",
// },
{
name: "Others Points",
category: "other",
Expand Down Expand Up @@ -633,9 +633,12 @@ export default function Dashboard() {
<div className="mt-[12px] before">
Epoch One (From May 30th to July 15th)
</div>
<div className="mt-[12px] before text-[#fff]">
<div className="mt-[12px] before">
Epoch Two (From July 16th to Aug 31st)
</div>
<div className="mt-[12px] before text-[#fff]">
Epoch Three (From Step 1)
</div>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/Leaderboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ export default function Leaderboard() {
iconURL: "/img/icon-sector-4.svg",
},
{ name: "Lending", category: "lending", iconURL: "/img/icon-sector-5.svg" },
{ name: "GameFi", category: "gamefi" },
// { name: "GameFi", category: "gamefi" },
{ name: "Other", category: "other", iconURL: "/img/icon-sector-7.svg" },
];

Expand Down
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export default defineConfig({
port: 3001,
proxy: {
"/app-api": {
target: "https://goerli.app.zklink.io",
// target: "https://app-api.zklink.io",
// target: "https://goerli.app.zklink.io",
target: "https://app-api.zklink.io",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/app-api/, ""),
},
Expand Down

0 comments on commit 9c950fc

Please sign in to comment.