文件 1 的 1:Elevate.sol
pragma solidity 0.8.16;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this;
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, 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 sender, address recipient, uint256 amount) external returns (bool);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract ERC20 is Context, IERC20 {
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 recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
}
function _createInitialSupply(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, 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);
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() external virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
function addLiquidityETH(address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function addLiquidity(address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline) external returns (uint amountA, uint amountB, uint liquidity);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}
interface IDexFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
contract TokenHandler is Ownable {
function sendTokenToOwner(address token) external onlyOwner {
if(IERC20(token).balanceOf(address(this)) > 0){
IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this)));
}
}
}
contract Elevate is ERC20, Ownable {
uint256 public maxBuyAmount;
uint256 public maxSellAmount;
IDexRouter public immutable dexRouter;
address public immutable lpPair;
address public immutable lpPairEth;
bool public lpToEth;
IERC20 public immutable STABLECOIN;
bool private swapping;
uint256 public swapTokensAtAmount;
TokenHandler public tokenHandler;
address public impactAddress;
address public crfAddress;
address public operationsAddress;
address public liquidityAddress;
address public futureOwnerAddress;
address public treasuryAddress;
uint256 public tradingActiveBlock = 0;
mapping (address => bool) public restrictedWallets;
uint256 public blockForPenaltyEnd;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
uint256 public buyTotalFees;
uint256 public buyLiquidityFee;
uint256 public buyImpactFee;
uint256 public buyCRFFee;
uint256 public buyOperationsFee;
uint256 public buyTreasuryFee;
uint256 public sellTotalFees;
uint256 public sellImpactFee;
uint256 public sellLiquidityFee;
uint256 public sellCRFFee;
uint256 public sellOperationsFee;
uint256 public sellTreasuryFee;
uint256 constant FEE_DIVISOR = 10000;
uint256 public tokensForImpact;
uint256 public tokensForLiquidity;
uint256 public tokensForCRF;
uint256 public tokensForOperations;
uint256 public tokensForTreasury;
mapping (address => bool) private _isExcludedFromFees;
mapping (address => bool) public _isExcludedMaxTransactionAmount;
mapping (address => bool) public automatedMarketMakerPairs;
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event EnabledTrading();
event RemovedLimits();
event ExcludeFromFees(address indexed account, bool isExcluded);
event UpdatedMaxBuyAmount(uint256 newAmount);
event UpdatedMaxSellAmount(uint256 newAmount);
event UpdatedMaxWalletAmount(uint256 newAmount);
event UpdatedBuyFee(uint256 newAmount);
event UpdatedSellFee(uint256 newAmount);
event UpdatedImpactAddress(address indexed newWallet);
event UpdatedLiquidityAddress(address indexed newWallet);
event UpdatedCRFAddress(address indexed newWallet);
event UpdatedOperationsAddress(address indexed newWallet);
event UpdatedTreasuryAddress(address indexed newWallet);
event MaxTransactionExclusion(address _address, bool excluded);
event OwnerForcedSwapBack(uint256 timestamp);
event CaughtEarlyBuyer(address sniper);
event TransferForeignToken(address token, uint256 amount);
constructor(bool _lpIsEth) ERC20("Elevate", "ELEV") {
lpToEth = _lpIsEth;
address stablecoinAddress;
address _dexRouter;
if(block.chainid == 1){
stablecoinAddress = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
_dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
} else if(block.chainid == 4){
stablecoinAddress = 0xE7d541c18D6aDb863F4C570065c57b75a53a64d3;
_dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
} else if(block.chainid == 5){
stablecoinAddress = 0x2f3A40A3db8a7e3D09B0adfEfbCe4f6F81927557;
_dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
} else if(block.chainid == 56){
stablecoinAddress = 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56;
_dexRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E;
} else if(block.chainid == 97){
stablecoinAddress = 0x78867BbEeF44f2326bF8DDd1941a4439382EF2A7;
_dexRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1;
} else {
revert("Chain not configured");
}
STABLECOIN = IERC20(stablecoinAddress);
require(STABLECOIN.decimals() > 0 , "Incorrect liquidity token");
address newOwner = 0x3216Fe41ee383973BcFb05e5EBbB0244d92A3b06;
dexRouter = IDexRouter(_dexRouter);
lpPair = IDexFactory(dexRouter.factory()).createPair(address(this), address(STABLECOIN));
setAutomatedMarketMakerPair(address(lpPair), true);
lpPairEth = IDexFactory(dexRouter.factory()).createPair(address(this), dexRouter.WETH());
setAutomatedMarketMakerPair(address(lpPairEth), true);
uint256 totalSupply = 5 * 1e9 * 1e18;
maxBuyAmount = totalSupply * 25 / 10000;
maxSellAmount = totalSupply * 25 / 10000;
swapTokensAtAmount = totalSupply * 25 / 100000;
tokenHandler = new TokenHandler();
buyImpactFee = 100;
buyLiquidityFee = 100;
buyCRFFee = 100;
buyOperationsFee = 100;
buyTreasuryFee = 100;
buyTotalFees = buyImpactFee + buyLiquidityFee + buyCRFFee + buyOperationsFee + buyTreasuryFee;
sellImpactFee = 100;
sellLiquidityFee = 100;
sellCRFFee = 100;
sellOperationsFee = 100;
sellTreasuryFee = 100;
sellTotalFees = sellImpactFee + sellLiquidityFee + sellCRFFee + sellOperationsFee + sellTreasuryFee;
impactAddress = address(newOwner);
liquidityAddress = address(newOwner);
futureOwnerAddress = address(newOwner);
operationsAddress = address(newOwner);
crfAddress = address(newOwner);
treasuryAddress = address(newOwner);
_excludeFromMaxTransaction(newOwner, true);
_excludeFromMaxTransaction(futureOwnerAddress, true);
_excludeFromMaxTransaction(address(this), true);
_excludeFromMaxTransaction(address(0xdead), true);
_excludeFromMaxTransaction(address(impactAddress), true);
_excludeFromMaxTransaction(address(liquidityAddress), true);
_excludeFromMaxTransaction(address(operationsAddress), true);
_excludeFromMaxTransaction(address(crfAddress), true);
_excludeFromMaxTransaction(address(dexRouter), true);
excludeFromFees(newOwner, true);
excludeFromFees(futureOwnerAddress, true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromFees(address(impactAddress), true);
excludeFromFees(address(liquidityAddress), true);
excludeFromFees(address(operationsAddress), true);
excludeFromFees(address(crfAddress), true);
excludeFromFees(address(dexRouter), true);
_createInitialSupply(address(newOwner), totalSupply);
transferOwnership(newOwner);
}
receive() external payable {}
function updateLpToEth(bool _lpToEth) external onlyOwner {
if(_lpToEth){
require(balanceOf(address(lpPairEth))>0, "Must have tokens in ETH pair");
} else {
require(balanceOf(address(lpPair))>0, "Must have tokens in STABLECOIN pair");
}
lpToEth = _lpToEth;
}
function enableTrading(uint256 blocksForPenalty) external onlyOwner {
require(!tradingActive, "Trading is already active");
require(blocksForPenalty <= 10, "Penalty blocks too high");
tradingActive = true;
swapEnabled = true;
tradingActiveBlock = block.number;
blockForPenaltyEnd = tradingActiveBlock + blocksForPenalty;
emit EnabledTrading();
}
function pauseTrading() external onlyOwner {
require(tradingActiveBlock > 0, "Cannot pause until token has launched");
require(tradingActive, "Trading is already paused");
tradingActive = false;
}
function unpauseTrading() external onlyOwner {
require(tradingActiveBlock > 0, "Cannot unpause until token has launched");
require(!tradingActive, "Trading is already unpaused");
tradingActive = true;
}
function manageRestrictedWallets(address[] calldata wallets, bool restricted) external onlyOwner {
for(uint256 i = 0; i < wallets.length; i++){
restrictedWallets[wallets[i]] = restricted;
}
}
function removeLimits() external onlyOwner {
limitsInEffect = false;
maxBuyAmount = totalSupply();
maxSellAmount = totalSupply();
emit RemovedLimits();
}
function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
require(newNum >= (totalSupply() * 1 / 1000)/1e18, "max sell too high");
maxBuyAmount = newNum * (10**18);
emit UpdatedMaxBuyAmount(maxBuyAmount);
}
function updateMaxSellAmount(uint256 newNum) external onlyOwner {
require(newNum >= (totalSupply() * 1 / 1000)/1e18, "max sell too low");
maxSellAmount = newNum * (10**18);
emit UpdatedMaxSellAmount(maxSellAmount);
}
function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
require(newAmount >= totalSupply() * 1 / 1000000, "Swap amount too low");
require(newAmount <= totalSupply() * 1 / 1000, "Swap amount too high");
swapTokensAtAmount = newAmount;
}
function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
require(_token != address(0), "_token address cannot be 0");
require((_token != address(this) && _token != address(lpPair)), "Can't withdraw native tokens");
uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
_sent = IERC20(_token).transfer(_to, _contractBalance);
emit TransferForeignToken(_token, _contractBalance);
}
function withdrawStuckETH() external onlyOwner {
bool success;
(success,) = address(msg.sender).call{value: address(this).balance}("");
}
function setImpactAddress(address _impactAddress) external onlyOwner {
require(_impactAddress != address(0), "address cannot be 0");
impactAddress = payable(_impactAddress);
emit UpdatedImpactAddress(_impactAddress);
}
function setCRFAddress(address _crfAddress) external onlyOwner {
require(_crfAddress != address(0), "address cannot be 0");
crfAddress = payable(_crfAddress);
emit UpdatedCRFAddress(_crfAddress);
}
function setLiquidityAddress(address _liquidityAddress) external onlyOwner {
require(_liquidityAddress != address(0), "address cannot be 0");
liquidityAddress = payable(_liquidityAddress);
emit UpdatedLiquidityAddress(_liquidityAddress);
}
function setOperationsAddress(address _operationsAddress) external onlyOwner {
require(_operationsAddress != address(0), "address cannot be 0");
operationsAddress = payable(_operationsAddress);
emit UpdatedOperationsAddress(_operationsAddress);
}
function setTreasuryAddress(address _treasuryAddress) external onlyOwner {
require(_treasuryAddress != address(0), "address cannot be 0");
treasuryAddress = payable(_treasuryAddress);
emit UpdatedTreasuryAddress(_treasuryAddress);
}
function forceSwapBack(bool inEth) external onlyOwner {
require(balanceOf(address(this)) >= swapTokensAtAmount, "Can only swap when token amount is at or higher than restriction");
swapping = true;
if(inEth){
swapBackEth();
} else {
swapBack();
}
swapping = false;
emit OwnerForcedSwapBack(block.timestamp);
}
function airdropToWallets(address[] memory wallets, uint256[] memory amountsInTokens) external onlyOwner {
require(wallets.length == amountsInTokens.length, "arrays must be the same length");
require(wallets.length < 600, "Can only airdrop 600 wallets per txn due to gas limits");
for(uint256 i = 0; i < wallets.length; i++){
address wallet = wallets[i];
uint256 amount = amountsInTokens[i];
super._transfer(msg.sender, wallet, amount);
}
}
function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
if(!isEx){
require(updAds != lpPair, "Cannot remove uniswap pair from max txn");
}
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != lpPair || value, "The pair cannot be removed from automatedMarketMakerPairs");
automatedMarketMakerPairs[pair] = value;
_excludeFromMaxTransaction(pair, value);
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateBuyFees(uint256 _impactFee, uint256 _liquidityFee, uint256 _crfFee, uint256 _operationsFee, uint256 _treasuryFee) external onlyOwner {
buyImpactFee = _impactFee;
buyLiquidityFee = _liquidityFee;
buyCRFFee = _crfFee;
buyOperationsFee = _operationsFee;
buyTreasuryFee = _treasuryFee;
buyTotalFees = buyImpactFee + buyLiquidityFee + buyCRFFee + buyOperationsFee + buyTreasuryFee;
require(buyTotalFees <= 1000, "Must keep fees at 10% or less");
emit UpdatedBuyFee(buyTotalFees);
}
function updateSellFees(uint256 _impactFee, uint256 _liquidityFee, uint256 _crfFee, uint256 _operationsFee, uint256 _treasuryFee) external onlyOwner {
sellImpactFee = _impactFee;
sellLiquidityFee = _liquidityFee;
sellCRFFee = _crfFee;
sellOperationsFee = _operationsFee;
sellTreasuryFee = _treasuryFee;
sellTotalFees = sellImpactFee + sellLiquidityFee + sellCRFFee + sellOperationsFee + sellTreasuryFee;
require(sellTotalFees <= 1000, "Must keep fees at 10% or less");
emit UpdatedSellFee(sellTotalFees);
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function _transfer(address from, address to, uint256 amount) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if(amount == 0){
super._transfer(from, to, 0);
return;
}
if(!tradingActive){
require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
}
if(!earlyBuyPenaltyInEffect() && blockForPenaltyEnd > 0){
require(!restrictedWallets[from] || to == owner() || to == address(0xdead), "Bots cannot transfer tokens in or out except to owner or dead address.");
}
if(limitsInEffect){
if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
}
else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if(canSwap && swapEnabled && !swapping && automatedMarketMakerPairs[to]) {
swapping = true;
if(lpToEth){
swapBackEth();
} else {
swapBack();
}
swapping = false;
}
bool takeFee = true;
if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
if(takeFee){
if(earlyBuyPenaltyInEffect() && automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to] && buyTotalFees > 0){
if(!restrictedWallets[to]){
restrictedWallets[to] = true;
}
fees = amount * buyTotalFees / FEE_DIVISOR;
tokensForImpact += fees * buyImpactFee / buyTotalFees;
tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
tokensForCRF += fees * buyCRFFee / buyTotalFees;
tokensForOperations += fees * buyOperationsFee / buyTotalFees;
tokensForTreasury += fees * buyTreasuryFee / buyTotalFees;
}
else if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
fees = amount * sellTotalFees / FEE_DIVISOR;
tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
tokensForImpact += fees * sellImpactFee / sellTotalFees;
tokensForCRF += fees * sellCRFFee / sellTotalFees;
tokensForOperations += fees * sellOperationsFee / sellTotalFees;
tokensForTreasury += fees * sellTreasuryFee / sellTotalFees;
}
else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount * buyTotalFees / FEE_DIVISOR;
tokensForImpact += fees * buyImpactFee / buyTotalFees;
tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
tokensForCRF += fees * buyCRFFee / buyTotalFees;
tokensForOperations += fees * buyOperationsFee / buyTotalFees;
tokensForTreasury += fees * buyTreasuryFee / buyTotalFees;
}
if(fees > 0){
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForSTABLECOIN(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = address(STABLECOIN);
_approve(address(this), address(dexRouter), tokenAmount);
dexRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(tokenHandler), block.timestamp);
}
function addLiquidity(uint256 tokenAmount, uint256 stablecoinAmount) private {
_approve(address(this), address(dexRouter), tokenAmount);
STABLECOIN.approve(address(dexRouter), stablecoinAmount);
dexRouter.addLiquidity(address(this), address(STABLECOIN), tokenAmount, stablecoinAmount, 0, 0, address(liquidityAddress), block.timestamp);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForImpact + tokensForCRF + tokensForOperations + tokensForTreasury;
if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
if(contractBalance > swapTokensAtAmount * 10){
contractBalance = swapTokensAtAmount * 10;
}
uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
swapTokensForSTABLECOIN(contractBalance - liquidityTokens);
tokenHandler.sendTokenToOwner(address(STABLECOIN));
uint256 stablecoinBalance = STABLECOIN.balanceOf(address(this));
uint256 stablecoinForLiquidity = stablecoinBalance;
uint256 stablecoinForImpact = stablecoinBalance * tokensForImpact / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 stablecoinForCRF = stablecoinBalance * tokensForCRF / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 stablecoinForOperations = stablecoinBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 stablecoinForTreasury = stablecoinBalance * tokensForTreasury / (totalTokensToSwap - (tokensForLiquidity/2));
stablecoinForLiquidity -= stablecoinForImpact + stablecoinForCRF + stablecoinForOperations + stablecoinForTreasury;
tokensForLiquidity = 0;
tokensForImpact = 0;
tokensForCRF = 0;
tokensForOperations = 0;
tokensForTreasury = 0;
if(liquidityTokens > 0 && stablecoinForLiquidity > 0){
addLiquidity(liquidityTokens, stablecoinForLiquidity);
}
if(stablecoinForCRF > 0){
STABLECOIN.transfer(crfAddress, stablecoinForCRF);
}
if(stablecoinForOperations > 0){
STABLECOIN.transfer(operationsAddress, stablecoinForOperations);
}
if(stablecoinForTreasury > 0){
STABLECOIN.transfer(operationsAddress, stablecoinForTreasury);
}
if(STABLECOIN.balanceOf(address(this)) > 0){
STABLECOIN.transfer(impactAddress, STABLECOIN.balanceOf(address(this)));
}
}
function swapBackEth() private {
bool success;
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForImpact + tokensForCRF + tokensForOperations + tokensForTreasury;
if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
if(contractBalance > swapTokensAtAmount * 10){
contractBalance = swapTokensAtAmount * 10;
}
uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
swapTokensForEth(contractBalance - liquidityTokens);
uint256 ethBalance = address(this).balance;
uint256 ethForLiquidity = ethBalance;
uint256 ethForImpact = ethBalance * tokensForImpact / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 ethForCRF = ethBalance * tokensForCRF / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 ethForOperations = ethBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2));
uint256 ethForTreasury = ethBalance * tokensForTreasury / (totalTokensToSwap - (tokensForLiquidity/2));
ethForLiquidity -= ethForImpact + ethForCRF + ethForOperations + ethForTreasury;
tokensForLiquidity = 0;
tokensForImpact = 0;
tokensForCRF = 0;
tokensForOperations = 0;
tokensForTreasury = 0;
if(liquidityTokens > 0 && ethForLiquidity > 0){
addLiquidityEth(liquidityTokens, ethForLiquidity);
}
if(ethForCRF > 0){
(success, ) = crfAddress.call{value: ethForCRF}("");
}
if(ethForOperations > 0){
(success, ) = operationsAddress.call{value: ethForOperations}("");
}
if(ethForTreasury > 0){
(success, ) = treasuryAddress.call{value: ethForTreasury}("");
}
if(address(this).balance > 0){
(success, ) = impactAddress.call{value: address(this).balance}("");
}
}
function addLiquidityEth(uint256 tokenAmount, uint256 ethAmount) private {
_approve(address(this), address(dexRouter), tokenAmount);
dexRouter.addLiquidityETH{value: ethAmount}(address(this), tokenAmount, 0, 0, address(liquidityAddress), block.timestamp);
}
function swapTokensForEth(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = dexRouter.WETH();
_approve(address(this), address(dexRouter), tokenAmount);
dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
}
function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
_isExcludedMaxTransactionAmount[updAds] = isExcluded;
emit MaxTransactionExclusion(updAds, isExcluded);
}
function earlyBuyPenaltyInEffect() private view returns (bool){
return block.number < blockForPenaltyEnd;
}
function getBlockNumber() external view returns (uint256){
return block.number;
}
function getTier(address account) external view returns (uint256){
uint256 accountBalance = balanceOf(account);
uint256 supply = totalSupply();
if(accountBalance * 1e18 / supply >= 0.00075 ether){
return 5;
}
if(accountBalance * 1e18 / supply >= 0.00060 ether){
return 4;
}
if(accountBalance * 1e18 / supply >= 0.00045 ether){
return 3;
}
if(accountBalance * 1e18 / supply >= 0.00030 ether){
return 2;
}
if(accountBalance * 1e18 / supply >= 0.00015 ether){
return 1;
}
return 0;
}
}