InfraredGovernanceToken
Inherits: ERC20PresetMinterPauser
This contract is the IR token.
State Variables
infrared
address public immutable infrared;
Functions
constructor
Construct the Infrared Governance Token contract
constructor(
address _infrared,
address _admin,
address _minter,
address _pauser,
address _burner
)
ERC20PresetMinterPauser(
"Infrared Governance Token",
"IR",
_admin,
_minter,
_pauser,
_burner
);
Parameters
Name | Type | Description |
---|---|---|
_infrared | address | The address of the Infrared contract |
_admin | address | The address of the admin |
_minter | address | The address of the minter |
_pauser | address | The address of the pauser |
_burner | address | The burner address of the contract |
Errors
ZeroAddress
error ZeroAddress();