AirDropper Token Logo

AIR [AirDropper] Token

About AIR

Listings

Token 2 years
CoinMarketCap 2 years
white paper

AirDropper is designed to be the simplest solution on the Binance Smart Chain in order to Launch & Monitor an airdrop campaign for BSC Tokens. It allows the end user to claim tokens for free and to discover new projects on the Binance Smart Chain also providing multiple tools to promote your token and send customized urls to users so they can claim your airdrop. We have a 7% Total Transaction Fee, 3% goes to the LP, 4% goes to the marketing wallet. The Dev Team is doxxed and KCY'ed. The road map is on track.

Social

Laser Scorebeta Last Audit: 16 July 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1409)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#1418)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1642)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1620)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1666)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1259)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1621)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1667)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1644)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1261)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _rTotal = _rTotal.sub(rFee) (#1301)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1411)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#1420-1422)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1665)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1258)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1643)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1260)
Apply the check-effects-interactions pattern.

Additional information: link

AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1567-1580) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(charityFeeBps_ >= 0 && charityFeeBps_ <= 10 ** 4,Invalid charity fee) (#1009-1012)
AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps_ >= 0 && liquidityFeeBps_ <= 10 ** 4,Invalid liquidity fee) (#1005-1008)
AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps_ >= 0 && taxFeeBps_ <= 10 ** 4,Invalid tax fee) (#1004)
AntiBotLiquidityGeneratorToken.setTaxFeePercent(uint256) (#1276-1279) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps >= 0 && taxFeeBps <= 10 ** 4,Invalid bps) (#1277)
AntiBotLiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1281-1290) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps >= 0 && liquidityFeeBps <= 10 ** 4,Invalid bps) (#1285-1288)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#469-474):
- (success) = recipient.call{value: amount}() (#472)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#537-548):
- (success,returndata) = target.call{value: value}(data) (#546)
Low level call in Address.functionStaticCall(address,bytes,string) (#566-575):
- (success,returndata) = target.staticcall(data) (#573)
Low level call in Address.functionDelegateCall(address,bytes,string) (#593-602):
- (success,returndata) = target.delegatecall(data) (#600)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1567-1580) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Ensure that all the return values of the function calls are used.

Additional information: link

AntiBotLiquidityGeneratorToken.allowance(address,address).owner (#1109) shadows:
- Ownable.owner() (#146-148) (function)
AntiBotLiquidityGeneratorToken._approve(address,address,uint256).owner (#1471) shadows:
- Ownable.owner() (#146-148) (function)
Rename the local variables that shadow another component.

Additional information: link

AntiBotLiquidityGeneratorToken.setTaxFeePercent(uint256) (#1276-1279) should emit an event for:
- _taxFee = taxFeeBps (#1278)
AntiBotLiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1281-1290) should emit an event for:
- _liquidityFee = liquidityFeeBps (#1289)
Emit an event for critical parameter changes.

Additional information: link

AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256).serviceFeeReceiver_ (#1001) lacks a zero-check on :
- address(serviceFeeReceiver_).transfer(serviceFee_) (#1072)
Check that the address is not zero.

Additional information: link

Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#1511)
- _allowances[owner][spender] = amount (#1478)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _charityFee = _previousCharityFee (#1463)
- _charityFee = 0 (#1457)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _liquidityFee = _previousLiquidityFee (#1462)
- _liquidityFee = 0 (#1456)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousCharityFee = _charityFee (#1453)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousLiquidityFee = _liquidityFee (#1452)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousTaxFee = _taxFee (#1451)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1302)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _taxFee = _previousTaxFee (#1461)
- _taxFee = 0 (#1455)
Reentrancy in AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073):
External calls:
- pinkAntiBot.setTokenOwner(owner()) (#1025)
State variables written after the call(s):
- _charityAddress = charityAddress_ (#1041)
- _charityFee = charityFeeBps_ (#1042)
- _decimals = 9 (#1030)
- _liquidityFee = liquidityFeeBps_ (#1038)
- _name = name_ (#1028)
- _previousCharityFee = _charityFee (#1043)
- _previousLiquidityFee = _liquidityFee (#1039)
- _previousTaxFee = _taxFee (#1036)
- _rOwned[owner()] = _rTotal (#1049)
- _rTotal = (MAX - (MAX % _tTotal)) (#1033)
- _symbol = symbol_ (#1029)
- _tTotal = totalSupply_ (#1032)
- _taxFee = taxFeeBps_ (#1035)
- enableAntiBot = true (#1026)
- numTokensSellToAddToLiquidity = totalSupply_.mul(5).div(10 ** 4) (#1045)
- swapAndLiquifyEnabled = true (#1047)
Reentrancy in AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073):
External calls:
- pinkAntiBot.setTokenOwner(owner()) (#1025)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1053-1054)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#1060)
- _isExcludedFromFee[address(this)] = true (#1061)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1053-1054)
- uniswapV2Router = _uniswapV2Router (#1057)
Reentrancy in AntiBotLiquidityGeneratorToken.swapAndLiquify(uint256) (#1526-1547):
External calls:
- swapTokensForEth(half) (#1538)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1544)
- _allowances[owner][spender] = amount (#1478)
Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142):
External calls:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1133-1140)
- _allowances[owner][spender] = amount (#1478)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- swapAndLiquify(contractTokenBalance) (#1511)
- SwapAndLiquify(half,newBalance,otherHalf) (#1546)
- swapAndLiquify(contractTokenBalance) (#1511)
- Transfer(_msgSender(),_charityAddress,tCharity) (#1423)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1625)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1648)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1671)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1265)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
Reentrancy in AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073):
External calls:
- pinkAntiBot.setTokenOwner(owner()) (#1025)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1053-1054)
Event emitted after the call(s):
- TokenCreated(owner(),address(this),TokenType.antiBotLiquidityGenerator,VERSION) (#1065-1070)
- Transfer(address(0),owner(),_tTotal) (#1063)
Reentrancy in AntiBotLiquidityGeneratorToken.swapAndLiquify(uint256) (#1526-1547):
External calls:
- swapTokensForEth(half) (#1538)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- addLiquidity(otherHalf,newBalance) (#1544)
- SwapAndLiquify(half,newBalance,otherHalf) (#1546)
Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142):
External calls:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1133-1140)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#441-451) uses assembly
- INLINE ASM (#447-449)
Address.verifyCallResult(bool,bytes,string) (#610-630) uses assembly
- INLINE ASM (#622-625)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (#494-496) is never used and should be removed
Address.functionCall(address,bytes,string) (#504-510) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#523-529) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#537-548) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#583-585) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#593-602) is never used and should be removed
Address.functionStaticCall(address,bytes) (#556-558) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#566-575) is never used and should be removed
Address.isContract(address) (#441-451) is never used and should be removed
Address.sendValue(address,uint256) (#469-474) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#610-630) is never used and should be removed
Context._msgData() (#106-108) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#376-385) is never used and should be removed
SafeMath.mod(uint256,uint256) (#336-338) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#402-411) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#207-213) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#249-254) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#261-266) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#232-242) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#220-225) is never used and should be removed
Remove unused functions.

Additional information: link

AntiBotLiquidityGeneratorToken._previousTaxFee (#957) is set pre-construction with a non-constant function or state variable:
- _taxFee
AntiBotLiquidityGeneratorToken._previousLiquidityFee (#960) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
AntiBotLiquidityGeneratorToken._previousCharityFee (#963) is set pre-construction with a non-constant function or state variable:
- _charityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Function IUniswapV2Router01.WETH() (#641) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.setEnableAntiBot(bool)._enable (#1075) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool)._enabled (#1292) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateTaxFee(uint256)._amount (#1427) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateLiquidityFee(uint256)._amount (#1431) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateCharityFee(uint256)._amount (#1439) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._taxFee (#956) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._liquidityFee (#959) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._charityFee (#962) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._charityAddress (#967) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#646) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#647)
Variable AntiBotLiquidityGeneratorToken._charityAddress (#967) is too similar to AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256).charityAddress_ (#996)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._charityFee (#962) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tCharityFee (#1354)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-167)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-176)
name() should be declared external:
- AntiBotLiquidityGeneratorToken.name() (#1079-1081)
symbol() should be declared external:
- AntiBotLiquidityGeneratorToken.symbol() (#1083-1085)
decimals() should be declared external:
- AntiBotLiquidityGeneratorToken.decimals() (#1087-1089)
totalSupply() should be declared external:
- AntiBotLiquidityGeneratorToken.totalSupply() (#1091-1093)
transfer(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.transfer(address,uint256) (#1100-1107)
allowance(address,address) should be declared external:
- AntiBotLiquidityGeneratorToken.allowance(address,address) (#1109-1116)
approve(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.approve(address,uint256) (#1118-1125)
transferFrom(address,address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142)
increaseAllowance(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.increaseAllowance(address,uint256) (#1144-1155)
decreaseAllowance(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.decreaseAllowance(address,uint256) (#1157-1171)
isExcludedFromReward(address) should be declared external:
- AntiBotLiquidityGeneratorToken.isExcludedFromReward(address) (#1173-1175)
totalFees() should be declared external:
- AntiBotLiquidityGeneratorToken.totalFees() (#1177-1179)
deliver(uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.deliver(uint256) (#1181-1191)
reflectionFromToken(uint256,bool) should be declared external:
- AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool) (#1193-1206)
excludeFromReward(address) should be declared external:
- AntiBotLiquidityGeneratorToken.excludeFromReward(address) (#1221-1229)
excludeFromFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.excludeFromFee(address) (#1268-1270)
includeInFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.includeInFee(address) (#1272-1274)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AntiBotLiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool) (#1292-1295)
isExcludedFromFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.isExcludedFromFee(address) (#1466-1468)
Use the external attribute for functions never called from the contract.

Additional information: link

AntiBotLiquidityGeneratorToken.includeInReward(address) (#1231-1242) has costly operations inside a loop:
- _excluded.pop() (#1238)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 7% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for AIR

News for AIR