GainsNetworkToken
GNS token contract, simple ERC20 token with access control and minting/burning
MINTER_ROLE
bytes32 MINTER_ROLE
BURNER_ROLE
bytes32 BURNER_ROLE
initialized
bool initialized
constructor
constructor(address admin) public
setupRoles
function setupRoles(address diamond, address vault, address compensationHandler) external
mint
function mint(address to, uint256 amount) external
burn
function burn(address from, uint256 amount) external
Was this helpful?