Update NFT Metadata in Dashboard

You can now update the metadata of ERC721 and ERC1155 NFTs directly from the dashboard!

Click on any of your NFTs and you'll find an "Update Metadata" tab where you can change the name, description, image or individual properties.

Keep in mind that you can also do this programmatically with the SDK:

const newMetadata = { description: "My new description" };

const contract = await sdk.getContract("0x...");
await contract.erc1155.updateMetadata(tokenId, newMetadata);

Let us know if you run into any issues!