Proposal Max Operations
The maximum number of actions that can be included in a proposal. Actions are functions calls that will be made when a proposal succeeds and executes.
function proposalMaxOperations() returns (uint)
- RETURN: The maximum number of actions that can be included in a proposal.
GovernorAlpha gov = GovernorAlpha(0x123...); // contract address
uint operations = gov.proposalMaxOperations();
const operations = await gov.methods.proposalMaxOperations().call();
Last modified 2yr ago