/**
*Submitted for verification at Etherscan.io on 2021-07-23
*/
// SPDX-License-Identifier: MIT
/*
* $$$$$$_$$__$$__$$$$__$$$$$$
* ____$$_$$__$$_$$_______$$
* ____$$_$$__$$__$$$$____$$
* $$__$$_$$__$$_____$$___$$
* _$$$$___$$$$___$$$$____$$
*
* $$__$$_$$$$$$_$$$$$__$$_____$$$$$
* _$$$$____$$___$$_____$$_____$$__$$
* __$$_____$$___$$$$___$$_____$$__$$
* __$$_____$$___$$_____$$_____$$__$$
* __$$___$$$$$$_$$$$$__$$$$$$_$$$$$
*
* $$___$_$$$$$$_$$$$$$_$$__$$
* $$___$___$$_____$$___$$__$$
* $$_$_$___$$_____$$___$$$$$$
* $$$$$$___$$_____$$___$$__$$
* _$$_$$_$$$$$$___$$___$$__$$
*
* $$__$$_$$$$$__$$
* _$$$$__$$_____$$
* __$$___$$$$___$$
* __$$___$$_____$$
* __$$___$$$$$__$$$$$$
*/
pragma solidity ^0.8.0;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
// getRoundData and latestRoundData should both raise "No data present"
// if they do not have data to report, instead of returning unset values
// which could be misinterpreted as actual reported values.
function getRoundData(uint80 _roundId)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}
contract TokenSale is Ownable, ReentrancyGuard {
using SafeMath for uint256;
address public token;
address public oracle;
uint256 public threshold; // with 1e18
uint256 public initialPrice; // with 1e18
uint256 public tokenPriceUSD; // with 1e18
uint256 public weiRaised; // with 1e18
uint256 public notClaimedTokens; // with 1e18
uint256 public presaleStartsAt;
uint256 public presaleEndsAt;
uint256 public claimStartsAt;
uint256 public maxTokenPriceUSD;
mapping(address => uint256) public contributionInWei;
mapping(address => uint256) public contributionInUSD;
event Withdraw(address indexed owner, uint256 indexed amount);
event BuyTokens(address indexed buyer, uint256 indexed tokens, uint256 indexed pricePerToken, uint256 buyingPower);
event PreBuyTokens(address indexed buyer, uint256 indexed tokens, uint256 indexed pricePerToken, uint256 buyingPower);
event ClaimedTokens(address indexed buyer, uint256 indexed tokens);
constructor(
address _token,
address _oracle,
uint256 _initialPrice,
uint256 _threshold,
uint256 _presaleStartsAt,
uint256 _presaleEndsAt,
uint256 _claimStartsAt
) {
require(_token != address(0));
require(_oracle != address(0));
require(_initialPrice > 0, "Price should be bigger than 0");
require(_threshold > 0, "Threshold should be bigger than 0");
require(_presaleStartsAt > block.timestamp, "Presale should start now or in the future");
require(_presaleStartsAt < _presaleEndsAt, "Presale cannot start after end date");
require(_presaleEndsAt < _claimStartsAt, "Presale end date cannot be after claim date");
token = _token;
oracle = _oracle;
threshold = _threshold * 1e18;
initialPrice = _initialPrice;
maxTokenPriceUSD = initialPrice.mul(2**4);
tokenPriceUSD = _initialPrice;
presaleStartsAt = _presaleStartsAt;
presaleEndsAt = _presaleEndsAt;
claimStartsAt = _claimStartsAt;
}
modifier isPresale {
require(block.timestamp >= presaleStartsAt && block.timestamp <= presaleEndsAt, "It's not presale period");
_;
}
modifier hasTokensToClaim {
require(contributionInWei[msg.sender] > 0, "User has NO tokens");
_;
}
modifier claimStart {
require(block.timestamp >= claimStartsAt, "Claim period has not started yet");
_;
}
receive() external payable {
buyTokens();
}
function claimTokens() public claimStart hasTokensToClaim nonReentrant{
uint256 userWeis = contributionInWei[msg.sender];
contributionInWei[msg.sender] = 0;
uint256 _priceInWeiPerToken = getPriceInWeiPerToken(tokenPriceUSD);
uint256 usersTokens = (userWeis.mul(1e18)).div(_priceInWeiPerToken);
if (notClaimedTokens >= usersTokens) {
notClaimedTokens = notClaimedTokens.sub(usersTokens);
} else {
notClaimedTokens = 0;
}
IERC20(token).transfer(msg.sender, usersTokens);
emit ClaimedTokens(msg.sender, usersTokens);
}
function withdraw() external onlyOwner nonReentrant {
uint256 amount = address(this).balance;
address payable ownerPayable = payable(msg.sender);
ownerPayable.transfer(amount);
emit Withdraw(msg.sender, amount);
}
function withdrawTokens() external onlyOwner claimStart nonReentrant {
uint256 unsoldTokens = IERC20(token).balanceOf(address(this));
IERC20(token).transfer(msg.sender, unsoldTokens.sub(notClaimedTokens));
}
function buyTokens() public payable isPresale nonReentrant {
uint256 _priceInWeiPerToken = getPriceInWeiPerToken(tokenPriceUSD);
uint256 totalValue = msg.value;
uint256 tokens = totalValue.mul(1e18).div(_priceInWeiPerToken);
uint256 tokensByMaxPrice = tokens.div(maxTokenPriceUSD.div(tokenPriceUSD));
require(tokens > 0, "Insufficient funds");
uint256 buyLimitTokens = remainingTokensByMaxPrice();
require(buyLimitTokens > tokensByMaxPrice, "There is no more tokens to sell");
uint256 tradeAmountInUSD = tokens.mul(tokenPriceUSD).div(1e36); // in USD
contributionInWei[msg.sender] = contributionInWei[msg.sender].add(totalValue);
contributionInUSD[msg.sender] = contributionInUSD[msg.sender].add(tradeAmountInUSD);
weiRaised = weiRaised.add(totalValue);
notClaimedTokens = notClaimedTokens.add(tokens);
updateTokenPrice(_priceInWeiPerToken);
emit PreBuyTokens(msg.sender, tokens, _priceInWeiPerToken, totalValue);
}
function remainingTokensByMaxPrice() internal view returns(uint256) {
uint256 _priceInWeiPerToken = getPriceInWeiPerToken(maxTokenPriceUSD);
uint256 purchesedTokensByMaxPrice = weiRaised.mul(1e18).div(_priceInWeiPerToken);
return threshold.sub(purchesedTokensByMaxPrice);
}
function remainingTokensByCurrentPrice() public view returns(uint256) {
uint256 _priceInWeiPerToken = getPriceInWeiPerToken(tokenPriceUSD);
uint256 purchesedTokens = weiRaised.mul(1e18).div(_priceInWeiPerToken);
return threshold.sub(purchesedTokens);
}
function updateTokenPrice(uint256 _priceInWeiPerToken) internal {
uint256 purchesedTokens = weiRaised.mul(1e18).div(_priceInWeiPerToken);
while (purchesedTokens > threshold && tokenPriceUSD.div(initialPrice) < 16) {
tokenPriceUSD = tokenPriceUSD.mul(2);
notClaimedTokens = notClaimedTokens.div(2);
purchesedTokens = weiRaised.mul(1e18).div(getPriceInWeiPerToken(tokenPriceUSD));
}
}
function balanceOf(address adr) public view returns(uint256) {
uint256 userWeis = contributionInWei[adr];
uint256 _priceInWeiPerToken = getPriceInWeiPerToken(tokenPriceUSD);
uint256 tokens = userWeis.mul(1e18).div(_priceInWeiPerToken);
return tokens;
}
function getPriceInWeiPerToken(uint256 _tokenPriceUSD) public view returns(uint256) {
int oraclePriceTemp = getLatestPriceETHUSD(); // with 10**getDecimalsOracle()
require(oraclePriceTemp > 0, "Invalid price");
return _tokenPriceUSD.mul(10**getDecimalsOracle()).div(uint256(oraclePriceTemp)); // result with 1e18
}
function getPriceInWeiPerToken() public view returns(uint256) {
return getPriceInWeiPerToken(tokenPriceUSD);
}
function getLatestPriceETHUSD() public view returns (int) {
(
uint80 roundID,
int price,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = AggregatorV3Interface(oracle).latestRoundData();
return price;
}
function getDecimalsOracle() public view returns (uint8) {
(
uint8 decimals
) = AggregatorV3Interface(oracle).decimals();
return decimals;
}
}
{
"compilationTarget": {
"TokenSale.sol": "TokenSale"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"uint256","name":"_initialPrice","type":"uint256"},{"internalType":"uint256","name":"_threshold","type":"uint256"},{"internalType":"uint256","name":"_presaleStartsAt","type":"uint256"},{"internalType":"uint256","name":"_presaleEndsAt","type":"uint256"},{"internalType":"uint256","name":"_claimStartsAt","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyingPower","type":"uint256"}],"name":"BuyTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyingPower","type":"uint256"}],"name":"PreBuyTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributionInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributionInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDecimalsOracle","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestPriceETHUSD","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceInWeiPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPriceUSD","type":"uint256"}],"name":"getPriceInWeiPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPriceUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notClaimedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingTokensByCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weiRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]