|
|
|
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address payable) {
|
|
return payable(msg.sender);
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes memory) {
|
|
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);
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
event Approval(
|
|
address indexed owner,
|
|
address indexed spender,
|
|
uint256 value
|
|
);
|
|
}
|
|
|
|
library SafeMath {
|
|
function add(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
uint256 c = a + b;
|
|
require(c >= a, "SafeMath: addition overflow");
|
|
|
|
return c;
|
|
}
|
|
|
|
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return sub(a, b, "SafeMath: subtraction overflow");
|
|
}
|
|
|
|
function sub(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
require(b <= a, errorMessage);
|
|
uint256 c = a - b;
|
|
|
|
return c;
|
|
}
|
|
|
|
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
if (a == 0) {
|
|
return 0;
|
|
}
|
|
|
|
uint256 c = a * b;
|
|
require(c / a == b, "SafeMath: multiplication overflow");
|
|
|
|
return c;
|
|
}
|
|
|
|
function div(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return div(a, b, "SafeMath: division by zero");
|
|
}
|
|
|
|
function div(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
require(b > 0, errorMessage);
|
|
uint256 c = a / b;
|
|
|
|
|
|
return c;
|
|
}
|
|
|
|
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return mod(a, b, "SafeMath: modulo by zero");
|
|
}
|
|
|
|
function mod(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
require(b != 0, errorMessage);
|
|
return a % b;
|
|
}
|
|
}
|
|
|
|
library Address {
|
|
function isContract(address account) internal view returns (bool) {
|
|
|
|
|
|
|
|
bytes32 codehash;
|
|
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
|
|
|
|
assembly {
|
|
codehash := extcodehash(account)
|
|
}
|
|
return (codehash != accountHash && codehash != 0x0);
|
|
}
|
|
|
|
function sendValue(address payable recipient, uint256 amount) internal {
|
|
require(
|
|
address(this).balance >= amount,
|
|
"Address: insufficient balance"
|
|
);
|
|
|
|
|
|
(bool success, ) = recipient.call{value: amount}("");
|
|
require(
|
|
success,
|
|
"Address: unable to send value, recipient may have reverted"
|
|
);
|
|
}
|
|
|
|
function functionCall(address target, bytes memory data)
|
|
internal
|
|
returns (bytes memory)
|
|
{
|
|
return functionCall(target, data, "Address: low-level call failed");
|
|
}
|
|
|
|
function functionCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
return _functionCallWithValue(target, data, 0, errorMessage);
|
|
}
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value
|
|
) internal returns (bytes memory) {
|
|
return
|
|
functionCallWithValue(
|
|
target,
|
|
data,
|
|
value,
|
|
"Address: low-level call with value failed"
|
|
);
|
|
}
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
require(
|
|
address(this).balance >= value,
|
|
"Address: insufficient balance for call"
|
|
);
|
|
return _functionCallWithValue(target, data, value, errorMessage);
|
|
}
|
|
|
|
function _functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 weiValue,
|
|
string memory errorMessage
|
|
) private returns (bytes memory) {
|
|
require(isContract(target), "Address: call to non-contract");
|
|
|
|
(bool success, bytes memory returndata) = target.call{value: weiValue}(
|
|
data
|
|
);
|
|
if (success) {
|
|
return returndata;
|
|
} else {
|
|
if (returndata.length > 0) {
|
|
assembly {
|
|
let returndata_size := mload(returndata)
|
|
revert(add(32, returndata), returndata_size)
|
|
}
|
|
} else {
|
|
revert(errorMessage);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
contract Ownable is Context {
|
|
address private owner;
|
|
address private manager;
|
|
|
|
constructor(address _manager) {
|
|
manager = _manager;
|
|
}
|
|
|
|
|
|
|
|
|
|
modifier onlyOwner() {
|
|
require(isOwner(msg.sender), "!OWNER");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function getOwner() public view returns (address) {
|
|
return owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
function isOwner(address account) public view returns (bool) {
|
|
return account == owner || account == manager;
|
|
}
|
|
|
|
|
|
|
|
|
|
function transferOwnership(address payable adr) public onlyOwner {
|
|
owner = adr;
|
|
emit OwnershipTransferred(adr);
|
|
}
|
|
|
|
event OwnershipTransferred(address owner);
|
|
}
|
|
|
|
interface IUniswapV2Pair {
|
|
event Approval(
|
|
address indexed owner,
|
|
address indexed spender,
|
|
uint256 value
|
|
);
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
function name() external pure returns (string memory);
|
|
|
|
function symbol() external pure returns (string memory);
|
|
|
|
function decimals() external pure returns (uint8);
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
function balanceOf(address owner) external view returns (uint256);
|
|
|
|
function allowance(address owner, address spender)
|
|
external
|
|
view
|
|
returns (uint256);
|
|
|
|
function approve(address spender, uint256 value) external returns (bool);
|
|
|
|
function transfer(address to, uint256 value) external returns (bool);
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 value
|
|
) external returns (bool);
|
|
|
|
function DOMAIN_SEPARATOR() external view returns (bytes32);
|
|
|
|
function PERMIT_TYPEHASH() external pure returns (bytes32);
|
|
|
|
function nonces(address owner) external view returns (uint256);
|
|
|
|
function permit(
|
|
address owner,
|
|
address spender,
|
|
uint256 value,
|
|
uint256 deadline,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) external;
|
|
|
|
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
|
|
event Burn(
|
|
address indexed sender,
|
|
uint256 amount0,
|
|
uint256 amount1,
|
|
address indexed to
|
|
);
|
|
event Swap(
|
|
address indexed sender,
|
|
uint256 amount0In,
|
|
uint256 amount1In,
|
|
uint256 amount0Out,
|
|
uint256 amount1Out,
|
|
address indexed to
|
|
);
|
|
event Sync(uint112 reserve0, uint112 reserve1);
|
|
|
|
function MINIMUM_LIQUIDITY() external pure returns (uint256);
|
|
|
|
function factory() external view returns (address);
|
|
|
|
function token0() external view returns (address);
|
|
|
|
function token1() external view returns (address);
|
|
|
|
function getReserves()
|
|
external
|
|
view
|
|
returns (
|
|
uint112 reserve0,
|
|
uint112 reserve1,
|
|
uint32 blockTimestampLast
|
|
);
|
|
|
|
function price0CumulativeLast() external view returns (uint256);
|
|
|
|
function price1CumulativeLast() external view returns (uint256);
|
|
|
|
function kLast() external view returns (uint256);
|
|
|
|
function mint(address to) external returns (uint256 liquidity);
|
|
|
|
function burn(address to)
|
|
external
|
|
returns (uint256 amount0, uint256 amount1);
|
|
|
|
function swap(
|
|
uint256 amount0Out,
|
|
uint256 amount1Out,
|
|
address to,
|
|
bytes calldata data
|
|
) external;
|
|
|
|
function skim(address to) external;
|
|
|
|
function sync() external;
|
|
|
|
function initialize(address, address) external;
|
|
}
|
|
|
|
interface IUniswapV2Factory {
|
|
event PairCreated(
|
|
address indexed token0,
|
|
address indexed token1,
|
|
address pair,
|
|
uint256
|
|
);
|
|
|
|
function feeTo() external view returns (address);
|
|
|
|
function feeToSetter() external view returns (address);
|
|
|
|
function getPair(address tokenA, address tokenB)
|
|
external
|
|
view
|
|
returns (address pair);
|
|
|
|
function allPairs(uint256) external view returns (address pair);
|
|
|
|
function allPairsLength() external view returns (uint256);
|
|
|
|
function createPair(address tokenA, address tokenB)
|
|
external
|
|
returns (address pair);
|
|
|
|
function setFeeTo(address) external;
|
|
|
|
function setFeeToSetter(address) external;
|
|
}
|
|
|
|
interface IUniswapV2Router01 {
|
|
function factory() external pure returns (address);
|
|
|
|
function WETH() external pure returns (address);
|
|
|
|
function addLiquidity(
|
|
address tokenA,
|
|
address tokenB,
|
|
uint256 amountADesired,
|
|
uint256 amountBDesired,
|
|
uint256 amountAMin,
|
|
uint256 amountBMin,
|
|
address to,
|
|
uint256 deadline
|
|
)
|
|
external
|
|
returns (
|
|
uint256 amountA,
|
|
uint256 amountB,
|
|
uint256 liquidity
|
|
);
|
|
|
|
function addLiquidityETH(
|
|
address token,
|
|
uint256 amountTokenDesired,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline
|
|
)
|
|
external
|
|
payable
|
|
returns (
|
|
uint256 amountToken,
|
|
uint256 amountETH,
|
|
uint256 liquidity
|
|
);
|
|
|
|
function removeLiquidity(
|
|
address tokenA,
|
|
address tokenB,
|
|
uint256 liquidity,
|
|
uint256 amountAMin,
|
|
uint256 amountBMin,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256 amountA, uint256 amountB);
|
|
|
|
function removeLiquidityETH(
|
|
address token,
|
|
uint256 liquidity,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256 amountToken, uint256 amountETH);
|
|
|
|
function removeLiquidityWithPermit(
|
|
address tokenA,
|
|
address tokenB,
|
|
uint256 liquidity,
|
|
uint256 amountAMin,
|
|
uint256 amountBMin,
|
|
address to,
|
|
uint256 deadline,
|
|
bool approveMax,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) external returns (uint256 amountA, uint256 amountB);
|
|
|
|
function removeLiquidityETHWithPermit(
|
|
address token,
|
|
uint256 liquidity,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline,
|
|
bool approveMax,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) external returns (uint256 amountToken, uint256 amountETH);
|
|
|
|
function swapExactTokensForTokens(
|
|
uint256 amountIn,
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256[] memory amounts);
|
|
|
|
function swapTokensForExactTokens(
|
|
uint256 amountOut,
|
|
uint256 amountInMax,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256[] memory amounts);
|
|
|
|
function swapExactETHForTokens(
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external payable returns (uint256[] memory amounts);
|
|
|
|
function swapTokensForExactETH(
|
|
uint256 amountOut,
|
|
uint256 amountInMax,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256[] memory amounts);
|
|
|
|
function swapExactTokensForETH(
|
|
uint256 amountIn,
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256[] memory amounts);
|
|
|
|
function swapETHForExactTokens(
|
|
uint256 amountOut,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external payable returns (uint256[] memory amounts);
|
|
|
|
function quote(
|
|
uint256 amountA,
|
|
uint256 reserveA,
|
|
uint256 reserveB
|
|
) external pure returns (uint256 amountB);
|
|
|
|
function getAmountOut(
|
|
uint256 amountIn,
|
|
uint256 reserveIn,
|
|
uint256 reserveOut
|
|
) external pure returns (uint256 amountOut);
|
|
|
|
function getAmountIn(
|
|
uint256 amountOut,
|
|
uint256 reserveIn,
|
|
uint256 reserveOut
|
|
) external pure returns (uint256 amountIn);
|
|
|
|
function getAmountsOut(uint256 amountIn, address[] calldata path)
|
|
external
|
|
view
|
|
returns (uint256[] memory amounts);
|
|
|
|
function getAmountsIn(uint256 amountOut, address[] calldata path)
|
|
external
|
|
view
|
|
returns (uint256[] memory amounts);
|
|
}
|
|
|
|
interface IUniswapV2Router02 is IUniswapV2Router01 {
|
|
function removeLiquidityETHSupportingFeeOnTransferTokens(
|
|
address token,
|
|
uint256 liquidity,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline
|
|
) external returns (uint256 amountETH);
|
|
|
|
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
|
|
address token,
|
|
uint256 liquidity,
|
|
uint256 amountTokenMin,
|
|
uint256 amountETHMin,
|
|
address to,
|
|
uint256 deadline,
|
|
bool approveMax,
|
|
uint8 v,
|
|
bytes32 r,
|
|
bytes32 s
|
|
) external returns (uint256 amountETH);
|
|
|
|
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
|
|
uint256 amountIn,
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external;
|
|
|
|
function swapExactETHForTokensSupportingFeeOnTransferTokens(
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external payable;
|
|
|
|
function swapExactTokensForETHSupportingFeeOnTransferTokens(
|
|
uint256 amountIn,
|
|
uint256 amountOutMin,
|
|
address[] calldata path,
|
|
address to,
|
|
uint256 deadline
|
|
) external;
|
|
}
|
|
|
|
contract bitAIContract is Context, IERC20, Ownable {
|
|
using SafeMath for uint256;
|
|
string private constant NAME = "Bit Royale Ai Game";
|
|
string private constant SYMBOL = "bitAI";
|
|
uint8 private constant DECIMALS = 18;
|
|
|
|
mapping(address => uint256) private _balances;
|
|
mapping(address => mapping(address => uint256)) private _allowances;
|
|
mapping(address => bool) private _isExcludedFromFee;
|
|
mapping(address => bool) public bots;
|
|
mapping(address => bool) public automatedMarketMakerPairs;
|
|
|
|
uint256 private TOTAL = 1_000_000_000 * 1e18;
|
|
|
|
uint256 public buyFee;
|
|
uint256 public sellFee;
|
|
|
|
uint256 public swapTokensAtAmount;
|
|
|
|
IUniswapV2Router02 public uniswapV2Router;
|
|
address public uniswapV2Pair;
|
|
|
|
address public treasuryWallet;
|
|
|
|
event UpdatedBuyFee(uint256 oldFees, uint256 newFees);
|
|
event UpdatedSellFee(uint256 oldFees, uint256 newFees);
|
|
event ExcludedFromFee(address account);
|
|
event IncludedToFee(address account);
|
|
|
|
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
|
|
|
|
event UpdateTreasuryWallet(address old, address newWallet);
|
|
bool inSwapAndLiquify;
|
|
bool isBurnable;
|
|
modifier lockTheSwap() {
|
|
inSwapAndLiquify = true;
|
|
_;
|
|
inSwapAndLiquify = false;
|
|
}
|
|
|
|
modifier lockTheBurn() {
|
|
require(isBurnable, "Not is burnable");
|
|
_;
|
|
}
|
|
|
|
constructor(
|
|
uint256 _buyFee,
|
|
uint256 _sellFee,
|
|
address _treasuryWallet
|
|
) Ownable(msg.sender) {
|
|
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
|
|
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
|
|
);
|
|
|
|
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
|
|
.createPair(address(this), _uniswapV2Router.WETH());
|
|
|
|
_setAutomatedMarketMakerPair(uniswapV2Pair, true);
|
|
|
|
|
|
uniswapV2Router = _uniswapV2Router;
|
|
_isExcludedFromFee[_msgSender()] = true;
|
|
_isExcludedFromFee[address(this)] = true;
|
|
_isExcludedFromFee[_treasuryWallet] = true;
|
|
_balances[_msgSender()] = TOTAL;
|
|
|
|
setTreasuryWallet(_treasuryWallet);
|
|
swapTokensAtAmount = (TOTAL * 5) / 10000;
|
|
|
|
setBuyFee(_buyFee);
|
|
setSellFee(_sellFee);
|
|
emit Transfer(address(0), _msgSender(), TOTAL);
|
|
}
|
|
|
|
function symbol() external pure returns (string memory) {
|
|
return SYMBOL;
|
|
}
|
|
|
|
function name() external pure returns (string memory) {
|
|
return NAME;
|
|
}
|
|
|
|
function decimals() external pure returns (uint8) {
|
|
return DECIMALS;
|
|
}
|
|
|
|
function totalSupply() external view override returns (uint256) {
|
|
return TOTAL;
|
|
}
|
|
|
|
function balanceOf(address account) public view override returns (uint256) {
|
|
return _balances[account];
|
|
}
|
|
|
|
function transfer(address recipient, uint256 amount)
|
|
external
|
|
override
|
|
returns (bool)
|
|
{
|
|
_transfer(_msgSender(), recipient, amount);
|
|
return true;
|
|
}
|
|
|
|
function allowance(address owner, address spender)
|
|
external
|
|
view
|
|
override
|
|
returns (uint256)
|
|
{
|
|
return _allowances[owner][spender];
|
|
}
|
|
|
|
function approve(address spender, uint256 amount)
|
|
external
|
|
override
|
|
returns (bool)
|
|
{
|
|
_approve(_msgSender(), spender, amount);
|
|
return true;
|
|
}
|
|
|
|
function setIsBurnable(bool _burnable) external onlyOwner {
|
|
isBurnable = _burnable;
|
|
}
|
|
|
|
function transferFrom(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount
|
|
) external override returns (bool) {
|
|
_transfer(sender, recipient, amount);
|
|
_approve(
|
|
sender,
|
|
_msgSender(),
|
|
_allowances[sender][_msgSender()].sub(
|
|
amount,
|
|
"ERC20: transfer amount exceeds allowance"
|
|
)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function increaseAllowance(address spender, uint256 addedValue)
|
|
external
|
|
virtual
|
|
returns (bool)
|
|
{
|
|
_approve(
|
|
_msgSender(),
|
|
spender,
|
|
_allowances[_msgSender()][spender].add(addedValue)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function decreaseAllowance(address spender, uint256 subtractedValue)
|
|
external
|
|
virtual
|
|
returns (bool)
|
|
{
|
|
_approve(
|
|
_msgSender(),
|
|
spender,
|
|
_allowances[_msgSender()][spender].sub(
|
|
subtractedValue,
|
|
"ERC20: decreased allowance below zero"
|
|
)
|
|
);
|
|
return true;
|
|
}
|
|
|
|
function _approve(
|
|
address owner,
|
|
address spender,
|
|
uint256 amount
|
|
) private {
|
|
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 burn(uint256 amount) external lockTheBurn {
|
|
_burn(_msgSender(), amount, balanceOf(_msgSender()));
|
|
}
|
|
|
|
|
|
function setSwapTokensAtAmount(uint256 newAmount)
|
|
external
|
|
onlyOwner
|
|
returns (bool)
|
|
{
|
|
require(
|
|
newAmount >= (TOTAL * 1) / 100000,
|
|
"Swap amount cannot be lower than 0.001% total supply."
|
|
);
|
|
require(
|
|
newAmount <= (TOTAL * 5) / 1000,
|
|
"Swap amount cannot be higher than 0.5% total supply."
|
|
);
|
|
swapTokensAtAmount = newAmount;
|
|
return true;
|
|
}
|
|
|
|
function blockBots(address[] memory bots_) public onlyOwner {
|
|
for (uint256 i = 0; i < bots_.length; i++) {
|
|
bots[bots_[i]] = true;
|
|
}
|
|
}
|
|
|
|
function unblockBot(address notbot) public onlyOwner {
|
|
bots[notbot] = false;
|
|
}
|
|
|
|
function isExcludedFromFee(address account) external view returns (bool) {
|
|
return _isExcludedFromFee[account];
|
|
}
|
|
|
|
function excludeFromFee(address account) external onlyOwner {
|
|
_isExcludedFromFee[account] = true;
|
|
emit ExcludedFromFee(account);
|
|
}
|
|
|
|
function includeInFee(address account) external onlyOwner {
|
|
_isExcludedFromFee[account] = false;
|
|
emit IncludedToFee(account);
|
|
}
|
|
|
|
function setTreasuryWallet(address account) public onlyOwner {
|
|
emit UpdateTreasuryWallet(treasuryWallet, account);
|
|
treasuryWallet = account;
|
|
}
|
|
|
|
function setBuyFee(uint256 _fee) public onlyOwner {
|
|
require(_fee <= 10, "value can not be over 10");
|
|
emit UpdatedBuyFee(buyFee, _fee);
|
|
buyFee = _fee;
|
|
}
|
|
|
|
function setSellFee(uint256 _fee) public onlyOwner {
|
|
require(_fee <= 10, "value can not be over 10");
|
|
emit UpdatedSellFee(sellFee, _fee);
|
|
sellFee = _fee;
|
|
}
|
|
|
|
function setAutomatedMarketMakerPair(address pair, bool value)
|
|
public
|
|
onlyOwner
|
|
{
|
|
require(
|
|
pair != uniswapV2Pair,
|
|
"The bitAI LP pair cannot be removed from automatedMarketMakerPairs"
|
|
);
|
|
|
|
_setAutomatedMarketMakerPair(pair, value);
|
|
}
|
|
|
|
function _setAutomatedMarketMakerPair(address pair, bool value) private {
|
|
require(
|
|
automatedMarketMakerPairs[pair] != value,
|
|
"Automated market maker pair is already set to that value"
|
|
);
|
|
automatedMarketMakerPairs[pair] = value;
|
|
|
|
emit SetAutomatedMarketMakerPair(pair, value);
|
|
}
|
|
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 amount
|
|
) private {
|
|
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");
|
|
require(
|
|
!bots[from] && !bots[to],
|
|
"TOKEN: Your account is blacklisted!"
|
|
);
|
|
|
|
uint256 contractTokenBalance = balanceOf(address(this));
|
|
|
|
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
|
|
|
|
if (canSwap && !inSwapAndLiquify && !automatedMarketMakerPairs[from]) {
|
|
swapAndSendToFee(swapTokensAtAmount, treasuryWallet);
|
|
}
|
|
|
|
bool takeFee = false;
|
|
|
|
if (
|
|
balanceOf(uniswapV2Pair) > 0 &&
|
|
(from == uniswapV2Pair || to == uniswapV2Pair)
|
|
) {
|
|
takeFee = true;
|
|
}
|
|
|
|
if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
|
|
takeFee = false;
|
|
}
|
|
|
|
_tokenTransfer(from, to, amount, takeFee);
|
|
}
|
|
|
|
function _burn(
|
|
address account,
|
|
uint256 accBalance,
|
|
uint256 burnAmount
|
|
) internal {
|
|
require(account != address(0), "ERC20: burn from the zero address");
|
|
|
|
require(accBalance >= burnAmount, "ERC20: burn amount exceeds balance");
|
|
unchecked {
|
|
_balances[account] = accBalance - burnAmount;
|
|
TOTAL -= burnAmount;
|
|
}
|
|
|
|
emit Transfer(account, address(0), burnAmount);
|
|
}
|
|
|
|
function swapAndSendToFee(uint256 tokens, address receiver)
|
|
private
|
|
lockTheSwap
|
|
{
|
|
uint256 initialBalance = address(this).balance;
|
|
|
|
swapTokensForEth(tokens);
|
|
|
|
uint256 newBalance = address(this).balance.sub(initialBalance);
|
|
|
|
payable(receiver).transfer(newBalance);
|
|
}
|
|
|
|
function _takeFees(uint256 amount, bool isSell) internal returns (uint256) {
|
|
uint256 tradingFee = isSell ? sellFee : buyFee;
|
|
uint256 treasuryAndBurnFee = amount.mul(tradingFee).div(100);
|
|
|
|
_balances[address(this)] = _balances[address(this)].add(
|
|
treasuryAndBurnFee
|
|
);
|
|
|
|
return amount.sub(treasuryAndBurnFee);
|
|
}
|
|
|
|
function _tokenTransfer(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount,
|
|
bool takeFee
|
|
) private {
|
|
uint256 tTransferAmount = amount;
|
|
if (takeFee) {
|
|
tTransferAmount = _takeFees(amount, recipient == uniswapV2Pair);
|
|
}
|
|
_balances[sender] = _balances[sender].sub(amount);
|
|
_balances[recipient] = _balances[recipient].add(tTransferAmount);
|
|
emit Transfer(sender, recipient, tTransferAmount);
|
|
}
|
|
|
|
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, // accept any amount of ETH
|
|
path,
|
|
address(this),
|
|
block.timestamp
|
|
);
|
|
}
|
|
|
|
function withdrawETH(uint256 amount) public onlyOwner {
|
|
uint256 balance = address(this).balance;
|
|
|
|
require(
|
|
amount <= balance,
|
|
"Withdrawable: you cannot remove this total amount"
|
|
);
|
|
|
|
Address.sendValue(payable(_msgSender()), amount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function withdrawERC20(address tokenAddress, uint256 amount)
|
|
external
|
|
onlyOwner
|
|
{
|
|
IERC20 tokenContract = IERC20(tokenAddress);
|
|
|
|
uint256 balance = tokenContract.balanceOf(address(this));
|
|
require(
|
|
amount <= balance,
|
|
"Withdrawable: you cannot remove this total amount"
|
|
);
|
|
|
|
require(
|
|
tokenContract.transfer(_msgSender(), amount),
|
|
"Withdrawable: Fail on transfer"
|
|
);
|
|
}
|
|
|
|
receive() external payable {}
|
|
} |