# ZivoeToken.sol

## Introduction

This ERC20 contract represents the Zivoe ($ZVE) token.

This contract should support the following functionalities:

* Burnable.
* Fixed supply of 25,000,000 $ZVE.
* Facilitates voting by inheriting the ERC20Votes module.

**This contract was adopted from the OpenZeppelin ERC20 Library.**

For further documentation: <https://docs.openzeppelin.com/contracts/4.x/api/token/erc20#ERC20Votes>

## **Sections**

[#write-functions](#write-functions "mention")

* [#burn](#burn "mention")

## Write Functions

`burn()`

Burns $ZVE tokens.

```solidity
function burn(uint256 amount) external virtual;
```
