> 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/get-current-votes.md).

# Get Current Votes

Gets the balance of votes for an account as of the current block.

**BUL**

```
function getCurrentVotes(address account) returns (uint96)
```

* `account`: Address of the account in which to retrieve the number of votes.
* `RETURN`: The number of votes (integer).

**Solidity**

```
BUL bul = BUL(0x123...); // contract address
uint votes = bul.getCurrentVotes(0xabc...);
```

**Web3 1.2.6**

```javascript
const account = '0x123...'; // contract address
const votes = await bul.methods.getCurrentVotes(account).call();
```
