|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.7;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IUniswapV2Factory {
|
|
function createPair(address tokenA, address tokenB) external returns (address pair);
|
|
}
|
|
|
|
interface IUniswapV2Router01 {
|
|
function factory() external pure returns (address);
|
|
function WETH() external pure returns (address);
|
|
|
|
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 addLiquidityETH(
|
|
address token,
|
|
uint amountTokenDesired,
|
|
uint amountTokenMin,
|
|
uint amountETHMin,
|
|
address to,
|
|
uint deadline
|
|
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
|
|
function removeLiquidity(
|
|
address tokenA,
|
|
address tokenB,
|
|
uint liquidity,
|
|
uint amountAMin,
|
|
uint amountBMin,
|
|
address to,
|
|
uint deadline
|
|
) external returns (uint amountA, uint amountB);
|
|
function removeLiquidityETH(
|
|
address token,
|
|
uint liquidity,
|
|
uint amountTokenMin,
|
|
uint amountETHMin,
|
|
address to,
|
|
uint deadline
|
|
) external returns (uint amountToken, uint amountETH);
|
|
function removeLiquidityWithPermit(
|
|
address tokenA,
|
|
address tokenB,
|
|
uint liquidity,
|
|
uint amountAMin,
|
|
uint amountBMin,
|
|
address to,
|
|
uint deadline,
|
|
bool approveMax, uint8 v, bytes32 r, bytes32 s
|
|
) external returns (uint amountA, uint amountB);
|
|
function removeLiquidityETHWithPermit(
|
|
address token,
|
|
uint liquidity,
|
|
uint amountTokenMin,
|
|
uint amountETHMin,
|
|
address to,
|
|
uint deadline,
|
|
bool approveMax, uint8 v, bytes32 r, bytes32 s
|
|
) external returns (uint amountToken, uint amountETH);
|
|
function swapExactTokensForTokens(
|
|
uint amountIn,
|
|
uint amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint deadline
|
|
) external returns (uint[] memory amounts);
|
|
function swapTokensForExactTokens(
|
|
uint amountOut,
|
|
uint amountInMax,
|
|
address[] calldata path,
|
|
address to,
|
|
uint deadline
|
|
) external returns (uint[] memory amounts);
|
|
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
|
|
external
|
|
payable
|
|
returns (uint[] memory amounts);
|
|
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
|
|
external
|
|
returns (uint[] memory amounts);
|
|
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
|
|
external
|
|
returns (uint[] memory amounts);
|
|
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
|
|
external
|
|
payable
|
|
returns (uint[] memory amounts);
|
|
|
|
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
|
|
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
|
|
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
|
|
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
|
|
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
|
|
}
|
|
|
|
interface IUniswapV2Router02 is IUniswapV2Router01{
|
|
function removeLiquidityETHSupportingFeeOnTransferTokens(
|
|
address token,
|
|
uint liquidity,
|
|
uint amountTokenMin,
|
|
uint amountETHMin,
|
|
address to,
|
|
uint deadline
|
|
) external returns (uint amountETH);
|
|
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
|
|
address token,
|
|
uint liquidity,
|
|
uint amountTokenMin,
|
|
uint amountETHMin,
|
|
address to,
|
|
uint deadline,
|
|
bool approveMax, uint8 v, bytes32 r, bytes32 s
|
|
) external returns (uint amountETH);
|
|
|
|
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
|
|
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 swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
uint amountIn,
|
|
uint amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint deadline
|
|
) external;
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IERC20 {
|
|
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 decimals() external view returns (uint8);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
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);
|
|
}
|
|
|
|
contract PBLToken is Context, IERC20, IERC20Metadata, Ownable {
|
|
receive() external payable {}
|
|
|
|
event SendNative(bool _wallet);
|
|
|
|
using SafeMath for uint256;
|
|
|
|
mapping(address => uint256) private _balances;
|
|
|
|
mapping(address => mapping(address => uint256)) private _allowances;
|
|
|
|
uint256 _totalSupply;
|
|
string private _name;
|
|
string private _symbol;
|
|
uint8 private _decimals;
|
|
|
|
|
|
mapping (string => uint) txFees;
|
|
|
|
mapping (address => bool) public feeExempt;
|
|
mapping (address => bool) public txLimitExempt;
|
|
|
|
address public farmingAddress = msg.sender;
|
|
address public taxAddress = msg.sender;
|
|
address public nativeTokenAddress = msg.sender;
|
|
|
|
|
|
|
|
struct TokenFee {
|
|
uint forMarketing;
|
|
uint forDev;
|
|
uint forFarming;
|
|
}
|
|
|
|
struct TxLimit {
|
|
uint buyLimit;
|
|
uint sellLimit;
|
|
uint cooldown;
|
|
bool inactive;
|
|
mapping(address => uint) buys;
|
|
mapping(address => uint) sells;
|
|
mapping(address => uint) lastTx;
|
|
}
|
|
|
|
TxLimit txLimits;
|
|
|
|
struct SwapToken {
|
|
uint swapTokensAt;
|
|
uint lastSwap;
|
|
uint swapDelay;
|
|
uint minToSend;
|
|
}
|
|
|
|
SwapToken public swapTokens;
|
|
|
|
IUniswapV2Router02 public uniswapV2Router;
|
|
address public uniswapV2Pair;
|
|
|
|
constructor() {
|
|
_name = "POM Blend";
|
|
_symbol = "PBL";
|
|
_decimals = 18;
|
|
_totalSupply = 100_000_000 * (10 ** decimals());
|
|
|
|
feeExempt[msg.sender] = true;
|
|
txLimitExempt[msg.sender] = true;
|
|
feeExempt[address(this)] = true;
|
|
txLimitExempt[address(this)] = true;
|
|
feeExempt[farmingAddress] = true;
|
|
txLimitExempt[farmingAddress] = true;
|
|
feeExempt[taxAddress] = true;
|
|
txLimitExempt[taxAddress] = true;
|
|
feeExempt[nativeTokenAddress] = true;
|
|
txLimitExempt[nativeTokenAddress] = true;
|
|
|
|
|
|
|
|
|
|
|
|
txFees["marketingBuy"] = 100;
|
|
txFees["liqBuy"] = 250;
|
|
txFees["farmingBuy"] = 100;
|
|
|
|
txFees["marketingSell"] = 200;
|
|
txFees["liqSell"] = 500;
|
|
txFees["farmingSell"] = 200;
|
|
|
|
|
|
|
|
|
|
|
|
txLimits.cooldown = 30 seconds;
|
|
txLimits.buyLimit = _totalSupply.div(100);
|
|
txLimits.sellLimit = _totalSupply.div(100);
|
|
|
|
swapTokens.swapTokensAt = _totalSupply.div(1394);
|
|
swapTokens.minToSend = 10_000 ether;
|
|
swapTokens.swapDelay = 1 minutes;
|
|
|
|
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
|
|
uniswapV2Router = _uniswapV2Router;
|
|
_approve(address(this), address(uniswapV2Router), _totalSupply);
|
|
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
|
|
IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
|
|
|
|
approve(address(uniswapV2Router), _totalSupply);
|
|
feeExempt[address(uniswapV2Router)] = true;
|
|
|
|
_balances[msg.sender] = _totalSupply;
|
|
emit Transfer(address(0), msg.sender, _totalSupply);
|
|
}
|
|
|
|
|
|
|
|
|
|
event Fees(
|
|
uint _marketingBuy,
|
|
uint _liqBuy,
|
|
uint _farmingBuy,
|
|
uint _marketingSell,
|
|
uint _liqSell,
|
|
uint _farmingSell
|
|
);
|
|
|
|
function setFees(
|
|
uint _marketingBuy,
|
|
uint _liqBuy,
|
|
uint _farmingBuy,
|
|
uint _marketingSell,
|
|
uint _liqSell,
|
|
uint _farmingSell
|
|
) external onlyOwner {
|
|
require(_marketingBuy <= 800, "Marketing fee is too high!");
|
|
require(_liqBuy <= 800, "Dev fee is too high!");
|
|
require(_farmingBuy <= 800, "Farming fee is too high!");
|
|
require(_marketingSell <= 800, "Marketing fee is too high!");
|
|
require(_liqSell <= 800, "Dev fee is too high!");
|
|
require(_farmingSell <= 800, "Farming fee is too high!");
|
|
|
|
txFees["marketingBuy"] = _marketingBuy;
|
|
txFees["liqBuy"] = _liqBuy;
|
|
txFees["farmingBuy"] = _farmingBuy;
|
|
|
|
txFees["marketingSell"] = _marketingSell;
|
|
txFees["liqSell"] = _liqSell;
|
|
txFees["farmingSell"] = _farmingSell;
|
|
|
|
emit Fees(
|
|
_marketingBuy,
|
|
_liqBuy,
|
|
_farmingBuy,
|
|
_marketingSell,
|
|
_liqSell,
|
|
_farmingSell
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
function getFees() public view returns(
|
|
uint marketingBuy,
|
|
uint liqBuy,
|
|
uint farmingBuy,
|
|
uint marketingSell,
|
|
uint liqSell,
|
|
uint farmingSell
|
|
) {
|
|
return (
|
|
txFees["marketingBuy"],
|
|
txFees["liqBuy"],
|
|
txFees["farmingBuy"],
|
|
txFees["marketingSell"],
|
|
txFees["liqSell"],
|
|
txFees["farmingSell"]
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
function setTaxAddress(address _farmingAddress, address _taxAddress, address _nativeTokenAddress) external onlyOwner {
|
|
farmingAddress = _farmingAddress;
|
|
taxAddress = _taxAddress;
|
|
nativeTokenAddress = _nativeTokenAddress;
|
|
}
|
|
|
|
|
|
|
|
|
|
function setFeeExempt(address _address, bool _value) external onlyOwner {
|
|
feeExempt[_address] = _value;
|
|
}
|
|
|
|
|
|
|
|
|
|
function setTxLimitExempt(address _address, bool _value) external onlyOwner {
|
|
txLimitExempt[_address] = _value;
|
|
}
|
|
|
|
|
|
|
|
|
|
function setTxLimits(uint _buyLimit, uint _sellLimit, uint _cooldown, bool _inactive) external onlyOwner {
|
|
require(_buyLimit >= _totalSupply.div(200), "Buy transaction limit is too low!");
|
|
require(_sellLimit >= _totalSupply.div(400), "Sell transaction limit is too low!");
|
|
require(_cooldown <= 30 minutes, "Cooldown should be 30 minutes or less!");
|
|
|
|
txLimits.buyLimit = _buyLimit;
|
|
txLimits.sellLimit = _sellLimit;
|
|
txLimits.cooldown = _cooldown;
|
|
txLimits.inactive = _inactive;
|
|
}
|
|
|
|
|
|
|
|
|
|
function setSwapTokens(uint _swapTokensAt, uint _lastSwap, uint _delay) external onlyOwner {
|
|
swapTokens.swapTokensAt = _swapTokensAt;
|
|
swapTokens.lastSwap = _lastSwap;
|
|
swapTokens.swapDelay = _delay;
|
|
}
|
|
|
|
|
|
|
|
|
|
function getTxLimits() public view returns(uint buyLimit, uint sellLimit, uint cooldown, bool inactive) {
|
|
return (txLimits.buyLimit, txLimits.sellLimit, txLimits.cooldown, txLimits.inactive);
|
|
}
|
|
|
|
|
|
|
|
|
|
function checkBuyTxLimit(address _sender, uint256 _amount) internal view {
|
|
require(
|
|
txLimits.inactive == true ||
|
|
txLimitExempt[_sender] == true ||
|
|
txLimits.buys[_sender].add(_amount) < txLimits.buyLimit ||
|
|
(txLimits.buys[_sender].add(_amount) > txLimits.buyLimit &&
|
|
txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp),
|
|
"Buy transaction limit reached!"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
function checkSellTxLimit(address _sender, uint256 _amount) internal view {
|
|
require(
|
|
txLimits.inactive == true ||
|
|
txLimitExempt[_sender] == true ||
|
|
txLimits.sells[_sender].add(_amount) < txLimits.sellLimit ||
|
|
(txLimits.sells[_sender].add(_amount) > txLimits.sellLimit &&
|
|
txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp),
|
|
"Sell transaction limit reached!"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function setRecentTx(bool _isSell, address _sender, uint _amount) internal {
|
|
if(txLimits.lastTx[_sender].add(txLimits.cooldown) < block.timestamp) {
|
|
_isSell ? txLimits.sells[_sender] = _amount : txLimits.buys[_sender] = _amount;
|
|
} else {
|
|
_isSell ? txLimits.sells[_sender] += _amount : txLimits.buys[_sender] += _amount;
|
|
}
|
|
|
|
txLimits.lastTx[_sender] = block.timestamp;
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRecentTx(address _address) public view returns(uint buys, uint sells, uint lastTx) {
|
|
return (txLimits.buys[_address], txLimits.sells[_address], txLimits.lastTx[_address]);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function swapTokensForNative(uint256 _amount) internal {
|
|
address[] memory path = new address[](2);
|
|
path[0] = address(this);
|
|
path[1] = uniswapV2Router.WETH();
|
|
_approve(address(this), address(uniswapV2Router), _amount);
|
|
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
_amount,
|
|
0,
|
|
path,
|
|
address(this),
|
|
block.timestamp
|
|
);
|
|
}
|
|
|
|
function manualSwapTokensForNative(uint256 _amount) external onlyOwner {
|
|
address[] memory path = new address[](2);
|
|
path[0] = address(this);
|
|
path[1] = uniswapV2Router.WETH();
|
|
_approve(address(this), address(uniswapV2Router), _amount);
|
|
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
_amount,
|
|
0,
|
|
path,
|
|
address(this),
|
|
block.timestamp
|
|
);
|
|
}
|
|
|
|
function manualSendNative() external onlyOwner {
|
|
uint256 contractNativeBalance = address(this).balance;
|
|
sendNativeTokens(contractNativeBalance);
|
|
}
|
|
|
|
function sendNativeTokens(uint256 _amount) private {
|
|
|
|
(bool success, ) = payable(nativeTokenAddress).call{value: _amount.div(3)}("");
|
|
(bool success2, ) = payable(farmingAddress).call{value: _amount.div(3)}("");
|
|
(bool success3, ) = payable(taxAddress).call{value: _amount.div(3)}("");
|
|
|
|
emit SendNative(success);
|
|
emit SendNative(success2);
|
|
emit SendNative(success3);
|
|
}
|
|
|
|
function withdrawAnyToken(address payable _to, IERC20 _token) public onlyOwner {
|
|
_token.transfer(_to, _token.balanceOf(address(this)));
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
uint256 fromBalance = _balances[from];
|
|
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
|
|
|
|
uint marketingFee;
|
|
uint devFee;
|
|
uint farmingFee;
|
|
|
|
bool hasFees = true;
|
|
|
|
|
|
if(from == uniswapV2Pair) {
|
|
|
|
|
|
checkBuyTxLimit(to, amount);
|
|
|
|
setRecentTx(false, to, amount);
|
|
|
|
marketingFee = txFees["marketingBuy"];
|
|
devFee = txFees["liqBuy"];
|
|
farmingFee = txFees["farmingBuy"];
|
|
}
|
|
|
|
else if(to == uniswapV2Pair) {
|
|
checkSellTxLimit(from, amount);
|
|
|
|
setRecentTx(true, from, amount);
|
|
|
|
marketingFee = txFees["marketingSell"];
|
|
devFee = txFees["liqSell"];
|
|
farmingFee = txFees["farmingSell"];
|
|
}
|
|
|
|
unchecked {
|
|
_balances[from] = fromBalance - amount;
|
|
}
|
|
|
|
if(feeExempt[to] || feeExempt[from]) {
|
|
hasFees = false;
|
|
}
|
|
|
|
if(hasFees && (to == uniswapV2Pair || from == uniswapV2Pair)) {
|
|
TokenFee memory TokenFees;
|
|
TokenFees.forMarketing = amount.mul(marketingFee).div(10000);
|
|
TokenFees.forDev = amount.mul(devFee).div(10000);
|
|
TokenFees.forFarming = amount.mul(farmingFee).div(10000);
|
|
|
|
uint totalFees =
|
|
TokenFees.forMarketing
|
|
.add(TokenFees.forDev)
|
|
.add(TokenFees.forFarming);
|
|
|
|
amount = amount.sub(totalFees);
|
|
|
|
_balances[address(this)] += totalFees;
|
|
emit Transfer(from, address(this), totalFees);
|
|
|
|
|
|
uint256 contractTokenBalance = _balances[address(this)];
|
|
|
|
if (
|
|
contractTokenBalance > swapTokens.swapTokensAt &&
|
|
block.timestamp > swapTokens.lastSwap + swapTokens.swapDelay &&
|
|
to == uniswapV2Pair
|
|
) {
|
|
|
|
if(contractTokenBalance > swapTokens.swapTokensAt.mul(1100).div(1000)) {
|
|
swapTokensForNative(swapTokens.swapTokensAt);
|
|
} else {
|
|
swapTokensForNative(contractTokenBalance);
|
|
}
|
|
|
|
swapTokens.lastSwap = block.timestamp;
|
|
|
|
uint256 contractNativeBalance = address(this).balance;
|
|
|
|
if(contractNativeBalance > swapTokens.minToSend) {
|
|
sendNativeTokens(contractNativeBalance);
|
|
}
|
|
}
|
|
}
|
|
|
|
_balances[to] += amount;
|
|
emit Transfer(from, to, 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 _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;
|
|
|
|
_totalSupply -= amount;
|
|
}
|
|
|
|
emit Transfer(account, address(0), amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function burn(uint256 amount) public virtual {
|
|
_burn(_msgSender(), amount);
|
|
}
|
|
} |