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