import { sendTransaction } from "thirdweb";
import { remove } from "thirdweb/extensions/thirdweb";
 
const transaction = remove({
 contract,
 deployer: ...,
 deployment: ...,
 chainId: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });