Saitama Kitty is a community-driven meme token on the Binance Smart Chain Network that drives to provides utility to its users via SAIBRIDGE.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract creator or owner is blacklisted for past scams
AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#597-610) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#506-554):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#516)
- swapAndLiquify(contractTokenBalance) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#541)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#588-594)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#541)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#553)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#444)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#452)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#672)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#650)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#696)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#651)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#304)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#697)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#674)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#306)
- _tokenTransfer(from,to,amount,takeFee) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#553)
- _rTotal = _rTotal.sub(rFee) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#353)
- _tokenTransfer(from,to,amount,takeFee) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#553)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#445)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#454)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#695)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#303)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#673)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#305)
Apply the check-effects-interactions pattern.
Additional information: link
OwnableUpgradeable.__gap (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#74) shadows:
- ContextUpgradeable.__gap (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#31)
Remove the state variable shadowing.
Additional information: link
AntiBotLiquidityGeneratorToken.setMaxTxPercent(uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#339-342) contains a tautology or contradiction:
- require(bool,string)(maxTxBps >= 0 && maxTxBps <= 10 ** 4,Invalid bps) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#340)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
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.
Reentrancy in AntiBotLiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16,address) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#73-152):
External calls:
- pinkAntiBot.setTokenOwner(owner_) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#102)
State variables written after the call(s):
- OwnableUpgradeable.__Ownable_init() (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#105)
- _initialized = true (@openzeppelin/contracts-upgradeable/proxy/Initializable.sol#41)
- OwnableUpgradeable.__Ownable_init() (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#105)
- _initializing = true (@openzeppelin/contracts-upgradeable/proxy/Initializable.sol#40)
- _initializing = false (@openzeppelin/contracts-upgradeable/proxy/Initializable.sol#47)
Apply the check-effects-interactions pattern.
Additional information: link
AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#597-610) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
Ensure that all the return values of the function calls are used.
Additional information: link
AntiBotLiquidityGeneratorToken._approve(address,address,uint256).owner (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#495) shadows:
- OwnableUpgradeable.owner() (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#41-43) (function)
Rename the local variables that shadow another component.
Additional information: link
AntiBotLiquidityGeneratorToken.setMaxTxPercent(uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#339-342) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxBps).div(10 ** 4) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#341)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#193-205):
External calls:
- _transfer(sender,recipient,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#588-594)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#516)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#199-203)
- _allowances[owner][spender] = amount (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#502)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#193-205):
External calls:
- _transfer(sender,recipient,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#588-594)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#516)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#198)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#602-609)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#503)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#199-203)
Apply the check-effects-interactions pattern.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#171-188) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#180-183)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.4.24<0.8.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.2<0.8.0', '^0.7.0', '^0.7.6']
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#3)
- >=0.4.24<0.8.0 (@openzeppelin/contracts-upgradeable/proxy/Initializable.sol#4)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol#3)
- >=0.6.2<0.8.0 (@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#3)
- ^0.7.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- ^0.7.0 (@openzeppelin/contracts/utils/Address.sol#3)
- >=0.5.0 (contracts/antibot/IPinkAntiBot.sol#2)
- >=0.5.0 (contracts/interfaces/IAntiBotLiquidityGeneratorToken.sol#2)
- >=0.5.0 (contracts/interfaces/IUniswapV2Factory.sol#2)
- >=0.5.0 (contracts/interfaces/IUniswapV2Pair.sol#2)
- >=0.6.2 (contracts/interfaces/IUniswapV2Router02.sol#2)
- ^0.7.6 (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#3)
Use one Solidity version.
Additional information: link
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#35-38) is never used and should be removed
Remove unused functions.
Additional information: link
AntiBotLiquidityGeneratorToken._previousCharityFee (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#48) 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
Pragma version>=0.6.2 (contracts/interfaces/IUniswapV2Router02.sol#2) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#163-169):
- (success,returndata) = target.delegatecall(data) (@openzeppelin/contracts/utils/Address.sol#167)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable AntiBotLiquidityGeneratorToken._maxTxAmount (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#57) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#28)" inContextUpgradeable (@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol#16-32)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#255) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#298)
Prevent variables from having similar names.
Additional information: link
OwnableUpgradeable.__gap (@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol#74) is never used in AntiBotLiquidityGeneratorToken (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#15-703)
Remove unused state variables.
Additional information: link
isExcludedFromFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.isExcludedFromFee(address) (contracts/tokens/AntiBotLiquidityGeneratorToken.sol#490-492)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to crawl data from the website
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/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account