Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: NF-Podcast #463

Merged
merged 9 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/appsConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 301 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 324 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 326 },

{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 357 },
...Array.from({ length: 4 }, (_, i) => ({ tokenIdentifier: "OASMUSICPL-47b186", nonce: i })),
...Array.from({ length: 19 }, (_, i) => ({ tokenIdentifier: "FOOWLDMSC-5ee8ec", nonce: i })),
]
Expand All @@ -59,6 +59,10 @@ export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET
...Array.from({ length: 91 }, (_, i) => ({ tokenIdentifier: "DFEE-72425b", nonce: i })),
];

export const NF_PODCAST_TOKENS: app_token[] = IS_DEVNET
? [{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 357 }]
: [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 12 }];

export const PLAYSTATION_GAMER_PASSPORT_TOKENS: app_token[] = [{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 24 }];

export const TIMECAPSULE_TOKENS: app_token[] = IS_DEVNET
Expand All @@ -84,6 +88,7 @@ export const SPREADSHEET_NFTS_TOKENS: app_token[] = IS_DEVNET
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 352 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 353 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 354 },
{ tokenIdentifier: "DATANFTFT-e0b917", nonce: 355 },
]
: [];

Expand All @@ -102,6 +107,7 @@ export const SUPPORTED_APPS = IS_DEVNET
"getbitz",
"bobergameroom",
"spreadsheetnfts",
"nfpodcast",
]
: [
"itheumtrailblazer",
Expand All @@ -113,4 +119,5 @@ export const SUPPORTED_APPS = IS_DEVNET
"getbitz",
"bobergameroom",
"spreadsheetnfts",
"nfpodcast",
];
Binary file added src/assets/img/nf-podcast/NF-Podcast1.png
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 src/assets/img/nf-podcast/NF-Podcast2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions src/libs/utils/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import iconInfrographics from "assets/img/expl-app-infographics-icon.png";
import iconTrailblazer from "assets/img/expl-app-trailblazer-icon.png";
import iconGetBitz from "assets/img/getbitz/expl-app-getbitz-icon.gif";
import iconNFTunes from "assets/img/nf-tunes-logo.png";
import iconTimeCapsule from "assets/img/timecapsule/expl-app-timecapsule-icon.png";
import iconNFPodcast from "assets/img/nf-podcast/NF-Podcast1.png";
import iconSpreadsheetNfts from "assets/img/spreadsheet-nfts/header.png";
import iconTimeCapsule from "assets/img/timecapsule/expl-app-timecapsule-icon.png";
export const ERROR_CONNECT_WALLET = "Connect your wallet";
export const ERROR_TRANSACTION_ONGOING = "A transaction is ongoing";
export const ERROR_DATA_LOADING = "Data is still loading";
Expand Down Expand Up @@ -82,14 +83,20 @@ export const APP_MAPPINGS = [
desc: "Capture, archive, and relive historic social media events through photos and videos, preserving memories for future generations. Join the nostalgia journey!",
img: iconTimeCapsule,
},

{
appName: "Spreadsheet NFTs",
appDescription: "Explore Data NFTs that have entire datasets inside of them",
routeKey: "spreadsheetnfts",
desc: "Explore Data NFTs that have entire datasets inside of them",
img: iconSpreadsheetNfts,
},
{
appName: "NF-Podcast",
appDescription: "Listen to Podcasts",
routeKey: "nfpodcast",
desc: "Explore the world of podcasts through Data NFTs. Listen to podcasts and explore the world of Data NFTs through this app.",
img: iconNFPodcast,
},
];

export const ITHEUM_EXPLORER_PROD_URL = "https://explorer.itheum.io";
Expand Down
Loading