import { sendTransaction } from "thirdweb";
import { setTokenURI } from "thirdweb/extensions/erc721";
 
const transaction = setTokenURI({
 contract,
 tokenId: ...,
 uri: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });