Libraries and Interfaces
Role-Based Access Control:
Utilizes OpenZeppelin's AccessControl for defining roles.DEFAULT_ADMIN_ROLE:
• Grants full administrative privileges, including assigning or revoking roles.
• Controls the overall configuration of the contract.
OPERATOR_ROLE:
• Allows operators to perform specific actions, such as:
• Adding user reward balances.
• Managing critical contract variables, including updating the main pool address.
• Initiating surplus transfers to designated pools
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
This is the default role in AccessControl, typically assigned to the contract deployer. It has the authority to manage all roles.
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 MatchingBonusPool address.
getMatchingBonusPoolAddress()
Returns the MatchingBonusPool address.
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).
supportsInterface(interfaceId bytes4)
Used to check if the contract implements a certain interface (e.g., IERC20 or IAccessControl).
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)
Allocates a specified reward amount to a 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.
transferSurplus ()
Transfers any surplus tokens (not allocated to users) to the matching bonus pool.
withdrawal(_amount uint256)
Allows users to withdraw their reward balances. The withdrawn amount is divided as follows: - Owner Share: 2.5% of the withdrawal amount is transferred to the owner pool. - Token Increase Share: 2.5% of the withdrawal amount is transferred to the main pool. - User Share: The remaining amount is transferred to the user.