> For the complete documentation index, see [llms.txt](https://docs.dexe.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dexe.network/contract-interfaces/gov-contracts/validators/igovvalidatorstoken.md).

# IGovValidatorsToken

## Interface Description

License: MIT

##

```solidity
interface IGovValidatorsToken is IERC20
```

This is the contract that determines the validators

## Functions info

### mint (0x40c10f19)

```solidity
function mint(address account, uint256 amount) external
```

Mint new tokens, available only from `Validators` contract

Parameters:

| Name    | Type    | Description               |
| ------- | ------- | ------------------------- |
| account | address | Address                   |
| amount  | uint256 | Token amount to mint. Wei |

### burn (0x9dc29fac)

```solidity
function burn(address account, uint256 amount) external
```

Burn tokens, available only from `Validators` contract

Parameters:

| Name    | Type    | Description               |
| ------- | ------- | ------------------------- |
| account | address | Address                   |
| amount  | uint256 | Token amount to burn. Wei |

### snapshot (0x9711715a)

```solidity
function snapshot() external returns (uint256)
```

Create tokens snapshot

Return values:

| Name | Type    | Description |
| ---- | ------- | ----------- |
| \[0] | uint256 | Snapshot ID |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dexe.network/contract-interfaces/gov-contracts/validators/igovvalidatorstoken.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
