> 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/voting-period.md).

# Voting Period

The duration of voting on a proposal, in SEI blocks.

**Governor Bravo**

```
function votingPeriod() returns (uint)
```

* `RETURN`: The duration of voting on a proposal, in Bravo blocks.

**Solidity**

```
GovernorBravo gov = GovernorBravo(0x123...); // contract address
uint blocks = gov.votingPeriod();
```

**Web3 1.2.6**

```javascript
const blocks = await gov.methods.votingPeriod().call();
```
