|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.1;
|
|
|
|
|
|
|
|
|
|
library Address {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isContract(address account) internal view returns (bool) {
|
|
|
|
|
|
|
|
|
|
return account.code.length > 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sendValue(address payable recipient, uint256 amount) internal {
|
|
require(address(this).balance >= amount, "Address: insufficient balance");
|
|
|
|
(bool success, ) = recipient.call{value: amount}("");
|
|
require(success, "Address: unable to send value, recipient may have reverted");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, 0, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
require(address(this).balance >= value, "Address: insufficient balance for call");
|
|
(bool success, bytes memory returndata) = target.call{value: value}(data);
|
|
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
|
|
return functionStaticCall(target, data, "Address: low-level static call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal view returns (bytes memory) {
|
|
(bool success, bytes memory returndata) = target.staticcall(data);
|
|
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
|
|
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionDelegateCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
(bool success, bytes memory returndata) = target.delegatecall(data);
|
|
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCallResultFromTarget(
|
|
address target,
|
|
bool success,
|
|
bytes memory returndata,
|
|
string memory errorMessage
|
|
) internal view returns (bytes memory) {
|
|
if (success) {
|
|
if (returndata.length == 0) {
|
|
|
|
|
|
require(isContract(target), "Address: call to non-contract");
|
|
}
|
|
return returndata;
|
|
} else {
|
|
_revert(returndata, errorMessage);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCallResult(
|
|
bool success,
|
|
bytes memory returndata,
|
|
string memory errorMessage
|
|
) internal pure returns (bytes memory) {
|
|
if (success) {
|
|
return returndata;
|
|
} else {
|
|
_revert(returndata, errorMessage);
|
|
}
|
|
}
|
|
|
|
function _revert(bytes memory returndata, string memory errorMessage) private pure {
|
|
|
|
if (returndata.length > 0) {
|
|
|
|
|
|
assembly {
|
|
let returndata_size := mload(returndata)
|
|
revert(add(32, returndata), returndata_size)
|
|
}
|
|
} else {
|
|
revert(errorMessage);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes calldata) {
|
|
return msg.data;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Ownable is Context {
|
|
address private _owner;
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
_transferOwnership(_msgSender());
|
|
}
|
|
|
|
|
|
|
|
|
|
modifier onlyOwner() {
|
|
_checkOwner();
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _checkOwner() internal view virtual {
|
|
require(owner() == _msgSender(), "Ownable: caller is not the owner");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renounceOwnership() public virtual onlyOwner {
|
|
_transferOwnership(address(0));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function transferOwnership(address newOwner) public virtual onlyOwner {
|
|
require(newOwner != address(0), "Ownable: new owner is the zero address");
|
|
_transferOwnership(newOwner);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _transferOwnership(address newOwner) internal virtual {
|
|
address oldOwner = _owner;
|
|
_owner = newOwner;
|
|
emit OwnershipTransferred(oldOwner, newOwner);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
interface IERC20 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
|
|
|
|
|
|
|
|
event Approval(address indexed owner, address indexed spender, uint256 value);
|
|
|
|
|
|
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
function balanceOf(address account) external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transfer(address to, uint256 amount) external returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function allowance(address owner, address spender) external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function approve(address spender, uint256 amount) external returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) external returns (bool);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC20Metadata is IERC20 {
|
|
|
|
|
|
|
|
function name() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function symbol() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function decimals() external view returns (uint8);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract ERC20 is Context, IERC20, IERC20Metadata {
|
|
mapping(address => uint256) private _balances;
|
|
|
|
mapping(address => mapping(address => uint256)) private _allowances;
|
|
|
|
uint256 private _totalSupply;
|
|
|
|
string private _name;
|
|
string private _symbol;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(string memory name_, string memory symbol_) {
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function name() public view virtual override returns (string memory) {
|
|
return _name;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function symbol() public view virtual override returns (string memory) {
|
|
return _symbol;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function decimals() public view virtual override returns (uint8) {
|
|
return 18;
|
|
}
|
|
|
|
|
|
|
|
|
|
function totalSupply() public view virtual override returns (uint256) {
|
|
return _totalSupply;
|
|
}
|
|
|
|
|
|
|
|
|
|
function balanceOf(address account) public view virtual override returns (uint256) {
|
|
return _balances[account];
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transfer(address to, uint256 amount) public virtual override returns (bool) {
|
|
address owner = _msgSender();
|
|
_transfer(owner, to, amount);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
function allowance(address owner, address spender) public view virtual override returns (uint256) {
|
|
return _allowances[owner][spender];
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function approve(address spender, uint256 amount) public virtual override returns (bool) {
|
|
address owner = _msgSender();
|
|
_approve(owner, spender, amount);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) public virtual override returns (bool) {
|
|
address spender = _msgSender();
|
|
_spendAllowance(from, spender, amount);
|
|
_transfer(from, to, amount);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
|
|
address owner = _msgSender();
|
|
_approve(owner, spender, allowance(owner, spender) + addedValue);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
|
|
address owner = _msgSender();
|
|
uint256 currentAllowance = allowance(owner, spender);
|
|
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
|
|
unchecked {
|
|
_approve(owner, spender, currentAllowance - subtractedValue);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) internal virtual {
|
|
require(from != address(0), "ERC20: transfer from the zero address");
|
|
require(to != address(0), "ERC20: transfer to the zero address");
|
|
|
|
_beforeTokenTransfer(from, to, amount);
|
|
|
|
uint256 fromBalance = _balances[from];
|
|
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
|
|
unchecked {
|
|
_balances[from] = fromBalance - amount;
|
|
|
|
|
|
_balances[to] += amount;
|
|
}
|
|
|
|
emit Transfer(from, to, amount);
|
|
|
|
_afterTokenTransfer(from, to, amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _mint(address account, uint256 amount) internal virtual {
|
|
require(account != address(0), "ERC20: mint to the zero address");
|
|
|
|
_beforeTokenTransfer(address(0), account, amount);
|
|
|
|
_totalSupply += amount;
|
|
unchecked {
|
|
|
|
_balances[account] += amount;
|
|
}
|
|
emit Transfer(address(0), account, amount);
|
|
|
|
_afterTokenTransfer(address(0), account, amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _burn(address account, uint256 amount) internal virtual {
|
|
require(account != address(0), "ERC20: burn from the zero address");
|
|
|
|
_beforeTokenTransfer(account, address(0), amount);
|
|
|
|
uint256 accountBalance = _balances[account];
|
|
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
|
|
unchecked {
|
|
_balances[account] = accountBalance - amount;
|
|
|
|
_totalSupply -= amount;
|
|
}
|
|
|
|
emit Transfer(account, address(0), amount);
|
|
|
|
_afterTokenTransfer(account, address(0), amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _approve(
|
|
address owner,
|
|
address spender,
|
|
uint256 amount
|
|
) internal virtual {
|
|
require(owner != address(0), "ERC20: approve from the zero address");
|
|
require(spender != address(0), "ERC20: approve to the zero address");
|
|
|
|
_allowances[owner][spender] = amount;
|
|
emit Approval(owner, spender, amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _spendAllowance(
|
|
address owner,
|
|
address spender,
|
|
uint256 amount
|
|
) internal virtual {
|
|
uint256 currentAllowance = allowance(owner, spender);
|
|
if (currentAllowance != type(uint256).max) {
|
|
require(currentAllowance >= amount, "ERC20: insufficient allowance");
|
|
unchecked {
|
|
_approve(owner, spender, currentAllowance - amount);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _beforeTokenTransfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) internal virtual {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _afterTokenTransfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) internal virtual {}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
library Clones {
|
|
|
|
|
|
|
|
|
|
|
|
function clone(address implementation) internal returns (address instance) {
|
|
|
|
assembly {
|
|
|
|
|
|
mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
|
|
|
|
mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
|
|
instance := create(0, 0x09, 0x37)
|
|
}
|
|
require(instance != address(0), "ERC1167: create failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
|
|
|
|
assembly {
|
|
|
|
|
|
mstore(0x00, or(shr(0xe8, shl(0x60, implementation)), 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000))
|
|
|
|
mstore(0x20, or(shl(0x78, implementation), 0x5af43d82803e903d91602b57fd5bf3))
|
|
instance := create2(0, 0x09, 0x37, salt)
|
|
}
|
|
require(instance != address(0), "ERC1167: create2 failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
function predictDeterministicAddress(
|
|
address implementation,
|
|
bytes32 salt,
|
|
address deployer
|
|
) internal pure returns (address predicted) {
|
|
|
|
assembly {
|
|
let ptr := mload(0x40)
|
|
mstore(add(ptr, 0x38), deployer)
|
|
mstore(add(ptr, 0x24), 0x5af43d82803e903d91602b57fd5bf3ff)
|
|
mstore(add(ptr, 0x14), implementation)
|
|
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73)
|
|
mstore(add(ptr, 0x58), salt)
|
|
mstore(add(ptr, 0x78), keccak256(add(ptr, 0x0c), 0x37))
|
|
predicted := keccak256(add(ptr, 0x43), 0x55)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function predictDeterministicAddress(address implementation, bytes32 salt)
|
|
internal
|
|
view
|
|
returns (address predicted)
|
|
{
|
|
return predictDeterministicAddress(implementation, salt, address(this));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.1;
|
|
|
|
|
|
|
|
|
|
library AddressUpgradeable {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isContract(address account) internal view returns (bool) {
|
|
|
|
|
|
|
|
|
|
return account.code.length > 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sendValue(address payable recipient, uint256 amount) internal {
|
|
require(address(this).balance >= amount, "Address: insufficient balance");
|
|
|
|
(bool success, ) = recipient.call{value: amount}("");
|
|
require(success, "Address: unable to send value, recipient may have reverted");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, 0, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
require(address(this).balance >= value, "Address: insufficient balance for call");
|
|
(bool success, bytes memory returndata) = target.call{value: value}(data);
|
|
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
|
|
return functionStaticCall(target, data, "Address: low-level static call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal view returns (bytes memory) {
|
|
(bool success, bytes memory returndata) = target.staticcall(data);
|
|
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCallResultFromTarget(
|
|
address target,
|
|
bool success,
|
|
bytes memory returndata,
|
|
string memory errorMessage
|
|
) internal view returns (bytes memory) {
|
|
if (success) {
|
|
if (returndata.length == 0) {
|
|
|
|
|
|
require(isContract(target), "Address: call to non-contract");
|
|
}
|
|
return returndata;
|
|
} else {
|
|
_revert(returndata, errorMessage);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCallResult(
|
|
bool success,
|
|
bytes memory returndata,
|
|
string memory errorMessage
|
|
) internal pure returns (bytes memory) {
|
|
if (success) {
|
|
return returndata;
|
|
} else {
|
|
_revert(returndata, errorMessage);
|
|
}
|
|
}
|
|
|
|
function _revert(bytes memory returndata, string memory errorMessage) private pure {
|
|
|
|
if (returndata.length > 0) {
|
|
|
|
|
|
assembly {
|
|
let returndata_size := mload(returndata)
|
|
revert(add(32, returndata), returndata_size)
|
|
}
|
|
} else {
|
|
revert(errorMessage);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Initializable {
|
|
|
|
|
|
|
|
|
|
uint8 private _initialized;
|
|
|
|
|
|
|
|
|
|
bool private _initializing;
|
|
|
|
|
|
|
|
|
|
event Initialized(uint8 version);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modifier initializer() {
|
|
bool isTopLevelCall = !_initializing;
|
|
require(
|
|
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
|
|
"Initializable: contract is already initialized"
|
|
);
|
|
_initialized = 1;
|
|
if (isTopLevelCall) {
|
|
_initializing = true;
|
|
}
|
|
_;
|
|
if (isTopLevelCall) {
|
|
_initializing = false;
|
|
emit Initialized(1);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modifier reinitializer(uint8 version) {
|
|
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
|
|
_initialized = version;
|
|
_initializing = true;
|
|
_;
|
|
_initializing = false;
|
|
emit Initialized(version);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
modifier onlyInitializing() {
|
|
require(_initializing, "Initializable: contract is not initializing");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _disableInitializers() internal virtual {
|
|
require(!_initializing, "Initializable: contract is initializing");
|
|
if (_initialized < type(uint8).max) {
|
|
_initialized = type(uint8).max;
|
|
emit Initialized(type(uint8).max);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function _getInitializedVersion() internal view returns (uint8) {
|
|
return _initialized;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _isInitializing() internal view returns (bool) {
|
|
return _initializing;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract ContextUpgradeable is Initializable {
|
|
function __Context_init() internal onlyInitializing {
|
|
}
|
|
|
|
function __Context_init_unchained() internal onlyInitializing {
|
|
}
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes calldata) {
|
|
return msg.data;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint256[50] private __gap;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
|
|
address private _owner;
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
|
|
|
|
|
|
|
|
function __Ownable_init() internal onlyInitializing {
|
|
__Ownable_init_unchained();
|
|
}
|
|
|
|
function __Ownable_init_unchained() internal onlyInitializing {
|
|
_transferOwnership(_msgSender());
|
|
}
|
|
|
|
|
|
|
|
|
|
modifier onlyOwner() {
|
|
_checkOwner();
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _checkOwner() internal view virtual {
|
|
require(owner() == _msgSender(), "Ownable: caller is not the owner");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renounceOwnership() public virtual onlyOwner {
|
|
_transferOwnership(address(0));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function transferOwnership(address newOwner) public virtual onlyOwner {
|
|
require(newOwner != address(0), "Ownable: new owner is the zero address");
|
|
_transferOwnership(newOwner);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _transferOwnership(address newOwner) internal virtual {
|
|
address oldOwner = _owner;
|
|
_owner = newOwner;
|
|
emit OwnershipTransferred(oldOwner, newOwner);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint256[49] private __gap;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
library SafeMath {
|
|
|
|
|
|
|
|
|
|
|
|
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
uint256 c = a + b;
|
|
if (c < a) return (false, 0);
|
|
return (true, c);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b > a) return (false, 0);
|
|
return (true, a - b);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
|
|
|
|
|
|
if (a == 0) return (true, 0);
|
|
uint256 c = a * b;
|
|
if (c / a != b) return (false, 0);
|
|
return (true, c);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b == 0) return (false, 0);
|
|
return (true, a / b);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b == 0) return (false, 0);
|
|
return (true, a % b);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function add(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a + b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a - b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a * b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function div(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a / b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a % b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sub(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b <= a, errorMessage);
|
|
return a - b;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function div(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b > 0, errorMessage);
|
|
return a / b;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function mod(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b > 0, errorMessage);
|
|
return a % b;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
library Math {
|
|
enum Rounding {
|
|
Down,
|
|
Up,
|
|
Zero
|
|
}
|
|
|
|
|
|
|
|
|
|
function max(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a > b ? a : b;
|
|
}
|
|
|
|
|
|
|
|
|
|
function min(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a < b ? a : b;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function average(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
|
|
return (a & b) + (a ^ b) / 2;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
|
|
return a == 0 ? 0 : (a - 1) / b + 1;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function mulDiv(
|
|
uint256 x,
|
|
uint256 y,
|
|
uint256 denominator
|
|
) internal pure returns (uint256 result) {
|
|
unchecked {
|
|
|
|
|
|
|
|
uint256 prod0;
|
|
uint256 prod1;
|
|
assembly {
|
|
let mm := mulmod(x, y, not(0))
|
|
prod0 := mul(x, y)
|
|
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
|
|
}
|
|
|
|
|
|
if (prod1 == 0) {
|
|
return prod0 / denominator;
|
|
}
|
|
|
|
|
|
require(denominator > prod1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint256 remainder;
|
|
assembly {
|
|
|
|
remainder := mulmod(x, y, denominator)
|
|
|
|
|
|
prod1 := sub(prod1, gt(remainder, prod0))
|
|
prod0 := sub(prod0, remainder)
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint256 twos = denominator & (~denominator + 1);
|
|
assembly {
|
|
|
|
denominator := div(denominator, twos)
|
|
|
|
|
|
prod0 := div(prod0, twos)
|
|
|
|
|
|
twos := add(div(sub(0, twos), twos), 1)
|
|
}
|
|
|
|
|
|
prod0 |= prod1 * twos;
|
|
|
|
|
|
|
|
|
|
uint256 inverse = (3 * denominator) ^ 2;
|
|
|
|
|
|
|
|
inverse *= 2 - denominator * inverse;
|
|
inverse *= 2 - denominator * inverse;
|
|
inverse *= 2 - denominator * inverse;
|
|
inverse *= 2 - denominator * inverse;
|
|
inverse *= 2 - denominator * inverse;
|
|
inverse *= 2 - denominator * inverse;
|
|
|
|
|
|
|
|
|
|
|
|
result = prod0 * inverse;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function mulDiv(
|
|
uint256 x,
|
|
uint256 y,
|
|
uint256 denominator,
|
|
Rounding rounding
|
|
) internal pure returns (uint256) {
|
|
uint256 result = mulDiv(x, y, denominator);
|
|
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
|
|
result += 1;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function sqrt(uint256 a) internal pure returns (uint256) {
|
|
if (a == 0) {
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint256 result = 1 << (log2(a) >> 1);
|
|
|
|
|
|
|
|
|
|
|
|
unchecked {
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
result = (result + a / result) >> 1;
|
|
return min(result, a / result);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
|
|
unchecked {
|
|
uint256 result = sqrt(a);
|
|
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function log2(uint256 value) internal pure returns (uint256) {
|
|
uint256 result = 0;
|
|
unchecked {
|
|
if (value >> 128 > 0) {
|
|
value >>= 128;
|
|
result += 128;
|
|
}
|
|
if (value >> 64 > 0) {
|
|
value >>= 64;
|
|
result += 64;
|
|
}
|
|
if (value >> 32 > 0) {
|
|
value >>= 32;
|
|
result += 32;
|
|
}
|
|
if (value >> 16 > 0) {
|
|
value >>= 16;
|
|
result += 16;
|
|
}
|
|
if (value >> 8 > 0) {
|
|
value >>= 8;
|
|
result += 8;
|
|
}
|
|
if (value >> 4 > 0) {
|
|
value >>= 4;
|
|
result += 4;
|
|
}
|
|
if (value >> 2 > 0) {
|
|
value >>= 2;
|
|
result += 2;
|
|
}
|
|
if (value >> 1 > 0) {
|
|
result += 1;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
|
|
unchecked {
|
|
uint256 result = log2(value);
|
|
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function log10(uint256 value) internal pure returns (uint256) {
|
|
uint256 result = 0;
|
|
unchecked {
|
|
if (value >= 10**64) {
|
|
value /= 10**64;
|
|
result += 64;
|
|
}
|
|
if (value >= 10**32) {
|
|
value /= 10**32;
|
|
result += 32;
|
|
}
|
|
if (value >= 10**16) {
|
|
value /= 10**16;
|
|
result += 16;
|
|
}
|
|
if (value >= 10**8) {
|
|
value /= 10**8;
|
|
result += 8;
|
|
}
|
|
if (value >= 10**4) {
|
|
value /= 10**4;
|
|
result += 4;
|
|
}
|
|
if (value >= 10**2) {
|
|
value /= 10**2;
|
|
result += 2;
|
|
}
|
|
if (value >= 10**1) {
|
|
result += 1;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
|
|
unchecked {
|
|
uint256 result = log10(value);
|
|
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function log256(uint256 value) internal pure returns (uint256) {
|
|
uint256 result = 0;
|
|
unchecked {
|
|
if (value >> 128 > 0) {
|
|
value >>= 128;
|
|
result += 16;
|
|
}
|
|
if (value >> 64 > 0) {
|
|
value >>= 64;
|
|
result += 8;
|
|
}
|
|
if (value >> 32 > 0) {
|
|
value >>= 32;
|
|
result += 4;
|
|
}
|
|
if (value >> 16 > 0) {
|
|
value >>= 16;
|
|
result += 2;
|
|
}
|
|
if (value >> 8 > 0) {
|
|
result += 1;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
|
|
unchecked {
|
|
uint256 result = log256(value);
|
|
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
library Strings {
|
|
bytes16 private constant _SYMBOLS = "0123456789abcdef";
|
|
uint8 private constant _ADDRESS_LENGTH = 20;
|
|
|
|
|
|
|
|
|
|
function toString(uint256 value) internal pure returns (string memory) {
|
|
unchecked {
|
|
uint256 length = Math.log10(value) + 1;
|
|
string memory buffer = new string(length);
|
|
uint256 ptr;
|
|
|
|
assembly {
|
|
ptr := add(buffer, add(32, length))
|
|
}
|
|
while (true) {
|
|
ptr--;
|
|
|
|
assembly {
|
|
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
|
|
}
|
|
value /= 10;
|
|
if (value == 0) break;
|
|
}
|
|
return buffer;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(uint256 value) internal pure returns (string memory) {
|
|
unchecked {
|
|
return toHexString(value, Math.log256(value) + 1);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
|
|
bytes memory buffer = new bytes(2 * length + 2);
|
|
buffer[0] = "0";
|
|
buffer[1] = "x";
|
|
for (uint256 i = 2 * length + 1; i > 1; --i) {
|
|
buffer[i] = _SYMBOLS[value & 0xf];
|
|
value >>= 4;
|
|
}
|
|
require(value == 0, "Strings: hex length insufficient");
|
|
return string(buffer);
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(address addr) internal pure returns (string memory) {
|
|
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract RootOfPools_v2 is Initializable, OwnableUpgradeable {
|
|
using AddressUpgradeable for address;
|
|
using Strings for uint256;
|
|
|
|
struct Pool {
|
|
address pool;
|
|
string name;
|
|
}
|
|
|
|
Pool[] public Pools;
|
|
|
|
mapping(string => address) private _poolsTable;
|
|
|
|
address public _usdAddress;
|
|
address public _rankingAddress;
|
|
|
|
address[] public Images;
|
|
|
|
mapping(address => bool) private _imageTable;
|
|
|
|
address public _marketing;
|
|
address public _marketingWallet;
|
|
|
|
address public _team;
|
|
|
|
function setMarketing(address mark) public onlyOwner {
|
|
_marketing = mark;
|
|
}
|
|
|
|
function setTeam(address team) public onlyOwner {
|
|
_team = team;
|
|
}
|
|
|
|
function setMarketingWallet(address mark) public onlyOwner {
|
|
_marketingWallet = mark;
|
|
}
|
|
|
|
event PoolCreated(string name, address pool);
|
|
event ImageAdded(address image);
|
|
event Response(address to, bool success, bytes data);
|
|
|
|
modifier shouldExist(string calldata name) {
|
|
require(
|
|
_poolsTable[name] != address(0),
|
|
"ROOT: Selected pool does not exist!"
|
|
);
|
|
_;
|
|
}
|
|
|
|
|
|
function initialize(
|
|
address usdAddress,
|
|
address rankingAddress
|
|
) external initializer {
|
|
require(
|
|
usdAddress != address(0),
|
|
"INIT: The usdAddress must not be zero."
|
|
);
|
|
require(
|
|
rankingAddress != address(0),
|
|
"INIT: The rankingAddress must not be zero."
|
|
);
|
|
|
|
__Ownable_init();
|
|
_usdAddress = usdAddress;
|
|
_rankingAddress = rankingAddress;
|
|
}
|
|
|
|
|
|
function getUSDAddress() external view returns (address) {
|
|
return _usdAddress;
|
|
}
|
|
|
|
function addImage(address image) external onlyOwner {
|
|
require(_imageTable[image] != true);
|
|
|
|
Images.push(image);
|
|
_imageTable[image] = true;
|
|
|
|
emit ImageAdded(image);
|
|
}
|
|
|
|
|
|
function getPools() external view returns (Pool[] memory) {
|
|
return Pools;
|
|
}
|
|
|
|
function getPool(string calldata _name) external view returns (address) {
|
|
for (uint256 i = 0; i < Pools.length; i++) {
|
|
if (
|
|
keccak256(abi.encodePacked(Pools[i].name)) ==
|
|
keccak256(abi.encodePacked(_name))
|
|
) {
|
|
return Pools[i].pool;
|
|
}
|
|
}
|
|
return address(0);
|
|
}
|
|
|
|
|
|
|
|
function createPool(
|
|
string calldata name,
|
|
uint256 imageNumber,
|
|
bytes calldata dataIn
|
|
) external onlyOwner {
|
|
require(
|
|
imageNumber <= Images.length,
|
|
"ROOT: Such an image does not exist"
|
|
);
|
|
require(
|
|
_poolsTable[name] == address(0),
|
|
"ROOT: Pool with this name already exists!"
|
|
);
|
|
|
|
address pool = Clones.clone(Images[imageNumber]);
|
|
|
|
(bool success, bytes memory data) = pool.call(dataIn);
|
|
|
|
emit Response(pool, success, data);
|
|
|
|
_poolsTable[name] = pool;
|
|
|
|
Pool memory poolT = Pool(pool, name);
|
|
Pools.push(poolT);
|
|
|
|
emit PoolCreated(name, pool);
|
|
}
|
|
|
|
function Calling(address dst, bytes calldata dataIn) external onlyOwner {
|
|
(bool success, bytes memory data) = dst.call(dataIn);
|
|
|
|
emit Response(dst, success, data);
|
|
}
|
|
|
|
function deposit(
|
|
string calldata name,
|
|
uint256 amount
|
|
) external shouldExist(name) {
|
|
BranchOfPools(_poolsTable[name]).deposit(amount);
|
|
}
|
|
|
|
function paybackEmergency(string calldata name) external shouldExist(name) {
|
|
BranchOfPools(_poolsTable[name]).paybackEmergency();
|
|
}
|
|
|
|
function claimName(string calldata name) external shouldExist(name) {
|
|
BranchOfPools(_poolsTable[name]).claim();
|
|
}
|
|
|
|
function claimAddress(address pool) internal {
|
|
require(pool != address(0), "ROOT: Selected pool does not exist!");
|
|
|
|
BranchOfPools(pool).claim();
|
|
}
|
|
|
|
|
|
function prepClaimAll(
|
|
address user
|
|
) external view returns (address[] memory pools) {
|
|
address[] memory out;
|
|
for (uint256 i; i < Pools.length; i++) {
|
|
if (BranchOfPools(Pools[i].pool).isClaimable(user)) {
|
|
out[i] = Pools[i].pool;
|
|
}
|
|
}
|
|
|
|
return pools;
|
|
}
|
|
|
|
|
|
|
|
|
|
function claimAll(address[] calldata pools) external {
|
|
for (uint256 i; i < pools.length; i++) {
|
|
claimAddress(pools[i]);
|
|
}
|
|
}
|
|
|
|
function checkAllClaims(address user) external view returns (uint256) {
|
|
uint256 temp;
|
|
for (uint256 i; i < Pools.length; i++) {
|
|
temp += (BranchOfPools(Pools[i].pool).myCurrentAllocation(user));
|
|
}
|
|
|
|
return temp;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract BranchOfPools is Initializable {
|
|
using Address for address;
|
|
using Strings for uint256;
|
|
|
|
enum State {
|
|
Pause,
|
|
Fundrasing,
|
|
WaitingToken,
|
|
TokenDistribution,
|
|
Emergency
|
|
}
|
|
State public _state = State.Pause;
|
|
|
|
|
|
event Deposit(address user, uint256 amount);
|
|
event Claim(address user);
|
|
event FundraisingOpened();
|
|
event FundraisingClosed();
|
|
event TokenEntrusted(address addrToken, uint256 amount);
|
|
event EmergencyStoped();
|
|
event FundsReturned(address user, uint256 amount);
|
|
|
|
address public _owner;
|
|
address private _root;
|
|
|
|
uint256 public _stepValue;
|
|
uint256 public _VALUE;
|
|
uint256 private _decimals;
|
|
uint256 public _outCommission;
|
|
uint256 public _preSend;
|
|
|
|
uint256 public _CURRENT_VALUE;
|
|
uint256 public _FUNDS_RAISED;
|
|
uint256 public _CURRENT_COMMISSION;
|
|
uint256 public _CURRENT_VALUE_TOKEN;
|
|
uint256 public _DISTRIBUTED_TOKEN;
|
|
uint256 public _TOKEN_COMMISSION;
|
|
|
|
mapping(address => uint256) public _valueUSDList;
|
|
mapping(address => uint256) public _usdEmergency;
|
|
mapping(address => uint256) public _issuedTokens;
|
|
mapping(address => bool) public _withoutCommission;
|
|
|
|
address[] public _listParticipants;
|
|
|
|
address public _usd;
|
|
address public _token;
|
|
address public _devUSDAddress;
|
|
|
|
address public _fundAddress;
|
|
bool private _fundLock = false;
|
|
uint256 private _fundValue;
|
|
uint256 public _fundCommission;
|
|
|
|
bool private _getCommissionFlag;
|
|
|
|
modifier onlyOwner() {
|
|
require(msg.sender == _owner, "Ownable: Only owner");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function init(
|
|
address Root,
|
|
uint256 VALUE,
|
|
uint256 Step,
|
|
address devUSDAddress,
|
|
address fundAddress,
|
|
uint256 fundCommission,
|
|
uint256 outCommission,
|
|
address tokenUSD
|
|
) external initializer {
|
|
require(Root != address(0), "The root address must not be zero.");
|
|
require(
|
|
devUSDAddress != address(0),
|
|
"The devUSDAddress must not be zero."
|
|
);
|
|
|
|
_owner = msg.sender;
|
|
_root = Root;
|
|
_usd = tokenUSD;
|
|
_decimals = 10 ** ERC20(_usd).decimals();
|
|
_VALUE = VALUE * _decimals;
|
|
_stepValue = Step * _decimals;
|
|
_devUSDAddress = devUSDAddress;
|
|
_fundAddress = fundAddress;
|
|
_fundCommission = fundCommission;
|
|
_outCommission = outCommission;
|
|
}
|
|
|
|
|
|
|
|
function changeTargetValue(
|
|
uint256 value
|
|
)
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.TokenDistribution)
|
|
onlyNotState(State.WaitingToken)
|
|
{
|
|
_VALUE = value;
|
|
}
|
|
|
|
|
|
|
|
function changeStepValue(
|
|
uint256 step
|
|
)
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.TokenDistribution)
|
|
onlyNotState(State.WaitingToken)
|
|
{
|
|
_stepValue = step;
|
|
}
|
|
|
|
modifier onlyState(State state) {
|
|
require(_state == state, "STATE: It's impossible to do it now.");
|
|
_;
|
|
}
|
|
|
|
modifier onlyNotState(State state) {
|
|
require(_state != state, "STATE: It's impossible to do it now.");
|
|
_;
|
|
}
|
|
|
|
|
|
function startFundraising() external onlyOwner onlyState(State.Pause) {
|
|
_state = State.Fundrasing;
|
|
|
|
emit FundraisingOpened();
|
|
}
|
|
|
|
|
|
|
|
function stopEmergency()
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.Pause)
|
|
onlyNotState(State.TokenDistribution)
|
|
{
|
|
if (_state == State.WaitingToken) {
|
|
uint256 balance = ERC20(_usd).balanceOf(address(this));
|
|
require(
|
|
balance >= _FUNDS_RAISED + _CURRENT_COMMISSION,
|
|
"It takes money to get a refund"
|
|
);
|
|
}
|
|
|
|
_state = State.Emergency;
|
|
|
|
emit EmergencyStoped();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function paybackEmergency() external onlyState(State.Emergency) {
|
|
uint256 usdT = _usdEmergency[tx.origin];
|
|
|
|
_usdEmergency[tx.origin] = 0;
|
|
|
|
if (usdT == 0) {
|
|
revert("You have no funds to withdraw!");
|
|
}
|
|
|
|
uint256 beforeBalance = ERC20(_usd).balanceOf(tx.origin);
|
|
|
|
emit FundsReturned(tx.origin, usdT);
|
|
|
|
ERC20(_usd).transfer(tx.origin, usdT);
|
|
|
|
uint256 afterBalance = ERC20(_usd).balanceOf(tx.origin);
|
|
|
|
require(
|
|
beforeBalance + usdT == afterBalance,
|
|
"PAYBACK: Something went wrong."
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function deposit(uint256 amount) external onlyState(State.Fundrasing) {
|
|
uint256 commission;
|
|
uint256[] memory rank = Ranking(RootOfPools_v2(_root)._rankingAddress())
|
|
.getParRankOfUser(tx.origin);
|
|
if (rank[2] != 0) {
|
|
commission = (amount * rank[2]) / 100;
|
|
}
|
|
uint256 Min = _decimals * rank[0];
|
|
uint256 Max = _decimals * rank[1];
|
|
|
|
if (rank[2] == 0) {
|
|
_withoutCommission[tx.origin] = true;
|
|
}
|
|
|
|
require(amount >= Min, "DEPOSIT: Too little funding!");
|
|
require(
|
|
amount + _valueUSDList[tx.origin] <= Max,
|
|
"DEPOSIT: Too many funds!"
|
|
);
|
|
|
|
require((amount) % _stepValue == 0, "DEPOSIT: Must match the step!");
|
|
require(
|
|
_CURRENT_VALUE + amount - commission <= _VALUE,
|
|
"DEPOSIT: Fundraising goal exceeded!"
|
|
);
|
|
|
|
emit Deposit(tx.origin, amount);
|
|
|
|
uint256 pre_balance = ERC20(_usd).balanceOf(address(this));
|
|
|
|
require(
|
|
ERC20(_usd).allowance(tx.origin, address(this)) >= amount,
|
|
"DEPOSIT: ALLOW ERROR"
|
|
);
|
|
|
|
require(
|
|
ERC20(_usd).transferFrom(tx.origin, address(this), amount),
|
|
"DEPOSIT: Transfer error"
|
|
);
|
|
_usdEmergency[tx.origin] += amount;
|
|
|
|
if (_valueUSDList[tx.origin] == 0) {
|
|
_listParticipants.push(tx.origin);
|
|
}
|
|
|
|
_valueUSDList[tx.origin] += amount - commission;
|
|
_CURRENT_COMMISSION += commission;
|
|
_CURRENT_VALUE += amount - commission;
|
|
|
|
require(
|
|
pre_balance + amount == ERC20(_usd).balanceOf(address(this)),
|
|
"DEPOSIT: Something went wrong"
|
|
);
|
|
|
|
if (_CURRENT_VALUE == _VALUE) {
|
|
_state = State.WaitingToken;
|
|
emit FundraisingClosed();
|
|
}
|
|
}
|
|
|
|
function preSend(
|
|
uint256 amount
|
|
) external onlyOwner onlyState(State.Fundrasing) {
|
|
require(amount < _CURRENT_VALUE - _preSend);
|
|
|
|
_preSend += amount;
|
|
|
|
require(
|
|
ERC20(_usd).transfer(_devUSDAddress, amount),
|
|
"COLLECT: Transfer error"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
function stopFundraising()
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.Pause)
|
|
onlyNotState(State.TokenDistribution)
|
|
onlyNotState(State.Emergency)
|
|
{
|
|
if (_state == State.Fundrasing) {
|
|
_state = State.WaitingToken;
|
|
_FUNDS_RAISED = _CURRENT_VALUE;
|
|
_VALUE = _CURRENT_VALUE;
|
|
_CURRENT_VALUE = 0;
|
|
|
|
emit FundraisingClosed();
|
|
} else {
|
|
require(
|
|
_CURRENT_VALUE == _VALUE,
|
|
"COLLECT: The funds have already been withdrawn."
|
|
);
|
|
|
|
_FUNDS_RAISED = _CURRENT_VALUE;
|
|
_CURRENT_VALUE = 0;
|
|
}
|
|
|
|
|
|
require(
|
|
ERC20(_usd).transfer(_devUSDAddress, _FUNDS_RAISED - _preSend),
|
|
"COLLECT: Transfer error"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
function entrustToken(
|
|
address tokenAddr
|
|
)
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.Emergency)
|
|
onlyNotState(State.Fundrasing)
|
|
onlyNotState(State.Pause)
|
|
{
|
|
require(
|
|
tokenAddr != address(0),
|
|
"ENTRUST: The tokenAddr must not be zero."
|
|
);
|
|
|
|
if (_token == address(0)) {
|
|
_token = tokenAddr;
|
|
} else {
|
|
require(
|
|
tokenAddr == _token,
|
|
"ENTRUST: The tokens have only one contract"
|
|
);
|
|
}
|
|
|
|
_state = State.TokenDistribution;
|
|
}
|
|
|
|
|
|
|
|
function claim() external onlyState(State.TokenDistribution) {
|
|
require(
|
|
_usdEmergency[tx.origin] > 0,
|
|
"CLAIM: You have no unredeemed tokens!"
|
|
);
|
|
|
|
uint256 amount;
|
|
|
|
uint256 currentTokenBalance = ERC20(_token).balanceOf(address(this));
|
|
|
|
if (_CURRENT_VALUE_TOKEN < currentTokenBalance) {
|
|
_CURRENT_VALUE_TOKEN += currentTokenBalance - _CURRENT_VALUE_TOKEN;
|
|
}
|
|
|
|
if (_withoutCommission[tx.origin]) {
|
|
amount =
|
|
(
|
|
((_usdEmergency[tx.origin] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED)
|
|
) -
|
|
_issuedTokens[tx.origin];
|
|
} else {
|
|
amount =
|
|
((((_usdEmergency[tx.origin] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED) * _outCommission) / 100) -
|
|
_issuedTokens[tx.origin];
|
|
}
|
|
|
|
_issuedTokens[tx.origin] += amount;
|
|
_DISTRIBUTED_TOKEN += amount;
|
|
_CURRENT_VALUE_TOKEN -= amount;
|
|
|
|
if (amount > 0) {
|
|
emit Claim(tx.origin);
|
|
uint256 pre_balance = ERC20(_token).balanceOf(address(this));
|
|
|
|
require(
|
|
ERC20(_token).transfer(tx.origin, amount),
|
|
"CLAIM: Transfer error"
|
|
);
|
|
|
|
require(
|
|
ERC20(_token).balanceOf(address(this)) == pre_balance - amount,
|
|
"CLAIM: Something went wrong!"
|
|
);
|
|
}
|
|
|
|
if (_fundLock == false) {
|
|
_fundLock = true;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function getCommission()
|
|
public
|
|
onlyNotState(State.Fundrasing)
|
|
onlyNotState(State.Pause)
|
|
onlyNotState(State.Emergency)
|
|
{
|
|
if (
|
|
((_state == State.WaitingToken) ||
|
|
(_state == State.TokenDistribution)) && (!_getCommissionFlag)
|
|
) {
|
|
|
|
uint256 toFund = (_FUNDS_RAISED * _fundCommission) / 100;
|
|
_fundValue = (toFund * 40) / 100;
|
|
require(
|
|
ERC20(_usd).transfer(_fundAddress, toFund - _fundValue),
|
|
"COLLECT: Transfer error"
|
|
);
|
|
|
|
|
|
uint256 amount = ERC20(_usd).balanceOf(address(this)) - _fundValue;
|
|
require(
|
|
ERC20(_usd).transfer(RootOfPools_v2(_root).owner(), amount / 2),
|
|
"COLLECT: Transfer error"
|
|
);
|
|
|
|
_getCommissionFlag = true;
|
|
}
|
|
|
|
if (_fundLock) {
|
|
if (_fundValue != 0) {
|
|
uint256 balance = ERC20(_usd).balanceOf(address(this));
|
|
if (balance != 0) {
|
|
uint256 amount = balance - _fundValue;
|
|
if (amount != 0) {
|
|
require(
|
|
ERC20(_usd).transfer(
|
|
RootOfPools_v2(_root)._marketingWallet(),
|
|
ERC20(_usd).balanceOf(address(this)) -
|
|
_fundValue
|
|
),
|
|
"COLLECT: Transfer error"
|
|
);
|
|
}
|
|
|
|
uint256 temp = _fundValue;
|
|
_fundValue = 0;
|
|
|
|
if (temp != 0) {
|
|
require(
|
|
ERC20(_usd).transfer(_fundAddress, temp),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
uint256 temp = 0;
|
|
uint256 value = _CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN;
|
|
for (uint256 i = 0; i < _listParticipants.length; i++) {
|
|
address user = _listParticipants[i];
|
|
if (_withoutCommission[user]) {
|
|
temp += (((_usdEmergency[user] * value) / _FUNDS_RAISED));
|
|
} else {
|
|
temp += ((((_usdEmergency[user] * value) / _FUNDS_RAISED) *
|
|
_outCommission) / 100);
|
|
}
|
|
}
|
|
|
|
uint256 tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 15) / 100;
|
|
|
|
uint256 toMarketing = ((tmp * value) / _FUNDS_RAISED) -
|
|
_issuedTokens[address(0)];
|
|
_issuedTokens[address(0)] += toMarketing;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 2) / 100;
|
|
uint256 toTeam = ((tmp * value) / _FUNDS_RAISED) -
|
|
_issuedTokens[address(1)];
|
|
|
|
|
|
_issuedTokens[address(1)] += toTeam;
|
|
|
|
_DISTRIBUTED_TOKEN += toMarketing + toTeam;
|
|
_CURRENT_VALUE_TOKEN -= (toMarketing + toTeam);
|
|
|
|
temp =
|
|
value -
|
|
(temp + _issuedTokens[address(0)] + _issuedTokens[address(1)]) -
|
|
_issuedTokens[address(this)];
|
|
_issuedTokens[address(this)] += temp;
|
|
|
|
if (toTeam != 0) {
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._team(),
|
|
toTeam //точно?
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
|
|
if (toMarketing != 0) {
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._marketing(),
|
|
toMarketing //точно?
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
|
|
if (temp != 0) {
|
|
_DISTRIBUTED_TOKEN += temp;
|
|
_CURRENT_VALUE_TOKEN -= temp;
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root).owner(),
|
|
temp / 2
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._marketingWallet(),
|
|
temp / 2
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function myAllocation(address user) external view returns (uint256) {
|
|
return _valueUSDList[user];
|
|
}
|
|
|
|
|
|
|
|
function myAllocationEmergency(
|
|
address user
|
|
) external view returns (uint256) {
|
|
return _usdEmergency[user];
|
|
}
|
|
|
|
|
|
|
|
function myCurrentAllocation(address user) public view returns (uint256) {
|
|
if (_FUNDS_RAISED == 0) {
|
|
return 0;
|
|
}
|
|
|
|
uint256 amount;
|
|
if (_withoutCommission[user]) {
|
|
amount =
|
|
(
|
|
((_usdEmergency[user] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED)
|
|
) -
|
|
_issuedTokens[user];
|
|
} else {
|
|
amount =
|
|
((((_usdEmergency[user] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED) * _outCommission) / 100) -
|
|
_issuedTokens[user];
|
|
}
|
|
|
|
return amount;
|
|
}
|
|
|
|
|
|
|
|
function isClaimable(address user) external view returns (bool) {
|
|
return myCurrentAllocation(user) > 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract BranchOfPools_import is Initializable {
|
|
using Address for address;
|
|
using Strings for uint256;
|
|
|
|
enum State {
|
|
Pause,
|
|
Fundrasing,
|
|
WaitingToken,
|
|
TokenDistribution,
|
|
Emergency
|
|
}
|
|
State public _state = State.Pause;
|
|
|
|
|
|
event Deposit(address user, uint256 amount);
|
|
event Claim(address user);
|
|
event FundraisingOpened();
|
|
event FundraisingClosed();
|
|
event TokenEntrusted(address addrToken, uint256 amount);
|
|
event EmergencyStoped();
|
|
event FundsReturned(address user, uint256 amount);
|
|
|
|
address public _owner;
|
|
address private _root;
|
|
|
|
uint256 public _stepValue;
|
|
uint256 public _VALUE;
|
|
uint256 private _decimals;
|
|
uint256 public _outCommission;
|
|
uint256 public _preSend;
|
|
|
|
uint256 public _CURRENT_COMMISSION;
|
|
uint256 public _CURRENT_VALUE;
|
|
uint256 public _FUNDS_RAISED;
|
|
uint256 public _CURRENT_VALUE_TOKEN;
|
|
uint256 public _DISTRIBUTED_TOKEN;
|
|
uint256 public _TOKEN_COMMISSION;
|
|
|
|
mapping(address => uint256) public _valueUSDList;
|
|
mapping(address => uint256) public _usdEmergency;
|
|
mapping(address => uint256) public _issuedTokens;
|
|
mapping(address => bool) public _withoutCommission;
|
|
|
|
address[] public _listParticipants;
|
|
|
|
address public _usd;
|
|
address public _token;
|
|
address public _devUSDAddress;
|
|
|
|
address public _fundAddress;
|
|
bool private _fundLock = false;
|
|
uint256 private _fundValue;
|
|
uint256 public _fundCommission;
|
|
|
|
bool private _getCommissionFlag;
|
|
|
|
modifier onlyOwner() {
|
|
require(msg.sender == _owner, "Ownable: Only owner");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function init(
|
|
address Root,
|
|
uint256 VALUE,
|
|
uint256 Step,
|
|
address devUSDAddress,
|
|
address fundAddress,
|
|
uint256 fundCommission,
|
|
uint256 outCommission,
|
|
address tokenUSD
|
|
) external initializer {
|
|
require(Root != address(0), "The root address must not be zero.");
|
|
require(
|
|
devUSDAddress != address(0),
|
|
"The devUSDAddress must not be zero."
|
|
);
|
|
|
|
_owner = msg.sender;
|
|
_root = Root;
|
|
_usd = tokenUSD;
|
|
_decimals = 10 ** ERC20(_usd).decimals();
|
|
_VALUE = VALUE * _decimals;
|
|
_stepValue = Step * _decimals;
|
|
_devUSDAddress = devUSDAddress;
|
|
_fundAddress = fundAddress;
|
|
_fundCommission = fundCommission;
|
|
_outCommission = outCommission;
|
|
}
|
|
|
|
modifier onlyState(State state) {
|
|
require(_state == state, "STATE: It's impossible to do it now.");
|
|
_;
|
|
}
|
|
|
|
modifier onlyNotState(State state) {
|
|
require(_state != state, "STATE: It's impossible to do it now.");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function importTable(
|
|
address[] calldata usersData,
|
|
uint256[] calldata usersAmount,
|
|
bool[] calldata commissions
|
|
) external onlyState(State.Pause) onlyOwner returns (bool) {
|
|
require(
|
|
usersData.length == usersAmount.length,
|
|
"IMPORT: The number not match!"
|
|
);
|
|
|
|
for (uint256 i; i < usersData.length; i++) {
|
|
_usdEmergency[usersData[i]] += usersAmount[i];
|
|
_withoutCommission[usersData[i]] = commissions[i];
|
|
_listParticipants.push(usersData[i]);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function importFR(
|
|
uint256 fundsRaised
|
|
) external onlyState(State.Pause) onlyOwner returns (bool) {
|
|
_FUNDS_RAISED = fundsRaised;
|
|
return true;
|
|
}
|
|
|
|
function importCC(
|
|
uint256 currentCommission
|
|
) external onlyState(State.Pause) onlyOwner returns (bool) {
|
|
_CURRENT_COMMISSION = currentCommission;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
function closeImport()
|
|
external
|
|
onlyState(State.Pause)
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
_state = State.WaitingToken;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function entrustToken(
|
|
address tokenAddr
|
|
)
|
|
external
|
|
onlyOwner
|
|
onlyNotState(State.Emergency)
|
|
onlyNotState(State.Fundrasing)
|
|
onlyNotState(State.Pause)
|
|
{
|
|
require(
|
|
tokenAddr != address(0),
|
|
"ENTRUST: The tokenAddr must not be zero."
|
|
);
|
|
|
|
if (_token == address(0)) {
|
|
_token = tokenAddr;
|
|
} else {
|
|
require(
|
|
tokenAddr == _token,
|
|
"ENTRUST: The tokens have only one contract"
|
|
);
|
|
}
|
|
|
|
_state = State.TokenDistribution;
|
|
}
|
|
|
|
|
|
function claim() external onlyState(State.TokenDistribution) {
|
|
require(
|
|
_usdEmergency[tx.origin] > 0,
|
|
"CLAIM: You have no unredeemed tokens!"
|
|
);
|
|
|
|
uint256 amount;
|
|
|
|
uint256 currentTokenBalance = ERC20(_token).balanceOf(address(this));
|
|
|
|
if (_CURRENT_VALUE_TOKEN < currentTokenBalance) {
|
|
_CURRENT_VALUE_TOKEN += currentTokenBalance - _CURRENT_VALUE_TOKEN;
|
|
}
|
|
|
|
if (_withoutCommission[tx.origin]) {
|
|
amount =
|
|
(
|
|
((_usdEmergency[tx.origin] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED)
|
|
) -
|
|
_issuedTokens[tx.origin];
|
|
} else {
|
|
amount =
|
|
((((_usdEmergency[tx.origin] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED) * _outCommission) / 100) -
|
|
_issuedTokens[tx.origin];
|
|
}
|
|
|
|
_issuedTokens[tx.origin] += amount;
|
|
_DISTRIBUTED_TOKEN += amount;
|
|
_CURRENT_VALUE_TOKEN -= amount;
|
|
|
|
if (amount > 0) {
|
|
emit Claim(tx.origin);
|
|
uint256 pre_balance = ERC20(_token).balanceOf(address(this));
|
|
|
|
require(
|
|
ERC20(_token).transfer(tx.origin, amount),
|
|
"CLAIM: Transfer error"
|
|
);
|
|
|
|
require(
|
|
ERC20(_token).balanceOf(address(this)) == pre_balance - amount,
|
|
"CLAIM: Something went wrong!"
|
|
);
|
|
}
|
|
|
|
if (_fundLock == false) {
|
|
_fundLock = true;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function getCommission()
|
|
public
|
|
onlyNotState(State.Fundrasing)
|
|
onlyNotState(State.Pause)
|
|
onlyNotState(State.Emergency)
|
|
{
|
|
if (_fundLock) {
|
|
uint256 temp = 0;
|
|
uint256 value = _CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN;
|
|
for (uint256 i = 0; i < _listParticipants.length; i++) {
|
|
address user = _listParticipants[i];
|
|
if (_withoutCommission[user]) {
|
|
temp += (((_usdEmergency[user] * value) / _FUNDS_RAISED));
|
|
} else {
|
|
temp += ((((_usdEmergency[user] * value) / _FUNDS_RAISED) *
|
|
_outCommission) / 100);
|
|
}
|
|
}
|
|
|
|
uint256 tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 15) / 100;
|
|
|
|
uint256 toMarketing = ((tmp * value) / _FUNDS_RAISED) -
|
|
_issuedTokens[address(0)];
|
|
_issuedTokens[address(0)] += toMarketing;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tmp = ((_FUNDS_RAISED + _CURRENT_COMMISSION) * 2) / 100;
|
|
uint256 toTeam = ((tmp * value) / _FUNDS_RAISED) -
|
|
_issuedTokens[address(1)];
|
|
|
|
|
|
_issuedTokens[address(1)] += toTeam;
|
|
|
|
_DISTRIBUTED_TOKEN += toMarketing + toTeam;
|
|
_CURRENT_VALUE_TOKEN -= (toMarketing + toTeam);
|
|
|
|
temp =
|
|
value -
|
|
(temp + _issuedTokens[address(0)] + _issuedTokens[address(1)]) -
|
|
_issuedTokens[address(this)];
|
|
_issuedTokens[address(this)] += temp;
|
|
|
|
if (toTeam != 0) {
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._team(),
|
|
toTeam //точно?
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
|
|
if (toMarketing != 0) {
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._marketing(),
|
|
toMarketing //точно?
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
|
|
if (temp != 0) {
|
|
_DISTRIBUTED_TOKEN += temp;
|
|
_CURRENT_VALUE_TOKEN -= temp;
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root).owner(),
|
|
temp / 2
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
|
|
require(
|
|
ERC20(_token).transfer(
|
|
RootOfPools_v2(_root)._marketingWallet(),
|
|
temp / 2
|
|
),
|
|
"GET: Transfer error"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function myAllocation(address user) external view returns (uint256) {
|
|
return _valueUSDList[user];
|
|
}
|
|
|
|
|
|
|
|
function myAllocationEmergency(
|
|
address user
|
|
) external view returns (uint256) {
|
|
return _usdEmergency[user];
|
|
}
|
|
|
|
|
|
|
|
function myCurrentAllocation(address user) public view returns (uint256) {
|
|
if (_FUNDS_RAISED == 0) {
|
|
return 0;
|
|
}
|
|
|
|
uint256 amount;
|
|
if (_withoutCommission[user]) {
|
|
amount =
|
|
(
|
|
((_usdEmergency[user] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED)
|
|
) -
|
|
_issuedTokens[user];
|
|
} else {
|
|
amount =
|
|
((((_usdEmergency[user] *
|
|
(_CURRENT_VALUE_TOKEN + _DISTRIBUTED_TOKEN)) /
|
|
_FUNDS_RAISED) * _outCommission) / 100) -
|
|
_issuedTokens[user];
|
|
}
|
|
|
|
return amount;
|
|
}
|
|
|
|
|
|
|
|
function isClaimable(address user) external view returns (bool) {
|
|
return myCurrentAllocation(user) > 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract Ranking is Ownable {
|
|
struct Rank {
|
|
string Name;
|
|
string[] pNames;
|
|
uint256[] pValues;
|
|
bool isChangeable;
|
|
}
|
|
|
|
|
|
Rank[] public _ranks;
|
|
mapping(string => uint256) public _rankSequence;
|
|
uint256 _ranksHead;
|
|
|
|
|
|
mapping(address => uint256) public _rankTable;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function giveRanks(address[] memory users, string memory rank)
|
|
public
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
uint256 index = searchRank(rank);
|
|
|
|
for (uint256 i = 0; i < users.length; i++) {
|
|
_rankTable[users[i]] = index;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function giveRank(address user, string memory rank)
|
|
public
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
uint256 index = searchRank(rank);
|
|
|
|
_rankTable[user] = index;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function createRank(
|
|
string memory Name,
|
|
string[] memory pNames,
|
|
uint256[] memory pValues,
|
|
bool isChangeable
|
|
) public onlyOwner returns (bool) {
|
|
require(
|
|
pNames.length == pValues.length,
|
|
"RANK: Each parameter must have a value!"
|
|
);
|
|
|
|
Rank memory rank = Rank(Name, pNames, pValues, isChangeable);
|
|
|
|
_rankSequence[Name] = _ranksHead;
|
|
|
|
_ranks.push(rank);
|
|
_ranksHead++;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function changeRank(
|
|
string memory Name,
|
|
string[] memory pNames,
|
|
uint256[] memory pValues,
|
|
bool isChangeable
|
|
) public onlyOwner returns (bool) {
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
require(
|
|
pNames.length == pValues.length,
|
|
"RANK: Each parameter must have a value!"
|
|
);
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
|
|
_ranks[index] = Rank(Name, pNames, pValues, isChangeable);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function changeRankParNames(string memory Name, string[] memory pNames)
|
|
public
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
require(
|
|
pNames.length == _ranks[index].pNames.length,
|
|
"RANK: Each parameter must have a value!"
|
|
);
|
|
|
|
_ranks[index].pNames = pNames;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function changeRankParValues(string memory Name, uint256[] memory pValues)
|
|
public
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
require(
|
|
pValues.length == _ranks[index].pValues.length,
|
|
"RANK: Each parameter must have a value!"
|
|
);
|
|
|
|
_ranks[index].pValues = pValues;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function lockRank(string memory Name) public onlyOwner returns (bool) {
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
|
|
_ranks[index].isChangeable = false;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renameRankParam(
|
|
string memory Name,
|
|
string memory NewParName,
|
|
uint256 NumberPar
|
|
) public onlyOwner returns (bool) {
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
require(
|
|
_ranks[index].pNames.length > NumberPar,
|
|
"RANK: There is no such parameter!"
|
|
);
|
|
|
|
_ranks[index].pNames[NumberPar] = NewParName;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function changeRankParam(
|
|
string memory Name,
|
|
uint32 NewValue,
|
|
uint256 NumberPar
|
|
) public onlyOwner returns (bool) {
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
require(
|
|
_ranks[index].pNames.length > NumberPar,
|
|
"RANK: There is no such parameter!"
|
|
);
|
|
|
|
_ranks[index].pValues[NumberPar] = NewValue;
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renameRank(string memory Name, string memory NewName)
|
|
public
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
|
|
uint256 index = searchRank(Name);
|
|
require(
|
|
_ranks[index].isChangeable,
|
|
"RANK: This rank cannot be changed!"
|
|
);
|
|
|
|
_ranks[index].Name = NewName;
|
|
|
|
_rankSequence[Name] = 0;
|
|
_rankSequence[NewName] = index;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function searchRank(string memory Name) internal view returns (uint256) {
|
|
uint256 temp = _rankSequence[Name];
|
|
if (temp < _ranksHead) {
|
|
return temp;
|
|
}
|
|
|
|
revert("RANK: There is no such rank!");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function showRanks() public view returns (Rank[] memory) {
|
|
require(_ranks.length > 0, "RANK: There are no ranks.");
|
|
return _ranks;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function showRank(string memory Name)
|
|
public
|
|
view
|
|
returns (
|
|
string memory,
|
|
string[] memory,
|
|
uint256[] memory,
|
|
bool
|
|
)
|
|
{
|
|
return (
|
|
_ranks[searchRank(Name)].Name,
|
|
_ranks[searchRank(Name)].pNames,
|
|
_ranks[searchRank(Name)].pValues,
|
|
_ranks[searchRank(Name)].isChangeable
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function showRankOfNumber(uint256 Number)
|
|
public
|
|
view
|
|
returns (
|
|
string memory,
|
|
string[] memory,
|
|
uint256[] memory,
|
|
bool
|
|
)
|
|
{
|
|
require(_ranks.length > Number, "RANK: There are no ranks.");
|
|
return (
|
|
_ranks[Number].Name,
|
|
_ranks[Number].pNames,
|
|
_ranks[Number].pValues,
|
|
_ranks[Number].isChangeable
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getRank(address user)
|
|
public
|
|
view
|
|
returns (
|
|
string memory,
|
|
string[] memory,
|
|
uint256[] memory,
|
|
bool
|
|
)
|
|
{
|
|
return (
|
|
_ranks[_rankTable[user]].Name,
|
|
_ranks[_rankTable[user]].pNames,
|
|
_ranks[_rankTable[user]].pValues,
|
|
_ranks[_rankTable[user]].isChangeable
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getNameParRank(string memory Name)
|
|
public
|
|
view
|
|
returns (string[] memory)
|
|
{
|
|
return _ranks[searchRank(Name)].pNames;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getParRank(string memory Name)
|
|
public
|
|
view
|
|
returns (uint256[] memory)
|
|
{
|
|
return _ranks[searchRank(Name)].pValues;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getParRankOfUser(address user)
|
|
public
|
|
view
|
|
returns (uint256[] memory)
|
|
{
|
|
return _ranks[_rankTable[user]].pValues;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
contract Marketing is Ownable {
|
|
struct User {
|
|
address userAdr;
|
|
uint256 amount;
|
|
}
|
|
|
|
struct Project {
|
|
User[] users;
|
|
mapping(address => uint256) withdrawn;
|
|
uint256 totalWithdrawn;
|
|
uint256 currentTotalValue;
|
|
uint256 totalValue;
|
|
address token;
|
|
|
|
bool isClosed;
|
|
uint256 closingTimeStamp;
|
|
}
|
|
|
|
address globalAdmin;
|
|
|
|
mapping(string => Project) Projects;
|
|
string[] public listProjects;
|
|
|
|
constructor(address _globalAdmin) {
|
|
globalAdmin = _globalAdmin;
|
|
}
|
|
|
|
function findUser(
|
|
string calldata _name,
|
|
address _user
|
|
) internal view returns (User memory) {
|
|
Project storage project = Projects[_name];
|
|
User memory user;
|
|
|
|
for (uint256 i = 0; i < project.users.length; i++) {
|
|
if (project.users[i].userAdr == _user) {
|
|
user = project.users[i];
|
|
return user;
|
|
}
|
|
}
|
|
|
|
return user;
|
|
}
|
|
|
|
function getProject(
|
|
string calldata _name
|
|
)
|
|
public
|
|
view
|
|
returns (
|
|
uint256 totalWithdrawn,
|
|
uint256 currentTotalValue,
|
|
uint256 totalValue,
|
|
address token,
|
|
bool isClosed,
|
|
uint256 closingTimeStamp
|
|
)
|
|
{
|
|
return (
|
|
Projects[_name].totalWithdrawn,
|
|
Projects[_name].currentTotalValue,
|
|
Projects[_name].totalValue,
|
|
Projects[_name].token,
|
|
Projects[_name].isClosed,
|
|
Projects[_name].closingTimeStamp
|
|
);
|
|
}
|
|
|
|
function getUserAmount(
|
|
string calldata _name,
|
|
address _user
|
|
) public view returns (uint256) {
|
|
return findUser(_name, _user).amount;
|
|
}
|
|
|
|
function getTotalValue(
|
|
string calldata _name
|
|
) public view returns (uint256) {
|
|
return Projects[_name].totalValue;
|
|
}
|
|
|
|
function getToken(string calldata _name) public view returns (address) {
|
|
return Projects[_name].token;
|
|
}
|
|
|
|
function addProject(
|
|
string calldata _name,
|
|
uint256 _totalValue,
|
|
uint256 _closingTimeStamp,
|
|
address _token
|
|
) public onlyOwner {
|
|
require(Projects[_name].users.length == 0, "Such a project exists");
|
|
|
|
Projects[_name].totalValue = _totalValue;
|
|
Projects[_name].closingTimeStamp = _closingTimeStamp;
|
|
Projects[_name].isClosed = false;
|
|
Projects[_name].token = _token;
|
|
|
|
listProjects.push(_name);
|
|
}
|
|
|
|
function setProjectAmounts(
|
|
string calldata _name,
|
|
address[] calldata _users,
|
|
uint256[] calldata _amounts
|
|
) public onlyOwner {
|
|
require(!Projects[_name].isClosed, "This project may not be modified");
|
|
require(_users.length == _amounts.length, "Array length violation");
|
|
|
|
for (uint256 i = 0; i < _users.length; i++) {
|
|
User memory user;
|
|
user.userAdr = _users[i];
|
|
user.amount = _amounts[i];
|
|
|
|
Projects[_name].users.push(user);
|
|
}
|
|
}
|
|
|
|
function closeProject(string calldata _name) public onlyOwner {
|
|
Project storage project = Projects[_name];
|
|
uint256 total = 0;
|
|
for (uint256 i = 0; i < project.users.length; i++) {
|
|
total += project.users[i].amount;
|
|
}
|
|
|
|
require(
|
|
project.totalValue == total,
|
|
"The import data do not match the specified"
|
|
);
|
|
|
|
Projects[_name].isClosed = true;
|
|
}
|
|
|
|
function claim(string calldata _name) public {
|
|
Project storage project = Projects[_name];
|
|
require(project.users.length != 0, "Unknown project");
|
|
User memory user = findUser(_name, msg.sender);
|
|
if (user.userAdr == address(0)) {
|
|
return;
|
|
}
|
|
|
|
uint256 amount = user.amount;
|
|
require(amount != 0, "You are not a participant");
|
|
|
|
uint256 totalValue = project.totalValue;
|
|
uint256 currentValue = ERC20(project.token).balanceOf(address(this));
|
|
|
|
if (currentValue + project.totalWithdrawn > project.currentTotalValue) {
|
|
Projects[_name].currentTotalValue +=
|
|
(currentValue + project.totalWithdrawn) -
|
|
project.currentTotalValue;
|
|
}
|
|
|
|
uint256 toSend = ((Projects[_name].currentTotalValue * amount) /
|
|
totalValue) - project.withdrawn[user.userAdr];
|
|
|
|
Projects[_name].withdrawn[user.userAdr] += toSend;
|
|
Projects[_name].totalWithdrawn += toSend;
|
|
|
|
require(
|
|
ERC20(project.token).transfer(msg.sender, toSend),
|
|
"Unknown sending error"
|
|
);
|
|
}
|
|
|
|
function withdrawFunds() public onlyOwner {
|
|
for (uint256 i = 0; i < listProjects.length; i++) {
|
|
if (Projects[listProjects[i]].closingTimeStamp < block.timestamp) {
|
|
uint256 balance = ERC20(Projects[listProjects[i]].token)
|
|
.balanceOf(address(this));
|
|
|
|
ERC20(Projects[listProjects[i]].token).transfer(
|
|
globalAdmin,
|
|
balance
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
contract Team is Ownable {
|
|
struct Member {
|
|
address[] addresses;
|
|
uint256 usefulness;
|
|
bool isLock;
|
|
}
|
|
|
|
struct Project {
|
|
mapping(address => uint256) withdrawn;
|
|
uint256 currentTotalValue;
|
|
uint256 currentBalance;
|
|
}
|
|
|
|
mapping(string => Member) members;
|
|
mapping(address => Project) projects;
|
|
string[] listMembers;
|
|
|
|
function getMember(
|
|
string calldata _name
|
|
) public view returns (Member memory) {
|
|
return members[_name];
|
|
}
|
|
|
|
|
|
function addMember(
|
|
string calldata _name,
|
|
address _memb,
|
|
uint256 _usefulness,
|
|
bool _isLock
|
|
) public onlyOwner {
|
|
require(!members[_name].isLock);
|
|
members[_name].addresses.push(_memb);
|
|
members[_name].usefulness = _usefulness;
|
|
members[_name].isLock = _isLock;
|
|
|
|
listMembers.push(_name);
|
|
}
|
|
|
|
function changeMember(
|
|
string calldata _name,
|
|
address _memb,
|
|
uint256 _usefulness,
|
|
bool _isLock
|
|
) public onlyOwner {
|
|
require(members[_name].addresses.length != 0);
|
|
require(!members[_name].isLock);
|
|
|
|
members[_name].addresses.push(_memb);
|
|
members[_name].usefulness = _usefulness;
|
|
members[_name].isLock = _isLock;
|
|
}
|
|
|
|
function delMember(string memory _name) public onlyOwner {
|
|
require(members[_name].addresses.length != 0);
|
|
require(!members[_name].isLock);
|
|
|
|
for (uint256 i = 0; i < members[_name].addresses.length; i++) {
|
|
members[_name].addresses.pop();
|
|
}
|
|
members[_name].usefulness = 0;
|
|
|
|
for (uint256 i = 0; i < listMembers.length; i++) {
|
|
if (
|
|
keccak256(abi.encodePacked(listMembers[i])) ==
|
|
keccak256(abi.encodePacked(_name))
|
|
) {
|
|
listMembers[i] = listMembers[listMembers.length - 1];
|
|
listMembers.pop();
|
|
}
|
|
}
|
|
}
|
|
|
|
function addAddress(string calldata _name, address _addr) public {
|
|
for (uint256 j = 0; j < members[_name].addresses.length; j++) {
|
|
if (msg.sender == members[_name].addresses[j]) {
|
|
members[_name].addresses.push(_addr);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function claim(string calldata _name, address _token) public {
|
|
for (uint256 j = 0; j < members[_name].addresses.length; j++) {
|
|
if (msg.sender == members[_name].addresses[j]) {
|
|
|
|
uint256 balance = ERC20(_token).balanceOf(address(this));
|
|
if (balance > 0) {
|
|
if (balance > projects[_token].currentBalance) {
|
|
projects[_token].currentTotalValue +=
|
|
balance -
|
|
projects[_token].currentBalance;
|
|
projects[_token].currentBalance = balance;
|
|
}
|
|
|
|
uint256 toSend = (projects[_token].currentTotalValue *
|
|
members[_name].usefulness) / 100;
|
|
|
|
|
|
for (
|
|
uint256 i = 0;
|
|
i < members[_name].addresses.length;
|
|
i++
|
|
) {
|
|
toSend -= projects[_token].withdrawn[
|
|
members[_name].addresses[i]
|
|
];
|
|
}
|
|
|
|
if (toSend != 0) {
|
|
projects[_token].withdrawn[msg.sender] += toSend;
|
|
projects[_token].currentBalance -= toSend;
|
|
require(
|
|
ERC20(_token).transfer(msg.sender, toSend),
|
|
"Unknown sending error"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |