diff --git a/apps/arkmarket/public/collections/eternum-season-pass.png b/apps/arkmarket/public/collections/eternum-season-pass.png new file mode 100644 index 00000000..e14ab547 Binary files /dev/null and b/apps/arkmarket/public/collections/eternum-season-pass.png differ diff --git a/apps/arkmarket/src/config/homepage.ts b/apps/arkmarket/src/config/homepage.ts index fd18e9de..0d53e1e0 100644 --- a/apps/arkmarket/src/config/homepage.ts +++ b/apps/arkmarket/src/config/homepage.ts @@ -9,6 +9,7 @@ export enum Collections { DUNGEON_DUCKS = "dungeonducks", KARAT = "karat", JOKERSOFNEON = "jokersofneon", + ETERNUMSEASONPASS = "eternumseasonpass", } export enum ChainId { @@ -87,6 +88,11 @@ export const CollectionAddresses: { "0x07268fcf96383f8691b91ba758cc8fefe0844146f0557909345b841fb1de042f", [ChainId.SN_SEPOLIA]: "", }, + [Collections.ETERNUMSEASONPASS]: { + [ChainId.SN_MAIN]: + "0x057675b9c0bd62b096a2e15502a37b290fa766ead21c33eda42993e48a714b80", + [ChainId.SN_SEPOLIA]: "", + }, }; export const CollectionNames = { @@ -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 { @@ -168,6 +175,12 @@ export const CollectionDescription: Record = { 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 = { @@ -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", @@ -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],