Pool pm does not show my NFT

hey guys, I ventured my own NFT today and tried to create one of my own. something must be wrong with the metadata. Maybe you can help me.


Code after mint:

{
  "bf0177aa5e1e3d241262dc7e7fcfa240849ab8ae788c9fc9004ddd22": {
    "Dog #1980": {
      "Background": "White",
      "Nose": "Black",
      "Number": "1980",
      "files": [
        {
          "mediaType": "image/jpeg",
          "name": "Dog #1980",
          "src": "ipfs://QmcQvGitMA6nEK6LVNC87crMFNRe4hAy9zk7m8XBzwqVoX"
        }
      ],
      "image": "ipfs://QmcQvGitMA6nEK6LVNC87crMFNRe4hAy9zk7m8XBzwqVoX",
      "mediaType": "image/jpeg",
      "name": "Dog #1980",
      "project": "Dogout"
    }
  },
  "version": "1.0"
}


Code before mint: {
  "721": {
    "bf0177aa5e1e3d241262dc7e7fcfa240849ab8ae788c9fc9004ddd22": {
      "Dog #1980": {
        "name": "Dog #1980",
        "image": "ipfs://QmcQvGitMA6nEK6LVNC87crMFNRe4hAy9zk7m8XBzwqVoX",
        "mediaType": "image/jpeg",
        "Background": "White",
        "Nose": "Black",
        "project": "Dogout",
        "Number": "1980",
        "files": [
          {
            "name": "Dog #1980",
            "mediaType": "image/jpeg",
            "src": "ipfs://QmcQvGitMA6nEK6LVNC87crMFNRe4hAy9zk7m8XBzwqVoX"
          }
        ]
      }
    },
    "version": "1.0"
  }
}

The problem seems to be that your mint transaction for Dog1 contains metadata for Dog #1980, while the mint transaction for Dog2 contains metadata for Dog1:
https://cardanoscan.io/transaction/152d02f4d9ac8c37075de99b653a63cc37ad9b627a145f52d4fccafa72ebed27?tab=metadata
https://cardanoscan.io/transaction/6873aae61c6aed612b9b166772c6a7020a440935ae30c9f311f3ca5cba612c88?tab=metadata

The key used in that last line has to mach the asset name exactly. (…, where on the cardano-cli command line it is hex-encoded and in the metadata.json it is plain text.)

Did you manage to fix this?

everything is working now, thank you for your efforts. a nice week.

1 Like