diff --git a/README.md b/README.md index eafa433..3e8e1fd 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 🇸 Storybook: [sitting-cats-nft-storybook.vercel.app](https://sitting-cats-nft-storybook.vercel.app/) -The **Sitting CatsNFT** represents a small personal project aimed at showcasing the process of NFT minting on the Polygon Mumbai test network. +The **Sitting CatsNFT** represents a small personal project aimed at showcasing the process of NFT minting on the Polygon Amoy test network. ![project preview](./readme/web-preview.png) diff --git a/app/layout.tsx b/app/layout.tsx index fd8c143..3f1c006 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -15,7 +15,7 @@ const yellowtail = Yellowtail({ export const metadata: Metadata = { title: 'Sitting Cats NFT', - description: 'Demonstrating NFT minting on the Polygon Mumbai test network', + description: 'Demonstrating NFT minting on the Polygon Amoy test network', } export default function RootLayout({ @@ -30,7 +30,7 @@ export default function RootLayout({ Sitting Cats NFT {/* */} @@ -48,7 +48,7 @@ export default function RootLayout({ /> { /> {currentData?.id ? ( { const res = await axios.get( - `https://${'polygon-mumbai'}.g.alchemy.com/nft/v2/${ - process.env.NEXT_PUBLIC_ALCHEMY - }/getNFTs`, + `https://${'polygon-amoy'}.g.alchemy.com/nft/v2/${process.env.NEXT_PUBLIC_ALCHEMY}/getNFTs`, { params: { owner: address, @@ -18,9 +16,7 @@ export const getNFTs = async (address: string | undefined) => { export const getNFTMetadata = async (tokenId?: number | undefined) => { if (tokenId) { const res = await axios.get( - `https://${'polygon-mumbai'}.g.alchemy.com/nft/v2/${ - process.env.NEXT_PUBLIC_ALCHEMY - }/getNFTMetadata`, + `https://${'polygon-amoy'}.g.alchemy.com/nft/v2/${process.env.NEXT_PUBLIC_ALCHEMY}/getNFTMetadata`, { params: { tokenId: tokenId,