Libraries and Interfaces
Role-Based Access Control:
The contract employs OpenZeppelin's AccessControl to manage permissions for specific operations:• DEFAULT_ADMIN_ROLE: Grants full control over the contract.
• OPERATOR_ROLE: Enables operational tasks like adding packages and updating data.
• POOL_ROLE: Allows withdrawal and interaction with pool-related functions.
IERC20_USDT Interface:
Defines key ERC20 functions (transferFrom, transfer, balanceOf) for interaction with the Tether (USDT) token contract.IERC20APX Interface:
This interface defines functions specific to the Apexia Token, which implements an extended ERC20 functionality for minting and burning tokens.This enables the contract to mint Apexia tokens during package purchases, and also burns Apexia tokens when users sell their tokens back to the system.Readable functions
DEFAULT_ADMIN_ROLE
A constant that defines the default administrative role in the smart contract.Used to manage access control.
OPERATOR_ROLE
A constant that defines the role for operators who may have specific permissions within the contract.
POOL_ROLE
A custom role, likely used to manage specific pool-related actions or permissions within the contract.
addingOldUsers
A flag representing the old-user data is imported to the contract after migration.
apexiaToken()
Returns the address of the ApexiaToken contract
currentPrice()
Returns the current price of the token which is calculated dynamically.
getAllUsers()
Fetches a list of all user addresses who have participated in investments.
getBalancerPoolAddress()
Returns the address of the Balancer Pool.
getMatchingBonusPoolAddress()
Returns the address of the Matching Bonus Pool.
getOwnerPoolAddress()
Fetches the address of the Owner Pool
getPackageDetails(uint256 packageId)
Returns the details of a specific package.
getPackagesCount()
Returns the total number of investment packages.
getRoleAdmin(role bytes32)
Returns the admin role responsible for managing a specific role, such as POOL_ROLE.
getUserHistory(address _user)
Fetches the purchase history for a specific user.
hasRole(role bytes32, account address)
Checks if a specific address has a given role (e.g., POOL_ROLE).
initialPrice()
Returns the starting price of the APX token.
poolAddresses(uint256)
Returns the address of specific pool.
supportsInterface(interfaceId bytes4)
Checks if the contract implements a specific interface (e.g., ERC20 or AccessControl).
tetherToken()
Returns the address of the Tether (USDT) token contract used in the system.
Executable Functions
addOldUsers(_userData tuple[], _userAddress address[])
Migrates legacy user data into the contract. Adds a list of pre-existing users to the contract,
addPackage( _name string, _tetherAmount uint256, _ownerPurchaseWage uint256, _tokenPlanWage uint256, _networkPlanWage uint256, _tokenOwnerWage uint256, _tokenIncreaseRate uint256)
Creates a new investment package with specific attributes. _name: name of the package, _tetherAmount: the value of the package (USDT), _ownerPurchaseWage: the owner pool wage, _tokenPlanWage: the percentage of the Token plan, _networkPlanWage: the percentage of Network plan, _tokenOwnerWage: the owner pool wage of the network plan, _tokenIncreaseRate: the percentage for raising the token price
buy(_packageId uint256, _txId uint256)
Allows users to invest in a package using USDT. This functions: • Distributes funds to predefined pools. • Mints and transfers ApexiaTokens to the user based on the package’s token allocation rate. • Updates the token price to reflect the new supply dynamics.
changePackageStatus(_packageId uint256, _status bool)
Modifies the status of a package (e.g., enable, disable).
endOfUsersDataMigration()
Signals the end of a user data migration process, ensuring the system transitions to a stable state.
grantRole(role bytes32, account address)
Assigns a specific role to an account, giving it permissions to perform certain actions.
poolWithdrawal(receiver address, _amount uint256)
Enables withdrawal of funds or tokens from a specific pool within the contract.
renounceRole(role bytes32, callerConfirmation address)
Allows an account to relinquish a role it holds, removing its permissions.
revokeRole(role bytes32, account address)
Used by an admin to remove a role from an account, revoking associated permissions.
sell(uint256 _amount)
Enables users to sell ApexiaTokens for USDT. A small fee is deducted, and the token price is updated to reflect the reduced supply
setPoolAddresses(address[] memory _poolAddresses)
Sets addresses for the three predefined pools.
updatePoolAddress( Pools _poolNumber, address _poolAddress)
Modifies a specific pool’s address, ensuring it points to the correct contract.
updateTokenPrice(uint256 _amount)
Updates the token price based on additional investment.
updateTokenPriceOnlyPools( uint256 _amount)
Specifically updates token prices for the reward pools.