Used Libraries
ERC20 Standard
Inheriting from OpenZeppelin's ERC20 ensures seamless interoperability with wallets and dApps while eliminating the need for manual implementation of ERC20 functions, thereby reducing potential bugs.The ERC20 standard provides essential functionality, including token supply management, transfers (transfer and transferFrom), balance inquiries (balanceOf), and an allowance system (approve and allowance).
In ApexiaToken, the contract inherits all core ERC20 functionalities and extends them with custom logic through the mint and burn functions.
AccessControl
AccessControl simplifies role management by eliminating the need for manual, error-prone permission handling. Roles are assigned during deployment to ensure only trusted parties can mint or burn tokens.It enables role-based access control for contract functions, with roles such as DEFAULT_ADMIN_ROLE for managing other roles and administrative privileges, and MINTER_ROLE for minting and burning tokens. AccessControl provides a scalable framework for managing permissions across multiple addresses without requiring custom logic.
In ApexiaToken, the constructor grants DEFAULT_ADMIN_ROLE to the defaultAdmin address, while the minter address is assigned the MINTER_ROLE to handle minting and burning operations.
Readable functions
DEFAULT_ADMIN_ROLE
This is the default role in AccessControl, typically assigned to the contract deployer. It has the authority to manage all roles.
MINTER_ROLE
A custom role in the contract that allows holders to mint new tokens. Only accounts with this role can call minting functions.
allowance(owner address, spender address)
Returns the remaining number of tokens that a spender is allowed to spend on behalf of the token owner.
balanceOf(account address)
Returns the token balance of a specific address.
decimals
Indicates the number of decimal places the token uses. For example, if decimals is 18, a balance of 1 is 1 * 10^-18.
getRoleAdmin(role bytes32)
Returns the admin role that controls a specific role (e.g., DEFAULT_ADMIN_ROLE is the admin for MINTER_ROLE).
hasRole(role bytes32, account address)
Checks if a specific address holds a certain role (e.g., checks if an address has MINTER_ROLE).
name
Returns the name of the token (e.g., "ApexiaToken").
supportsInterface(interfaceId bytes4)
Used to check if the contract implements a certain interface (e.g., IERC20 or IAccessControl).
symbol
Returns the symbol of the token (e.g., "APX").
totalSupply
Returns the total number of tokens in circulation.
Executable Functions
approve(spender address, value uint256)
Allows a spender to spend a specified number of tokens on behalf of the token owner. This is used in conjunction with transferFrom.
burn(from address, amount uint256)
Allows a user or an entity with the necessary permission to destroy a specified number of tokens, reducing the total supply.
grantRole(role bytes32, account address)
Assigns a specific role (e.g., MINTER_ROLE) to a given address. Only accounts with the admin role for that specific role can call this function.
mint(to address, amount uint256)
Creates new tokens and assigns them to a specified address. This increases the total supply and can only be called by accounts with the MINTER_ROLE.
renounceRole(role bytes32, callerConfirmation address)
Allows a user to voluntarily relinquish a specific role they hold. This is useful if a user no longer wants to hold permissions.
revokeRole(role bytes32, account address)
Removes a specific role from an address. Only accounts with the admin role for the specific role can perform this action
transfer(to address, value uint256)
Transfers a specified number of tokens from the caller's address to a recipient address.
transferFrom(from address, to address, value uint256)
Moves tokens from one address to another using the allowance mechanism. The caller must be approved by the token owner to spend the tokens.