InfraredGovernanceToken

Git Source

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

NameTypeDescription
_infraredaddressThe address of the Infrared contract
_adminaddressThe address of the admin
_minteraddressThe address of the minter
_pauseraddressThe address of the pauser
_burneraddressThe burner address of the contract

Errors

ZeroAddress

error ZeroAddress();