|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.9;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC20Metadata is IERC20 {
|
|
|
|
|
|
|
|
function name() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function symbol() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function decimals() external view returns (uint8);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
uint8 private _decimals;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(string memory name_, string memory symbol_, uint8 decimals_) {
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
_decimals = decimals_;
|
|
}
|
|
|
|
|
|
|
|
|
|
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 _decimals;
|
|
}
|
|
|
|
|
|
|
|
|
|
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 {}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
library SafeMath {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
interface IUniswapV2Factory {
|
|
function createPair(address tokenA, address tokenB) external returns (address pair);
|
|
}
|
|
|
|
interface IUniswapV2Router02 {
|
|
function factory() external pure returns (address);
|
|
|
|
function WETH() external pure returns (address);
|
|
|
|
function addLiquidityETH(
|
|
address token,
|
|
uint256 amountTokenDesired,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline
|
|
)
|
|
external
|
|
payable
|
|
returns (
|
|
uint256 amountToken,
|
|
uint256 amountETH,
|
|
uint256 liquidity
|
|
);
|
|
|
|
function swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
uint256 amountIn,
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external;
|
|
}
|
|
|
|
contract Moonshot is ERC20, Ownable {
|
|
using SafeMath for uint256;
|
|
|
|
IUniswapV2Router02 public immutable uniswapV2Router;
|
|
address public immutable uniswapV2Pair;
|
|
address public constant deadAddress = address(0xdead);
|
|
|
|
string private constant _name = "Moonshot";
|
|
string private constant _symbol = "MST";
|
|
uint8 private constant _decimals = 9;
|
|
|
|
bool private swapping;
|
|
bool public tradingActive = false;
|
|
|
|
address public marketingWallet;
|
|
|
|
uint256 public maxTransactionAmount;
|
|
uint256 public swapTokensAtAmount;
|
|
uint256 public maxWallet;
|
|
|
|
uint256 public buyTotalFees;
|
|
uint256 private buyMarketingFee;
|
|
uint256 private buyLiquidityFee;
|
|
|
|
uint256 public sellTotalFees;
|
|
uint256 private sellMarketingFee;
|
|
uint256 private sellLiquidityFee;
|
|
|
|
uint256 private tokensForMarketing;
|
|
uint256 private tokensForLiquidity;
|
|
|
|
mapping(address => bool) private _isExcludedFromFees;
|
|
mapping(address => bool) private _isExcludedMaxTransactionAmount;
|
|
mapping(address => bool) private automatedMarketMakerPairs;
|
|
|
|
event ExcludeFromFees(address indexed account, bool isExcluded);
|
|
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
|
|
event SwapAndLiquidity(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
|
|
|
|
constructor() ERC20(_name, _symbol, _decimals) {
|
|
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
|
|
excludeFromMaxTransaction(address(_uniswapV2Router), true);
|
|
uniswapV2Router = _uniswapV2Router;
|
|
|
|
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
|
|
excludeFromMaxTransaction(address(uniswapV2Pair), true);
|
|
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
|
|
|
|
uint256 totalSupply = 10000000 * 10**decimals();
|
|
|
|
maxTransactionAmount = (totalSupply * 3) / 100;
|
|
maxWallet = (totalSupply * 3) / 100;
|
|
swapTokensAtAmount = (totalSupply * 1) / 1000;
|
|
|
|
marketingWallet = _msgSender();
|
|
|
|
buyMarketingFee = 15;
|
|
buyLiquidityFee = 0;
|
|
buyTotalFees = buyMarketingFee + buyLiquidityFee;
|
|
|
|
sellMarketingFee = 35;
|
|
sellLiquidityFee = 0;
|
|
sellTotalFees = sellMarketingFee + sellLiquidityFee;
|
|
|
|
excludeFromFees(owner(), true);
|
|
excludeFromFees(address(this), true);
|
|
excludeFromFees(address(0xdead), true);
|
|
|
|
excludeFromMaxTransaction(owner(), true);
|
|
excludeFromMaxTransaction(address(this), true);
|
|
excludeFromMaxTransaction(address(0xdead), true);
|
|
|
|
_mint(_msgSender(), totalSupply);
|
|
}
|
|
|
|
receive() external payable {}
|
|
|
|
function openTrade() external onlyOwner {
|
|
require(tradingActive == false, "The trade has been opened.");
|
|
tradingActive = true;
|
|
}
|
|
|
|
function removeLimits() external onlyOwner {
|
|
maxWallet = totalSupply();
|
|
maxTransactionAmount = totalSupply();
|
|
}
|
|
|
|
function updateBuyFee(uint256 marketing, uint256 liquidity) external onlyOwner {
|
|
buyMarketingFee = marketing;
|
|
buyLiquidityFee = liquidity;
|
|
buyTotalFees = buyMarketingFee + buyLiquidityFee;
|
|
require(buyTotalFees <= 15, "Must keep buy total fees at 15% or less.");
|
|
}
|
|
|
|
function updateSellFee(uint256 marketing, uint256 liquidity) external onlyOwner {
|
|
sellMarketingFee = marketing;
|
|
sellLiquidityFee = liquidity;
|
|
sellTotalFees = sellMarketingFee + sellLiquidityFee;
|
|
require(sellTotalFees <= 25, "Must keep sell total fees at 25% or less.");
|
|
}
|
|
|
|
function updateMarketingWallet(address _marketingWallet) external onlyOwner {
|
|
marketingWallet = _marketingWallet;
|
|
}
|
|
|
|
function excludeFromMaxTransaction(address updAds, bool excluded) public onlyOwner {
|
|
_isExcludedMaxTransactionAmount[updAds] = excluded;
|
|
}
|
|
|
|
function excludeFromFees(address account, bool excluded) public onlyOwner {
|
|
_isExcludedFromFees[account] = excluded;
|
|
emit ExcludeFromFees(account, excluded);
|
|
}
|
|
|
|
function _setAutomatedMarketMakerPair(address pair, bool value) private {
|
|
automatedMarketMakerPairs[pair] = value;
|
|
emit SetAutomatedMarketMakerPair(pair, value);
|
|
}
|
|
|
|
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, "Transfer amount must be greater than zero.");
|
|
|
|
if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
|
|
if (tradingActive == false) {
|
|
require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "TOKEN: Trading is not active.");
|
|
}
|
|
|
|
if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
|
|
require(amount <= maxTransactionAmount, "TOKEN: Buy transfer amount exceeds the max Tnx amount.");
|
|
require(amount + balanceOf(to) <= maxWallet, "TOKEN: Max wallet exceeded.");
|
|
} else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
|
|
require(amount <= maxTransactionAmount, "TOKEN: Sell transfer amount exceeds the max Tnx amount.");
|
|
} else if (!_isExcludedMaxTransactionAmount[to]) {
|
|
require(amount + balanceOf(to) <= maxWallet, "TOKEN: Max wallet exceeded.");
|
|
}
|
|
}
|
|
|
|
bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
|
|
if (canSwap && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
|
|
swapping = true;
|
|
swapBack();
|
|
swapping = false;
|
|
}
|
|
|
|
bool takeFee = !swapping;
|
|
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
|
|
takeFee = false;
|
|
}
|
|
|
|
uint256 fees = 0;
|
|
if (takeFee) {
|
|
|
|
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
|
|
fees = amount.mul(sellTotalFees).div(100);
|
|
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
|
|
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
|
|
}
|
|
|
|
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
|
|
fees = amount.mul(buyTotalFees).div(100);
|
|
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
|
|
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
|
|
}
|
|
|
|
if (fees > 0) {
|
|
super._transfer(from, address(this), fees);
|
|
}
|
|
|
|
amount -= fees;
|
|
}
|
|
super._transfer(from, to, amount);
|
|
}
|
|
|
|
function swapTokensForEth(uint256 tokenAmount) private {
|
|
address[] memory path = new address[](2);
|
|
path[0] = address(this);
|
|
path[1] = uniswapV2Router.WETH();
|
|
|
|
_approve(address(this), address(uniswapV2Router), tokenAmount);
|
|
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
tokenAmount,
|
|
0,
|
|
path,
|
|
address(this),
|
|
block.timestamp
|
|
);
|
|
}
|
|
|
|
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
|
|
_approve(address(this), address(uniswapV2Router), tokenAmount);
|
|
uniswapV2Router.addLiquidityETH{value: ethAmount}(
|
|
address(this),
|
|
tokenAmount,
|
|
0,
|
|
0,
|
|
deadAddress,
|
|
block.timestamp
|
|
);
|
|
}
|
|
|
|
function swapBack() private {
|
|
uint256 contractBalance = balanceOf(address(this));
|
|
uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
|
|
bool success;
|
|
|
|
if (contractBalance == 0 || totalTokensToSwap == 0) {
|
|
return;
|
|
}
|
|
|
|
if (contractBalance > swapTokensAtAmount * 20) {
|
|
contractBalance = swapTokensAtAmount * 20;
|
|
}
|
|
|
|
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
|
|
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
|
|
|
|
uint256 initialETHBalance = address(this).balance;
|
|
|
|
swapTokensForEth(amountToSwapForETH);
|
|
|
|
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
|
|
|
|
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
|
|
|
|
uint256 ethForLiquidity = ethBalance - ethForMarketing;
|
|
|
|
tokensForLiquidity = 0;
|
|
tokensForMarketing = 0;
|
|
|
|
if (liquidityTokens > 0 && ethForLiquidity > 0) {
|
|
addLiquidity(liquidityTokens, ethForLiquidity);
|
|
emit SwapAndLiquidity(
|
|
amountToSwapForETH,
|
|
ethForLiquidity,
|
|
tokensForLiquidity
|
|
);
|
|
}
|
|
|
|
(success, ) = address(marketingWallet).call{value: address(this).balance}("");
|
|
}
|
|
} |