LogoLogo
CtrlK
User DocsDeveloper DocsHow-To Guides
  • ➡️Start Here
  • 🚧Disclaimer
  • User Docs
    • Introduction
    • Fund Overview
    • zVLT
    • Tranches
    • ZVE Token
  • How-To Guides
    • Deposit USDC
  • Developer Docs
    • Contract Addresses
    • Core Contracts
      • ZivoeDAO.sol
      • ZivoeGlobals.sol
      • ZivoeGovernorV2.sol
      • ZivoeITO.sol
      • ZivoeLocker.sol
      • ZivoeMath.sol
      • ZivoeRewards.sol
      • ZivoeRewardsVesting.sol
      • ZivoeToken.sol
      • ZivoeTranches.sol
      • ZivoeTrancheToken.sol
      • ZivoeYDL.sol
      • ZivoeVault.sol
      • ZivoeRouter.sol
    • Lockers
      • OCC_Modular.sol
      • OCE_ZVE.sol
      • OCL_ZVE.sol
      • OCR_Modular.sol
      • OCT_DAO.sol
      • OCT_Convert.sol
      • OCT_YDL.sol
      • OCT_ZVL.sol
      • OCY_Convex_A.sol
      • OCY_Convex_B.sol
      • OCY_Convex_C.sol
      • OCY_OUSD.sol
      • ZivoeSwapper.sol
  • Official Links
    • Audits
    • Website
    • Twitter
    • Telegram
    • Blog
  • Terms
    • Terms Of Use / Privacy Policy
    • Reg S Compliance
Powered by GitBook
On this page
  • Introduction
  • Sections
  • Write Functions
  1. Developer Docs
  2. Core Contracts

ZivoeToken.sol

Native Governance Token

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

  • ZivoeToken.sol

Write Functions

burn()

Burns $ZVE tokens.

function burn(uint256 amount) external virtual;

PreviousZivoeRewardsVesting.solNextZivoeTranches.sol

Last updated 1 year ago

Zivoe Finance - Official Documentation