Libraries and Interfaces
OpenZeppelin AccessControl:
Used to implement role-based access control, ensuring that only authorized parties can perform critical operations like setting owners. Role management by assigning:• DEFAULT_ADMIN_ROLE: Assigned to the administrator, allowing them to manage other roles.
• OPERATOR_ROLE: Assigned to operators who can set owner addresses and shares.
IERC20_USDT Interface:
Defines key ERC20 functions (transferFrom, transfer, balanceOf) for interaction with the Tether (USDT) token contract.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.
allocatedBalance
Returns the portion of contract balance that is allocated to the owners.
getOwnerInfo(_owner address)
Returns the share and balance information for a specified owner.
getOwners
Returns the list of all owner addresses.
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
_update()
Updates each owner’s balance based on their share of the unallocated USDT in the contract. Allocates funds proportionally to each owner. Updates the allocatedBalance to include the newly allocated funds.
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.