diff --git a/package-lock.json b/package-lock.json index 93e1a9e1..e72f0255 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "explorer-dapp", - "version": "1.11.1", + "version": "1.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "explorer-dapp", - "version": "1.11.1", + "version": "1.12.0", "license": "GPL-3.0-or-later", "dependencies": { "@fortawesome/fontawesome-svg-core": "6.5.1", diff --git a/package.json b/package.json index 5a273c30..7f0c6e41 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "explorer-dapp", "description": "Itheum Explorer is a DApp for the public to explore and visualize data within the Itheum protocol", - "version": "1.11.2", + "version": "1.12.0", "author": "Itheum", "license": "GPL-3.0-or-later", "dependencies": { diff --git a/src/appsConfig.tsx b/src/appsConfig.tsx index d98124c9..ee8eb918 100644 --- a/src/appsConfig.tsx +++ b/src/appsConfig.tsx @@ -32,6 +32,7 @@ export const MULTIVERSX_INFOGRAPHICS_TOKENS: app_token[] = IS_DEVNET export const FEATURED_NF_TUNES_TOKEN: app_token = IS_DEVNET ? { tokenIdentifier: "DATANFTFT-e0b917", nonce: 15 } : { tokenIdentifier: "DATANFTFT-e936d4", nonce: 4 }; + export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET ? [ { tokenIdentifier: "DATANFTFT-e0b917", nonce: 15 }, @@ -40,6 +41,7 @@ export const NF_TUNES_TOKENS: app_token[] = IS_DEVNET { tokenIdentifier: "DATANFTFT-e0b917", nonce: 34 }, { tokenIdentifier: "DATANFTFT-e0b917", nonce: 42 }, { tokenIdentifier: "DATANFTFT-e0b917", nonce: 56 }, + { tokenIdentifier: "DATANFTFT-e0b917", nonce: 48 }, // { tokenIdentifier: "DATANFTFT-e0b917", nonce: 529 }, ] : [{ tokenIdentifier: "DATANFTFT-e936d4", nonce: 4 }]; diff --git a/src/components/DataNftCard.tsx b/src/components/DataNftCard.tsx index eb213d76..47a758fb 100644 --- a/src/components/DataNftCard.tsx +++ b/src/components/DataNftCard.tsx @@ -53,10 +53,12 @@ export function DataNftCard({ "border-[0.5px] dark:border-slate-100/30 border-slate-300 bg-transparent rounded-[2.37rem] base:w-[18.5rem] md:w-[20.6rem]" )}> -
- +
+
-
Title: diff --git a/src/pages/AppMarketplace/NFTunes/index.tsx b/src/pages/AppMarketplace/NFTunes/index.tsx index 1516d972..0f334756 100644 --- a/src/pages/AppMarketplace/NFTunes/index.tsx +++ b/src/pages/AppMarketplace/NFTunes/index.tsx @@ -50,7 +50,6 @@ interface ExtendedViewDataReturnType extends ViewDataReturnType { export const NFTunes = () => { const { address } = useGetAccount(); const { theme } = useTheme(); - console.log("Theme", theme); ///native auth const { tokenLogin } = useGetLoginInfo(); const { hasPendingTransactions } = useGetPendingTransactions();