TkoToken
This is Taiko's governance and fee token.
Mint
event Mint(address account, uint256 amount)
Burn
event Burn(address account, uint256 amount)
init
function init(address _addressManager) external
Initializer to be called after being deployed behind a proxy. Based on our simulation in simulate/tokenomics/index.js, both amountMintToDAO and amountMintToDev shall be set to ~150,000,000.
transfer
function transfer(address to, uint256 amount) public returns (bool)
transferFrom
function transferFrom(address from, address to, uint256 amount) public returns (bool)
mint
function mint(address account, uint256 amount) public
Mints tokens to the given address's balance. This will increase the circulating supply.
Parameters
Name | Type | Description |
---|---|---|
account | address | The address to receive the tokens. |
amount | uint256 | The amount of tokens to mint. |
burn
function burn(address account, uint256 amount) public
Burn tokens from the given address's balance. This will decrease the circulating supply.
Parameters
Name | Type | Description |
---|---|---|
account | address | The address to burn the tokens from. |
amount | uint256 | The amount of tokens to burn. |