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