Cast Vote By Signature
function castVoteBySig(uint proposalId, bool support, uint8 v, bytes32 r, bytes32 s)GovernorAlpha gov = GovernorAlpha(0x123...); // contract address
gov.castVoteBySig(proposalId, true, v, r, s);const tx = await gov.methods.castVoteBySig(proposalId, false, v, r, s).send({});Last updated