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