// SPDX-License-Identifier: MIT
// File: contracts/Mbappepe/Libraries.sol
// _____ __________ _____ ___________________________________________________
// / \\______ \ / _ \\______ \______ \_ _____|______ \_ _____/
// / \ / \| | _/ / /_\ \| ___/| ___/| __)_ | ___/| __)_
// / Y \ | \/ | \ | | | | \| | | \
// \____|__ /______ /\____|__ /____| |____| /_______ /|____| /_______ /
// __________________/ ______________ ______________ _____ ________ ________ _______
// \__ ___|_____ \ \__ ___/ | \_ _____/ / \ \_____ \ \_____ \ \ \
// | | / | \ | | / ~ \ __)_ / \ / \ / | \ / | \ / | \
// | | / | \ | | \ Y / \ / Y \/ | \/ | \/ | \
// |____| \_______ / |____| \___|_ /_______ / \____|__ /\_______ /\_______ /\____|__ /
// ___ ___ _____\__________._____________.___ \_________ ________ \/_____ \/_____ ___________ __________________ __________ _____ __________.___ _________
// / | \ / _ \\______ \ \______ \ | \_ ___ \\_____ \ / \ / \ \_ _____/ \__ ___|_____ \ \______ \/ _ \\______ \ |/ _____/
// / ~ \/ /_\ \| | _/ || | _/ | / \ \/ / | \ / \ / \ / \ / \ | __)_ | | / | \ | ___/ /_\ \| _/ |\_____ \
// \ Y / | \ | \ || | \ | \ \___/ | \/ Y \/ Y \| \ | | / | \ | | / | \ | \ |/ \
// \___|_ /\____|__ /______ /___||______ /___| \______ |_______ /\____|__ /\____|__ /_______ / |____| \_______ / |____| \____|__ /____|_ /___/_______ /
// \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/
pragma solidity ^0.8.4;
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 IUniswapFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapRouter {
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
}
abstract contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = msg.sender;
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == msg.sender, "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/Mbappepe/Mbappepe.sol
// _____ __________ _____ ___________________________________________________
// / \\______ \ / _ \\______ \______ \_ _____|______ \_ _____/
// / \ / \| | _/ / /_\ \| ___/| ___/| __)_ | ___/| __)_
// / Y \ | \/ | \ | | | | \| | | \
// \____|__ /______ /\____|__ /____| |____| /_______ /|____| /_______ /
// __________________/ ______________ ______________ _____ ________ ________ _______
// \__ ___|_____ \ \__ ___/ | \_ _____/ / \ \_____ \ \_____ \ \ \
// | | / | \ | | / ~ \ __)_ / \ / \ / | \ / | \ / | \
// | | / | \ | | \ Y / \ / Y \/ | \/ | \/ | \
// |____| \_______ / |____| \___|_ /_______ / \____|__ /\_______ /\_______ /\____|__ /
// ___ ___ _____\__________._____________.___ \_________ ________ \/_____ \/_____ ___________ __________________ __________ _____ __________.___ _________
// / | \ / _ \\______ \ \______ \ | \_ ___ \\_____ \ / \ / \ \_ _____/ \__ ___|_____ \ \______ \/ _ \\______ \ |/ _____/
// / ~ \/ /_\ \| | _/ || | _/ | / \ \/ / | \ / \ / \ / \ / \ | __)_ | | / | \ | ___/ /_\ \| _/ |\_____ \
// \ Y / | \ | \ || | \ | \ \___/ | \/ Y \/ Y \| \ | | / | \ | | / | \ | \ |/ \
// \___|_ /\____|__ /______ /___||______ /___| \______ |_______ /\____|__ /\____|__ /_______ / |____| \_______ / |____| \____|__ /____|_ /___/_______ /
// \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/ \/
pragma solidity ^0.8.4;
contract MBAPPEPE is IERC20Metadata, Ownable
{
mapping (address => uint) private _balances;
mapping (address => mapping (address => uint)) private _allowances;
mapping(address => bool) public excludedFromFees;
mapping(address => bool) public excludedFromLimit;
mapping(address=>bool) public isAMM;
//Token Info
string private constant _name = 'MbapPepe';
string private constant _symbol = 'PePe7';
uint8 private constant _decimals = 18;
uint public constant InitialSupply= 7777777*10**_decimals;
uint private constant DefaultLiquidityLockTime=7 days;
//0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3 testnet router
//0x10ED43C718714eb63d5aA57B78B54704E256024E mainnet router
address private constant UniswapRouter=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
//variables that track balanceLimit and sellLimit,
//can be updated based on circulating supply and Sell- and BalanceLimitDividers
uint private _circulatingSupply =InitialSupply;
//Tracks the current Taxes, different Taxes can be applied for buy/sell/transfer
uint public buyTax = 50;
uint public sellTax = 50;
uint public transferTax = 0;
uint public burnTax=0;
uint public liquidityTax=0;
uint public marketingTax=1000;
uint constant TAX_DENOMINATOR=1000;
uint constant MAXTAXDENOMINATOR=10;
uint public LimitV = 1;
uint public LimitSell = 1;
address private _uniswapPairAddress;
IUniswapRouter private _uniswapRouter;
//TODO: marketingWallet
address public marketingWallet;
//Only marketingWallet can change marketingWallet
function ChangeMarketingWallet(address newWallet) public{
require(msg.sender==marketingWallet);
marketingWallet=newWallet;
}
//modifier for functions only the team can call
modifier onlyTeam() {
require(_isTeam(msg.sender), "Caller not Team or Owner");
_;
}
//Checks if address is in Team, is needed to give Team access even if contract is renounced
//Team doesn't have access to critical Functions that could turn this into a Rugpull(Exept liquidity unlocks)
function _isTeam(address addr) private view returns (bool){
return addr==owner()||addr==marketingWallet;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Constructor///////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
constructor () {
uint deployerBalance=_circulatingSupply;
_balances[msg.sender] = deployerBalance;
emit Transfer(address(0), msg.sender, deployerBalance);
// Uniswap Router
_uniswapRouter = IUniswapRouter(UniswapRouter);
//Creates a Uniswap Pair
_uniswapPairAddress = IUniswapFactory(_uniswapRouter.factory()).createPair(address(this), _uniswapRouter.WETH());
isAMM[_uniswapPairAddress]=true;
//contract creator is by default marketing wallet
marketingWallet=msg.sender;
//owner uniswap router and contract is excluded from Taxes
excludedFromFees[msg.sender]=true;
excludedFromFees[UniswapRouter]=true;
excludedFromFees[address(this)]=true;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Transfer functionality////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
//transfer function, every transfer runs through this function
function _transfer(address sender, address recipient, uint amount) private{
require(sender != address(0), "Transfer from zero");
require(recipient != address(0), "Transfer to zero");
//Pick transfer
if(excludedFromFees[sender] || excludedFromFees[recipient])
_feelessTransfer(sender, recipient, amount);
else if(excludedFromLimit[recipient]){
//once trading is enabled, it can't be turned off again
require(LaunchTimestamp>0,"trading not yet enabled");
_LimitlessFonctionTransfer(sender,recipient,amount);
}
else {
//once trading is enabled, it can't be turned off again
require(LaunchTimestamp>0,"trading not yet enabled");
_taxedTransfer(sender,recipient,amount);
}
}
//applies taxes, checks for limits, locks generates autoLP and stakingETH, and autostakes
function _taxedTransfer(address sender, address recipient, uint amount) private{
uint senderBalance = _balances[sender];
uint recipientBalance = _balances[recipient];
require(senderBalance >= amount, "Transfer exceeds balance");
require(senderBalance/LimitSell >= amount, "Transfer exceeds authorise sell");
require((recipientBalance + amount ) <= InitialSupply/LimitV, "Wallet contain more than certain % Total Supply");
bool isBuy=isAMM[sender];
bool isSell=isAMM[recipient];
uint tax;
if(isSell){
uint SellTaxDuration=180 seconds;
if(block.timestamp<LaunchTimestamp+SellTaxDuration){
tax=_getStartTax(SellTaxDuration,999);
}else tax=sellTax;
}
else if(isBuy){
uint BuyTaxDuration=60 seconds;
if(block.timestamp<LaunchTimestamp+BuyTaxDuration){
tax=_getStartTax(BuyTaxDuration,999);
}else tax=buyTax;
} else tax=transferTax;
if((sender!=_uniswapPairAddress)&&(!manualSwap)&&(!_isSwappingContractModifier))
_swapContractToken(false);
//Calculates the exact token amount for each tax
uint tokensToBeBurnt=_calculateFee(amount, tax, burnTax);
//staking and liquidity Tax get treated the same, only during conversion they get split
uint contractToken=_calculateFee(amount, tax, marketingTax+liquidityTax);
//Subtract the Taxed Tokens from the amount
uint taxedAmount=amount-(tokensToBeBurnt + contractToken);
_balances[sender]-=amount;
//Adds the taxed tokens to the contract wallet
_balances[address(this)] += contractToken;
//Burns tokens
_circulatingSupply-=tokensToBeBurnt;
_balances[recipient]+=taxedAmount;
emit Transfer(sender,recipient,taxedAmount);
}
//Start tax drops depending on the time since launch, enables bot protection and Dump protection
function _getStartTax(uint duration, uint maxTax) private view returns (uint){
uint timeSinceLaunch=block.timestamp-LaunchTimestamp;
return maxTax-((maxTax-50)*timeSinceLaunch/duration);
}
//Calculates the token that should be taxed
function _calculateFee(uint amount, uint tax, uint taxPercent) private pure returns (uint) {
return (amount*tax*taxPercent) / (TAX_DENOMINATOR*TAX_DENOMINATOR);
}
//Feeless transfer only transfers and autostakes
function _feelessTransfer(address sender, address recipient, uint amount) private{
uint senderBalance = _balances[sender];
require(senderBalance >= amount, "Transfer exceeds balance");
_balances[sender]-=amount;
_balances[recipient]+=amount;
emit Transfer(sender,recipient,amount);
}
///////////////////////////////YeaaaahBrooooooo//////////addd
function _LimitlessFonctionTransfer (address sender, address recipient, uint amount) private{
uint senderBalance = _balances[sender];
require(senderBalance >= amount, "Transfer exceeds balance");
bool isBuy=isAMM[sender];
bool isSell=isAMM[recipient];
uint tax;
if(isSell){
uint SellTaxDuration=180 seconds;
if(block.timestamp<LaunchTimestamp+SellTaxDuration){
tax=_getStartTax(SellTaxDuration,999);
}else tax=sellTax;
}
else if(isBuy){
uint BuyTaxDuration=60 seconds;
if(block.timestamp<LaunchTimestamp+BuyTaxDuration){
tax=_getStartTax(BuyTaxDuration,999);
}else tax=buyTax;
} else tax=transferTax;
if((sender!=_uniswapPairAddress)&&(!manualSwap)&&(!_isSwappingContractModifier))
_swapContractToken(false);
//Calculates the exact token amount for each tax
uint tokensToBeBurnt=_calculateFee(amount, tax, burnTax);
//staking and liquidity Tax get treated the same, only during conversion they get split
uint contractToken=_calculateFee(amount, tax, marketingTax+liquidityTax);
//Subtract the Taxed Tokens from the amount
uint taxedAmount=amount-(tokensToBeBurnt + contractToken);
_balances[sender]-=amount;
//Adds the taxed tokens to the contract wallet
_balances[address(this)] += contractToken;
//Burns tokens
_circulatingSupply-=tokensToBeBurnt;
_balances[recipient]+=taxedAmount;
emit Transfer(sender,recipient,taxedAmount);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Swap Contract Tokens yeaaaaah Broo//////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Locks the swap if already swapping
bool private _isSwappingContractModifier;
modifier lockTheSwap {
_isSwappingContractModifier = true;
_;
_isSwappingContractModifier = false;
}
//Sets the permille of uniswap pair to trigger liquifying taxed token
uint public swapTreshold=2;
function setSwapTreshold(uint newSwapTresholdPermille) public onlyTeam{
require(newSwapTresholdPermille<=15);//MaxTreshold= 1.5%
swapTreshold=newSwapTresholdPermille;
}
//Sets the max Liquidity where swaps for Liquidity still happen
uint public overLiquifyTreshold=150;
function SetOverLiquifiedTreshold(uint newOverLiquifyTresholdPermille) public onlyTeam{
require(newOverLiquifyTresholdPermille<=1000);
overLiquifyTreshold=newOverLiquifyTresholdPermille;
}
//Sets the taxes Burn+marketing+liquidity tax needs to equal the TAX_DENOMINATOR (1000)
//buy, sell and transfer tax are limited by the MAXTAXDENOMINATOR
event OnSetTaxes(uint buy, uint sell, uint transfer_, uint burn, uint marketing,uint liquidity);
function SetTaxes(uint buy, uint sell, uint transfer_, uint burn, uint marketing,uint liquidity) public onlyTeam{
uint maxTax=(TAX_DENOMINATOR/MAXTAXDENOMINATOR)/2;
require(buy<=maxTax&&sell<=maxTax&&transfer_<=maxTax,"Tax exceeds maxTax");
require(burn+marketing+liquidity==TAX_DENOMINATOR,"Taxes don't add up to denominator");
buyTax=buy;
sellTax=sell;
transferTax=transfer_;
marketingTax=marketing;
liquidityTax=liquidity;
burnTax=burn;
emit OnSetTaxes(buy, sell, transfer_, burn, marketing,liquidity);
}
event OnSetLimit(uint LimitV2);
function SetLimit(uint LimitV2) public onlyTeam{
require(LimitV2<=50,"Max wallet can't be under 2% of the total supply");
LimitV=LimitV2;
emit OnSetLimit(LimitV2);
}
event OnSetSell(uint LimitSell2);
function SetSell(uint LimitSell2) public onlyTeam{
require(LimitSell2<=2,"Dump measure can't be under 50% of the wallet");
LimitSell=LimitSell2;
emit OnSetSell(LimitSell2);
}
//If liquidity is over the treshold, convert 100% of Token to Marketing ETH to avoid overliquifying
function isOverLiquified() public view returns(bool){
return _balances[_uniswapPairAddress]>_circulatingSupply*overLiquifyTreshold/1000;
}
//swaps the token on the contract for Marketing ETH and LP Token.
//always swaps a percentage of the LP pair balance to avoid price impact
function _swapContractToken(bool ignoreLimits) private lockTheSwap{
uint contractBalance=_balances[address(this)];
uint totalTax=liquidityTax+marketingTax;
//swaps each time it reaches swapTreshold of uniswap pair to avoid large prize impact
uint tokenToSwap=_balances[_uniswapPairAddress]*swapTreshold/1000;
//nothing to swap at no tax
if(totalTax==0)return;
//only swap if contractBalance is larger than tokenToSwap, and totalTax is unequal to 0
//Ignore limits swaps 100% of the contractBalance
if(ignoreLimits)
tokenToSwap=_balances[address(this)];
else if(contractBalance<tokenToSwap)
return;
//splits the token in TokenForLiquidity and tokenForMarketing
//if over liquified, 0 tokenForLiquidity
uint tokenForLiquidity=
isOverLiquified()?0
:(tokenToSwap*liquidityTax)/totalTax;
uint tokenForMarketing= tokenToSwap-tokenForLiquidity;
uint LiqHalf=tokenForLiquidity/2;
//swaps marktetingToken and the liquidity token half for ETH
uint swapToken=LiqHalf+tokenForMarketing;
//Gets the initial ETH balance, so swap won't touch any contract ETH
uint initialETHBalance = address(this).balance;
_swapTokenForETH(swapToken);
uint newETH=(address(this).balance - initialETHBalance);
//calculates the amount of ETH belonging to the LP-Pair and converts them to LP
if(tokenForLiquidity>0){
uint liqETH = (newETH*LiqHalf)/swapToken;
_addLiquidity(LiqHalf, liqETH);
}
//Sends all the marketing ETH to the marketingWallet
(bool sent,)=marketingWallet.call{value:address(this).balance}("");
sent=true;
}
//swaps tokens on the contract for ETH
function _swapTokenForETH(uint amount) private {
_approve(address(this), address(_uniswapRouter), amount);
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapRouter.WETH();
try _uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
amount,
0,
path,
address(this),
block.timestamp
){}
catch{}
}
//Adds Liquidity directly to the contract where LP are locked
function _addLiquidity(uint tokenamount, uint ethamount) private {
_approve(address(this), address(_uniswapRouter), tokenamount);
_uniswapRouter.addLiquidityETH{value: ethamount}(
address(this),
tokenamount,
0,
0,
address(this),
block.timestamp
);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//public functions /////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
function getLiquidityReleaseTimeInSeconds() public view returns (uint){
if(block.timestamp<_liquidityUnlockTime)
return _liquidityUnlockTime-block.timestamp;
return 0;
}
function getBurnedTokens() public view returns(uint){
return (InitialSupply-_circulatingSupply)+_balances[address(0xdead)];
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Settings//////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
//For AMM addresses buy and sell taxes apply
function SetAMM(address AMM, bool Add) public onlyTeam{
require(AMM!=_uniswapPairAddress,"can't change uniswap");
isAMM[AMM]=Add;
}
bool public manualSwap;
//switches autoLiquidity and marketing ETH generation during transfers
function SwitchManualSwap(bool manual) public onlyTeam{
manualSwap=manual;
}
//manually converts contract token to LP and staking ETH
function SwapContractToken() public onlyTeam{
_swapContractToken(true);
}
event ExcludeAccount(address account, bool exclude);
//Exclude/Include account from fees (eg. CEX)
function ExcludeAccountFromFees(address account, bool exclude) public onlyTeam{
require(account!=address(this),"can't Include the contract");
excludedFromFees[account]=exclude;
emit ExcludeAccount(account,exclude);
}
/////////////moussss///////////
event ExcludeAccountLimit(address account, bool exclude);
//Exclude/Include account from fees (eg. CEX)
function ExcludedFromLimit(address account, bool exclude) public onlyTeam{
require(account!=address(this),"can't Include the contract");
excludedFromLimit[account]=exclude;
emit ExcludeAccountLimit(account,exclude);
}
//Enables trading. Sets the launch timestamp to the given Value
event OnEnableTrading();
uint public LaunchTimestamp;
function SetupEnableTrading() public onlyTeam{
require(LaunchTimestamp==0,"AlreadyLaunched");
LaunchTimestamp=block.timestamp;
emit OnEnableTrading();
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//Liquidity Lock////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
//the timestamp when Liquidity unlocks
uint _liquidityUnlockTime;
bool public LPReleaseLimitedTo20Percent;
//Sets Liquidity Release to 20% at a time and prolongs liquidity Lock for a Week after Release.
//That way autoLiquidity can be slowly released
function limitLiquidityReleaseTo20Percent() public onlyTeam{
LPReleaseLimitedTo20Percent=true;
}
//Locks Liquidity for seconds. can only be prolonged
function LockLiquidityForSeconds(uint secondsUntilUnlock) public onlyTeam{
_prolongLiquidityLock(secondsUntilUnlock+block.timestamp);
}
event OnProlongLPLock(uint UnlockTimestamp);
function _prolongLiquidityLock(uint newUnlockTime) private{
// require new unlock time to be longer than old one
require(newUnlockTime>_liquidityUnlockTime);
_liquidityUnlockTime=newUnlockTime;
emit OnProlongLPLock(_liquidityUnlockTime);
}
event OnReleaseLP();
//Release Liquidity Tokens once unlock time is over
function LiquidityRelease() public onlyTeam {
//Only callable if liquidity Unlock time is over
require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked");
IERC20 liquidityToken = IERC20(_uniswapPairAddress);
uint amount = liquidityToken.balanceOf(address(this));
if(LPReleaseLimitedTo20Percent)
{
_liquidityUnlockTime=block.timestamp+DefaultLiquidityLockTime;
//regular liquidity release, only releases 50% at a time and locks liquidity for another week
amount=amount*2/10;
}
liquidityToken.transfer(msg.sender, amount);
emit OnReleaseLP();
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
//external//////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
receive() external payable {}
function name() external pure override returns (string memory) {
return _name;
}
function symbol() external pure override returns (string memory) {
return _symbol;
}
function decimals() external pure override returns (uint8) {
return _decimals;
}
function totalSupply() external view override returns (uint) {
return _circulatingSupply;
}
function balanceOf(address account) external view override returns (uint) {
return _balances[account];
}
function transfer(address recipient, uint amount) external override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
function allowance(address _owner, address spender) external view override returns (uint) {
return _allowances[_owner][spender];
}
function approve(address spender, uint amount) external override returns (bool) {
_approve(msg.sender, spender, amount);
return true;
}
function _approve(address owner, address spender, uint amount) private {
require(owner != address(0), "Approve from zero");
require(spender != address(0), "Approve to zero");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function transferFrom(address sender, address recipient, uint amount) external override returns (bool) {
_transfer(sender, recipient, amount);
uint currentAllowance = _allowances[sender][msg.sender];
require(currentAllowance >= amount, "Transfer > allowance");
_approve(sender, msg.sender, currentAllowance - amount);
return true;
}
// IERC20 - Helpers
function increaseAllowance(address spender, uint addedValue) external returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
return true;
}
function decreaseAllowance(address spender, uint subtractedValue) external returns (bool) {
uint currentAllowance = _allowances[msg.sender][spender];
require(currentAllowance >= subtractedValue, "<0 allowance");
_approve(msg.sender, spender, currentAllowance - subtractedValue);
return true;
}
}
{
"compilationTarget": {
"MBAPPEPE.sol": "MBAPPEPE"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
}
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludeAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludeAccountLimit","type":"event"},{"anonymous":false,"inputs":[],"name":"OnEnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"UnlockTimestamp","type":"uint256"}],"name":"OnProlongLPLock","type":"event"},{"anonymous":false,"inputs":[],"name":"OnReleaseLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"LimitV2","type":"uint256"}],"name":"OnSetLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"LimitSell2","type":"uint256"}],"name":"OnSetSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transfer_","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketing","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"OnSetTaxes","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"ChangeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludeAccountFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludedFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"InitialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LPReleaseLimitedTo20Percent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LaunchTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LimitSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LimitV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidityRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"secondsUntilUnlock","type":"uint256"}],"name":"LockLiquidityForSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"AMM","type":"address"},{"internalType":"bool","name":"Add","type":"bool"}],"name":"SetAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LimitV2","type":"uint256"}],"name":"SetLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newOverLiquifyTresholdPermille","type":"uint256"}],"name":"SetOverLiquifiedTreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LimitSell2","type":"uint256"}],"name":"SetSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"transfer_","type":"uint256"},{"internalType":"uint256","name":"burn","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"SetTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetupEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SwapContractToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"manual","type":"bool"}],"name":"SwitchManualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityReleaseTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAMM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOverLiquified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitLiquidityReleaseTo20Percent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"overLiquifyTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapTresholdPermille","type":"uint256"}],"name":"setSwapTreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]