Cast Vote With Reason
function castVoteWithReason(uint proposalId, uint8 support, string calldata reason)GovernorBravo gov = GovernorBravo(0x123...); // contract address
gov.castVoteWithReason(proposalId, 2, "I think...");const tx = gov.methods.castVoteWithReason(proposalId, 2, "I think ...").send({ from: sender });;Last updated