diff --git a/src/components/DashboardS2/Tabs/Protfolio.tsx b/src/components/DashboardS2/Tabs/Protfolio.tsx index c547b2a..5664d9a 100644 --- a/src/components/DashboardS2/Tabs/Protfolio.tsx +++ b/src/components/DashboardS2/Tabs/Protfolio.tsx @@ -477,29 +477,6 @@ export default function Portfolio({
Your Nova Points - -

- Loyalty Booster -

-

- An extra boost for Loyalty users,tied with days in the - Aggregation parade (capped at 50%): -
-
- Loyalty Booster = min(50%, 0.5%*days joined) -

-
- } - > - - +{royaltyBoosterPencentage} - -
@@ -541,28 +518,24 @@ export default function Portfolio({ }} content={
- {epochActive !== epochList.length - 1 && ( -
- <> -
- Sector in {epochList[epochActive].name} -
- -
- +
+
+ Sector in {epochList[epochActive].name}
- )} + +
+
Your Sector Points in {epochList[epochActive].name} @@ -622,71 +595,7 @@ export default function Portfolio({
-
- Your Project Points -
- {`Hide Points < 0.1`} - -
-
-
- -
- {projectPointsList.map((item, index) => ( -
-
- {item?.iconURL && ( - - )} -
-
- {item?.eigenlayerName} -
-
-
-
- -
- {item.pointsName} - - {formatNumberWithUnit(item?.pointsValue)} - -
-
- -
- - {item.eigenlayerName} Eigenlayer Points - - - {formatNumberWithUnit(item?.eigenlayerValue)} - -
-
- - - Participate - - -
- ))} -
-
-
-
+
Your Nova NFTs
diff --git a/src/constants/epoch.ts b/src/constants/epoch.ts index 6a99608..4ac654c 100644 --- a/src/constants/epoch.ts +++ b/src/constants/epoch.ts @@ -12,6 +12,6 @@ export const epochList = [ { name: "Epoch Three", season: 4, - time: "Snapshot taken on December 13, 2024, at 12:00 PM UTC", + time: "Snapshot taken on December 13, 2024, at 10 AM UTC", }, ]; diff --git a/src/pages/DashboardS2/index-end.tsx b/src/pages/DashboardS2/index-end.tsx index 287874f..3cd5612 100644 --- a/src/pages/DashboardS2/index-end.tsx +++ b/src/pages/DashboardS2/index-end.tsx @@ -217,7 +217,48 @@ export default function Dashboard() { epochActive === 1 ? await getTvlCategoryMilestoneBySeason({ season: 2 }) : await getCategoryZKL(); - setCategoryZKLs(data || []); + if (epochActive === 2) { + setCategoryZKLs([ + { + name: "holding", + data: "", + type: "", + zkl: 100000, + }, + { + name: "spotdex", + data: "", + type: "", + zkl: 100000, + }, + { + name: "perpdex", + data: "", + type: "", + zkl: 100000, + }, + { + name: "lending", + data: "", + type: "", + zkl: 200000, + }, + { + name: "nativeboost", + data: "", + type: "", + zkl: 50000, + }, + { + name: "other", + data: "", + type: "", + zkl: 50000, + }, + ]); + } else { + setCategoryZKLs(data || []); + } }; const novaPointsList = useMemo(() => {