Skip to content

Commit

Permalink
feat: add eternum season pass collection
Browse files Browse the repository at this point in the history
  • Loading branch information
MartianGreed committed Dec 3, 2024
1 parent 56b08f5 commit 1811e83
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions apps/arkmarket/src/config/homepage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export enum Collections {
DUNGEON_DUCKS = "dungeonducks",
KARAT = "karat",
JOKERSOFNEON = "jokersofneon",
ETERNUMSEASONPASS = "eternumseasonpass",
}

export enum ChainId {
Expand Down Expand Up @@ -87,6 +88,11 @@ export const CollectionAddresses: {
"0x07268fcf96383f8691b91ba758cc8fefe0844146f0557909345b841fb1de042f",
[ChainId.SN_SEPOLIA]: "",
},
[Collections.ETERNUMSEASONPASS]: {
[ChainId.SN_MAIN]:
"0x057675b9c0bd62b096a2e15502a37b290fa766ead21c33eda42993e48a714b80",
[ChainId.SN_SEPOLIA]: "",
},
};

export const CollectionNames = {
Expand All @@ -100,6 +106,7 @@ export const CollectionNames = {
[Collections.DUNGEON_DUCKS]: "Dungeon Ducks",
[Collections.KARAT]: "Karat",
[Collections.JOKERSOFNEON]: "Jokers of Neon x Loot Survivor: Beasts",
[Collections.ETERNUMSEASONPASS]: "Eternum Season Pass",
};

interface CollectionDescription {
Expand Down Expand Up @@ -168,6 +175,12 @@ export const CollectionDescription: Record<string, CollectionDescription> = {
description:
"Jokers of Neon mod exclusive collection",
},
// @ts-expect-error It's ok compiler
[CollectionAddresses[Collections.ETERNUMSEASONPASS][ChainId.SN_MAIN]]: {
created: "2024",
description:
"Eternum Season Pass",
},
};

export const homepageConfig = {
Expand Down Expand Up @@ -208,6 +221,15 @@ export const homepageConfig = {
itemsCount: 1600,
// floorPrice: 0.12,
},
{
bannerSrc: "/banners/realms.png",
collectionSrc: "/collections/eternum-season-pass.png",
name: CollectionNames[Collections.ETERNUMSEASONPASS],
description: "Eternum Season Pass",
address: CollectionAddresses[Collections.ETERNUMSEASONPASS][ChainId.SN_MAIN],
itemsCount: 0,
// floorPrice: 0.12,
},
{
bannerSrc: "/banners/dungeon-ducks-banner.png",
collectionSrc: "/collections/dungeon-ducks-collection.png",
Expand Down Expand Up @@ -267,6 +289,12 @@ export const homepageConfig = {
image: "/collections/realms.png",
banner_image: "/banners/realms.png",
},
{
name: CollectionNames[Collections.ETERNUMSEASONPASS],
address: CollectionAddresses[Collections.ETERNUMSEASONPASS][ChainId.SN_MAIN],
image: "/collections/eternum-season-pass.png",
banner_image: "/banners/realms.png",
},
{
name: CollectionNames[Collections.BLOBERT],
address: CollectionAddresses[Collections.BLOBERT][ChainId.SN_MAIN],
Expand Down

0 comments on commit 1811e83

Please sign in to comment.