🧪LabERC20 – Laboratory $LAB Token for DecentraLabsCom
✨ Key Features
📦 Key Functions
/// @notice Initializes the token with given symbol
/// @dev This function can only be called once due to the initializer modifier
/// @param _symbol The symbol for the token
/// @custom:initializer Sets the token name as "$<symbol>" and mints 10M tokens to the deployer
function initialize(string memory _symbol) public initializer;/// @notice Mints new tokens and assigns them to the specified account
/// @dev Anyone can call this function as it is public
/// @param account The address that will receive the minted tokens
/// @param amount The amount of tokens to mint
function mint(address account, uint256 amount) public;Last updated