-
Hello guys, I have encountered problem and I have no clue how to fix it. If I'm running My const metadataTemplate = {
name: "",
description: "",
image: "",
hauka: "miau",
attributes: [
{
trait_type: "Cutie",
value: 666,
},
{
trait_type: "Hauker",
value: 777,
},
],
date: new Date(),
} As you can see there are missing |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@Neftyr Read this Opensea Metadata standards link |
Beta Was this translation helpful? Give feedback.
-
Thank you for tip! I have figured out that there was simple mistake in my |
Beta Was this translation helpful? Give feedback.
Hi @alymurtazamemon
Thank you for tip! I have figured out that there was simple mistake in my
metadataTemplate
as I just did not addmodule.exports = { metadataTemplate }
at the end of code, so my import was providing just basic NFT metadata edited inhandleTokenUris
function and nothing else as import wasnt importing anything beside empty const...