import { sendTransaction } from "thirdweb";
import { setVotingPeriod } from "thirdweb/extensions/vote";
const transaction = setVotingPeriod({
contract,
newVotingPeriod: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });