diff --git a/ts/cluster1/nft_metadata.ts b/ts/cluster1/nft_metadata.ts index 27ad0f9..00f20fc 100644 --- a/ts/cluster1/nft_metadata.ts +++ b/ts/cluster1/nft_metadata.ts @@ -14,25 +14,28 @@ umi.use(signerIdentity(signer)); (async () => { try { + // Follow this JSON structure + // https://docs.metaplex.com/programs/token-metadata/changelog/v1.0#json-structure + // const image = ??? - const metadata = { - name: "?", - symbol: "?", - description: "?", - image: "?", - attributes: [ - {trait_type: '?', value: '?'} - ], - properties: { - files: [ - { - type: "image/png", - uri: "?" - }, - ] - }, - creators: [] - }; + // const metadata = { + // name: "?", + // symbol: "?", + // description: "?", + // image: "?", + // attributes: [ + // {trait_type: '?', value: '?'} + // ], + // properties: { + // files: [ + // { + // type: "image/png", + // uri: "?" + // }, + // ] + // }, + // creators: [] + // }; // const myUri = ??? // console.log("Your image URI: ", myUri); }