> For the complete documentation index, see [llms.txt](https://docs.belugas.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.belugas.io/governance/proposal-max-operations.md).

# 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.

**Governor Bravo**

```
function proposalMaxOperations() returns (uint)
```

* `RETURN`: The maximum number of actions that can be included in a proposal.

**Solidity**

```
GovernorBravo gov = GovernorBravo(0x123...); // contract address
uint operations = gov.proposalMaxOperations();
```

**Web3 1.2.6**

```javascript
const operations = await gov.methods.proposalMaxOperations().call();
```
