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.Key Features
User Balance Management:
• Supports adding token balances for users verified through the Main Pool contract.
• Enables secure withdrawals with automatic allocation to related pools, ensuring a consistent fund distribution mechanism.
Integration with Main Pool:
• Interfaces with the Main Pool to verify user history and handle fund withdrawals effectively.• Retrieving addresses of related pools (Owner, Matching Bonus, Balancer).
• Delegating fund withdrawals to the Main Pool.
Transparent Events:
• Logs significant actions such as user additions, withdrawals, balance updates, and pool address changes, enhancing traceability.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
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.
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.
revokeRole(role bytes32, account address)
Used by an administrator to remove a specific role from an account, effectively revoking its permissions.
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.