ProtocolToken

Git Source

Inherits: ERC20Votes, Authorizable, IProtocolToken

This contract represents the protocol ERC20Votes token to be used for governance purposes

Functions

constructor

constructor(
  string memory _name,
  string memory _symbol
) ERC20(_name, _symbol) ERC20Permit(_name) Authorizable(msg.sender);

Parameters

NameTypeDescription
_namestringString with the name of the token
_symbolstringString with the symbol of the token

mint

Mint an amount of tokens to an account

Only authorized addresses can mint tokens

function mint(address _dst, uint256 _wad) external isAuthorized;

Parameters

NameTypeDescription
_dstaddress
_waduint256

burn

Burn an amount of tokens from the sender

function burn(uint256 _wad) external;

Parameters

NameTypeDescription
_waduint256