import { sendTransaction } from "thirdweb";
import { RoyaltyERC721 } from "thirdweb/modules";
const transaction = RoyaltyERC721.setDefaultRoyaltyInfo({
contract,
royaltyRecipient: ...,
royaltyBps: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });