import { sendTransaction } from "thirdweb";
import { propose } from "thirdweb/extensions/vote";
 
const transaction = propose({
 contract,
 targets: ...,
 values: ...,
 calldatas: ...,
 description: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });