updateNFT
Updates the metadata of an NFT if the current user owns the NFT.
const payload = { name: "New NFT Name #001", symbol: "NEW_SYMBOL", metadataUri: "https://path-to-new-metadata-uri.json"};// Returns `ISolanaNFTMintResult`export interface ISolanaNFTMintResult { mint_address: string; url: string; update_authority: string; creator_address: string; name: string; symbol: string; collection: string; signature: string; status: string;}
Edit this page on GitHub