Execute
function execute(uint proposalId) payable returns (uint)GovernorBravo gov = GovernorBravo(0x123...); // contract address
gov.execute(proposalId).value(999).gas(999)();const tx = gov.methods.execute(proposalId).send({ from: sender, value: 1 });Last updated