import { updateMetadata } from "thirdweb/extensions/erc721";
 
const transaction = updateMetadata({
  contract,
  targetTokenId: 0n,
  client: thirdwebClient,
  newMetadata: {
    name: "this is the new nft name",
    description: "...",
    image: "new image uri",
    // ...
  },
});