Libraries and Interfaces
Role-Based Access Control:
Utilizes OpenZeppelin's AccessControl for defining roles.
• DEFAULT_ADMIN_ROLE: Grants administrative privileges, such as assigning roles.
• OPERATOR_ROLE: Allows operators to add users, manage balances. Only addresses with the OPERATOR_ROLE can add user balances and update the main pool address.Withdrawal operations are limited to users with sufficient balances.
IERC20_USDT Interface:
Defines key ERC20 functions (transferFrom, transfer, balanceOf) for interaction with the Tether (USDT) token contract.IMAIN_POOL Interface
Represents the price balancer contract and its core functions, enabling seamless integration with the reward system.• Ensures that the reward system operates in conjunction with the main pool's logic.
• Verifies user eligibility (getUserHistory) before allocating rewards.
• Routes token shares to the appropriate pools during withdrawal operations.
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.
checkBalance(_user address)
Returns the current balance of a _user in this pool.
getMainPoolAddress()
Returns the PriceBalancer address
getRewardPoolAddress(_poolNumber uint8)
Returns the address of a specific reward pool.
getRoleAdmin(role bytes32)
A function to retrieve the administrator responsible for managing a specific role within the contract.
hasRole(role bytes32, account address)
A function that checks whether a specific account holds a particular role in the contract.
supportsInterface(interfaceId bytes4)
Checks if the contract implements a specific interface (useful for compatibility and standards like ERC165).
tetherToken()
Returns the address of a linked Tether (USDT) token.
totalAllocated()
Returns the portion of contract balance that is allocated to the users.
Executable Functions
addUser(_user address, _amount uint256)
Increase the balance of a verified user. This function is accessible by the OPERATOR_ROLE only. The user's address must be valid and already registered in the Main Pool. The added balance must be greater than zero.
changeMainPool(newAddress address)
Updates the address of the Main Pool (Price Balancer) contract and is restricted to the OPERATOR_ROLE only.
grantRole(role bytes32, account address)
Assigns a specified role to an account, giving it specific permissions or access within the smart contract.
renounceRole(role bytes32, callerConfirmation address)
Allows an account to voluntarily relinquish a role it holds, removing its associated permissions.
updateRewardPoolAddress(_pool Number uint8, _poolAddress address)
Updates a specific reward pool address.
withdrawal(_amount uint256)
Allows users to withdraw their allocated token balance. Users must have sufficient balance and the minimum withdrawal amount is 2 USDT units. One USDT units are transferred to the Owner Pool and the remaining balance is transferred to the Main Pool and mint the user new APX tokens. It also updates the APX token price.