FredFromTheIsland

Untitled

Apr 15th, 2021 (edited)
1,430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.44 KB | None | 0 0
  1. Typical metadata - you can add other elements.
  2.  
  3. {"721":{
  4. "##policyID##": {
  5. "##ticker##": {
  6. "name": "##tokenName##",
  7. "image": "ipfs://<replace this with your Qid hash>",
  8. "nsfw": "False",
  9. "type": "image/jpg",
  10. "copyright": "Consider removing this line if it does not apply",
  11. "version": "1",
  12. "collection": "You put your collection name",
  13. "url": "https://www.metromermaids.com/",
  14. "twitter": "https://twitter.com/_mermada"
  15. }
  16. }
  17. }
  18. }
  19.  
  20.  
  21.  
  22. Here is an example with a video file with a cover image:
  23. {
  24. "721": {
  25. "##policyID##": {
  26. "##ticker##": {
  27. "name": "##tokenName##",
  28. "image": "ipfs://<thumbnail IPFS hash>",
  29. "files": [
  30. {
  31. "src": "ipfs://<mp4 hash>",
  32. "mediaType": "video/mp4",
  33. "name": "Video File Name"
  34. }
  35. ]
  36. }
  37. }
  38. }
  39. }
  40.  
  41.  
  42.  
  43. Here is an example with a video file WITHOUT a cover image - don't do this...:
  44. {
  45. "721": {
  46. "##policyID##": {
  47. "##ticker##": {
  48. "name": "##tokenName##",
  49. "files": [
  50. {
  51. "src": "ipfs://<hash>",
  52. "mediaType": "video/mp4",
  53. "name": "Video File Name"
  54. }
  55. ]
  56. }
  57. }
  58. }
  59. }
  60.  
  61.  
  62.  
  63.  
  64.  
  65. Here are a couple of mediaTypes to show you how they might be used.
  66. {
  67. "721": {
  68. "##policyID##": {
  69. "##ticker##": {
  70. "name": "##tokenName##",
  71. "files": [
  72. {
  73. "src": "ipfs://<hash>",
  74. "mediaType": "image/png",
  75. "mediaType": "image/jpeg",
  76. "mediaType": "image/gif",
  77. "name": "Pick an image type above, give this img a name in place of this line."
  78. }
  79. ]
  80. }
  81. }
  82. }
  83. }
  84.  
  85. Here is an example with an image and a video both visible.
  86. https://pastebin.com/5iqJ7tHZ
  87.  
  88.  
  89.  
  90. ## Do not copy below this line ##
  91. ## Please read this entire guide ##
  92.  
  93. ## Try using type: of image/jpg or image/gif
  94. ## like for example:
  95. ## "type": "image/jpg",
  96. ## "type": "image/gif",
  97.  
  98. ## nfsw - please respect our community and set this to "True" if this
  99. ## content is not safe for all ages.
  100.  
  101. ## Are you trying to make a series of NFT like "My NFT [01]" through
  102. ## "My NFT [50]" or some large set like this? Skip to the bottom for
  103. ## more information about that process. If you want to mint a large
  104. ## set of NFT under the same policy ID you should also skip to the end.
  105.  
  106. ## If you are here to mint a NFT or FT (token) read the info below.
  107.  
  108. ## First thing make sure your image tag above looks exactly like this:
  109. ## "image": "ipfs://QmXTeBCESNhphdCHvWyBugiAcZFxA6ZP7WYwxMu4QuNxzj",
  110. ## I used a random example above just to show what it should look like.
  111. ## Let's call the left side the "item" and the right side the "value"
  112. ## an example:
  113. ## "description": "A very long description"
  114. ## A value can not be longer than 64 characters long. If you have a long value you need
  115. ## break it into "an array". The format for this looks different.
  116. ## Example Array so you can have a long description. UPDATE: as of April 16th we tested
  117. ## the example with the long description as shown below and it is not currently showing
  118. ## up on the pool.pm page that we all use to view our NFT. It should be a quick fix
  119. ## for the page to accommodate showing descriptions from an array or value but it's up
  120. ## to them in the end what and how they display. For now, you can use the following
  121. ## format but it may not yet be displayed on the available tools.
  122.  
  123. "description": [
  124. "A very long description can be ",
  125. "placed within a bunch of little ",
  126. "groups like this. As long as each group ",
  127. "has a comma between and the last one does not!"
  128. ]
  129.  
  130.  
  131. ## Make sure than EVERY line ends with a , EXCEPT FOR THE LAST LINE! look above closely.
  132. ## If you wanted to use that example of Description with the multiple lines, you need to
  133. ## place a , after the ] or place the description as the last item in the group of items.
  134. ## Reach out to use using our Twitter or Telegram channels for quick support we can help
  135. ## you build out the proper metadata. There are also standards being discussed on this page:
  136. https://forum.cardano.org/t/cip-nft-metadata-standard/45687
  137. and
  138. https://www.reddit.com/r/CardanoDevelopers/comments/mkhlv8/nft_metadata_standard/
  139.  
  140.  
  141. Contact us on Twitter:
  142. https://twitter.com/_mermada
  143.  
  144. Telegram channel:
  145. https://t.me/MetroMermaids
  146.  
  147.  
  148. ###############################################################################
  149. ## LARGE MINT JOBS / MINT MANY UNDER THE SAME POLICY / SPECIAL REQUEST, ETC. ##
  150. ###############################################################################
  151. We can help you mint a large set under the same policy and help to fulfill any
  152. special requests regarding series or sets with special numbers, ie: [01] - [99].
  153. Contact us using the channels above to get started, we can explain in more detail
  154. what is needed. If you would like some example of metadata for a large mint set
  155. take a look here:
  156.  
  157. An example where we add so many social media links that we have to mint in sets of 25.
  158. The limitation of the large mint sets is that the metadata file must be less than 16kb.
  159. https://pastebin.com/Qz2qcReN
  160.  
  161. Here is an example of a metadata file with the least amount of information, name and image.
  162. https://pastebin.com/zFcAUarw
  163.  
  164. To be clear, the examples of large mint jobs in the two links above are for working with us
  165. directly and they will not currently work with this version of our mint tool.
Add Comment
Please, Sign In to add comment