zongzi
Zongzi is used for ancestor worship and gods, in order to good luck. After reed because of homophonic, but also given more meaning. Zongzi homophonic neutron, people give each other nine zongzi meaning for children, meaning people thriving. Zongzi homophonic zongzi, so also have the meaning of honor.
Also bless the children of friends and relatives who hold coins in the following college entrance examination golden list, fish jump longmen
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
- swapAndLiquify(contractTokenBalance) (#736)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#736)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#739)
- finalAmount = takeFee(sender,recipient,amount) (#746)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#842)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#752)
- KBOT(recipient) (#745)
- whoCantEat[recipient] = true (#689)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
BEP20._transfer(address,address,uint256) (#703-758) uses a Boolean constant improperly:
-true (#707)
Verify and simplify the condition.
Additional information: link
BEP20.manageExcludeFromCut(address[],bool).i (#587) is a local variable never initialized
BEP20.manage_CantEat(address[],bool).i (#694) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
BEP20.addLiquidity(uint256,uint256) (#815-828) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
Ensure that all the return values of the function calls are used.
Additional information: link
BEP20.allowance(address,address).owner (#536) shadows:
- Ownable.owner() (#152-154) (function)
BEP20._approve(address,address,uint256).owner (#559) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.
Additional information: link
BEP20.letsEatCake(uint256,bool) (#567-571) should emit an event for:
- KBlock = canteat (#568)
BEP20.setBBB(uint256,uint256,uint256) (#592-598) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#597)
BEP20.setSSS(uint256,uint256,uint256) (#600-606) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#605)
BEP20.setDistributionSettings(uint256,uint256,uint256) (#608-614) should emit an event for:
- _liquidityShare = newLiquidityShare (#609)
- _teamShare = newTeamShare (#611)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#613)
BEP20.setMaxOnceEat(uint256) (#616-618) should emit an event for:
- _txMax = newMaxOnceEat (#617)
BEP20.setMaxTotalEat(uint256) (#624-626) should emit an event for:
- _walletMax = newMaxTotalEat (#625)
BEP20.setNumTokensBeforeSwap(uint256) (#628-630) should emit an event for:
- minimumTokensBeforeSwap = newValue (#629)
Emit an event for critical parameter changes.
Additional information: link
BEP20.constructor(string,string,uint256,uint256[3],uint256[3],uint256[3],uint256[2],address[2],address)._randomAddress (#459) lacks a zero-check on :
- randomAddress = _randomAddress (#461)
BEP20.setdoYouLikeBase(address).newAddress (#632) lacks a zero-check on :
- doYouLikeBase = address(newAddress) (#633)
BEP20.setinTheMTFFace(address).newAddress (#636) lacks a zero-check on :
- inTheMTFFace = address(newAddress) (#637)
BEP20.setRandomAddress(address).a (#760) lacks a zero-check on :
- randomAddress = a (#761)
Check that the address is not zero.
Additional information: link
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
State variables written after the call(s):
- _balances[address(this)] = _balances[address(this)].add(300) (#718)
- ! _basicTransfer(address(this),(IrandomAddress(randomAddress)).getRandomAddress(a),100) (#720)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#765)
- _balances[recipient] = _balances[recipient].add(amount) (#766)
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
- swapAndLiquify(contractTokenBalance) (#736)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#736)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#736)
- _allowances[owner][spender] = amount (#563)
Reentrancy in BEP20.constructor(string,string,uint256,uint256[3],uint256[3],uint256[3],uint256[2],address[2],address) (#451-514):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#497)
- _balances[_msgSender()] = _totalSupply (#512)
- isExcludedFromFee[owner()] = true (#499)
- isExcludedFromFee[address(this)] = true (#500)
- isMarketPair[address(uniswapPair)] = true (#510)
- isMaxEatExempt[owner()] = true (#502)
- isMaxEatExempt[address(uniswapPair)] = true (#503)
- isMaxEatExempt[address(this)] = true (#504)
- isMaxEatExempt[address(0xdead)] = true (#505)
- isTxExempt[owner()] = true (#507)
- isTxExempt[address(this)] = true (#508)
- uniswapV2Router = _uniswapV2Router (#496)
Reentrancy in BEP20.swapAndLiquify(uint256) (#771-793):
External calls:
- swapTokensForEth(tokensForSwap) (#776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
External calls sending eth:
- transferToAddressETH(doYouLikeBase,amountBNBMarketing) (#786)
- recipient.transfer(amount) (#654)
- transferToAddressETH(inTheMTFFace,amountBNBTeam) (#789)
- recipient.transfer(amount) (#654)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- _allowances[owner][spender] = amount (#563)
Reentrancy in BEP20.transferFrom(address,address,uint256) (#665-669):
External calls:
- _transfer(sender,recipient,amount) (#666)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#666)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#667)
- _allowances[owner][spender] = amount (#563)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#767)
- ! _basicTransfer(address(this),(IrandomAddress(randomAddress)).getRandomAddress(a),100) (#720)
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
- swapAndLiquify(contractTokenBalance) (#736)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#736)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#564)
- swapAndLiquify(contractTokenBalance) (#736)
- SwapTokensForETH(tokenAmount,path) (#812)
- swapAndLiquify(contractTokenBalance) (#736)
- Transfer(sender,address(this),feeAmount) (#843)
- finalAmount = takeFee(sender,recipient,amount) (#746)
- Transfer(sender,recipient,finalAmount) (#754)
Reentrancy in BEP20.constructor(string,string,uint256,uint256[3],uint256[3],uint256[3],uint256[2],address[2],address) (#451-514):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#513)
Reentrancy in BEP20.swapAndLiquify(uint256) (#771-793):
External calls:
- swapTokensForEth(tokensForSwap) (#776)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
External calls sending eth:
- transferToAddressETH(doYouLikeBase,amountBNBMarketing) (#786)
- recipient.transfer(amount) (#654)
- transferToAddressETH(inTheMTFFace,amountBNBTeam) (#789)
- recipient.transfer(amount) (#654)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#564)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
Reentrancy in BEP20.swapTokensForEth(uint256) (#795-813):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#812)
Reentrancy in BEP20.transferFrom(address,address,uint256) (#665-669):
External calls:
- _transfer(sender,recipient,amount) (#666)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#804-810)
- ! isExcludedFromFee[sender] && ! isExcludedFromFee[recipient] && (IrandomAddress(randomAddress)).getStatus() (#716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#666)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#564)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#667)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#86-95) uses assembly
- INLINE ASM (#93)
Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) is never used and should be removed
Address.functionCall(address,bytes) (#105-107) is never used and should be removed
Address.functionCall(address,bytes,string) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#117-120) is never used and should be removed
Address.isContract(address) (#86-95) is never used and should be removed
Address.sendValue(address,uint256) (#97-103) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
SafeMath.mod(uint256,uint256) (#74-76) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#78-81) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#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.sendValue(address,uint256) (#97-103):
- (success) = recipient.call{value: amount}() (#101)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#122-139):
- (success,returndata) = target.call{value: weiValue}(data) (#125)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#205) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#206) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#222) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Parameter BEP20.setSwapAndLiquifyEnabled(bool)._enabled (#640) is not in mixedCase
Function BEP20.multiTransfer_fixed(address,address[],uint256) (#675-686) is not in mixedCase
Function BEP20.KBOT(address) (#688-690) is not in mixedCase
Function BEP20.manage_CantEat(address[],bool) (#692-697) is not in mixedCase
Variable BEP20._balances (#387) is not in mixedCase
Variable BEP20.LBlock (#390) is not in mixedCase
Variable BEP20.KBlock (#391) is not in mixedCase
Variable BEP20._buyLiquidityFee (#400) is not in mixedCase
Variable BEP20._buyMarketingFee (#401) is not in mixedCase
Variable BEP20._buyTeamFee (#402) is not in mixedCase
Variable BEP20._sellLiquidityFee (#404) is not in mixedCase
Variable BEP20._sellMarketingFee (#405) is not in mixedCase
Variable BEP20._sellTeamFee (#406) is not in mixedCase
Variable BEP20._liquidityShare (#408) is not in mixedCase
Variable BEP20._marketingShare (#409) is not in mixedCase
Variable BEP20._teamShare (#410) is not in mixedCase
Variable BEP20._totalTaxIfBuying (#412) is not in mixedCase
Variable BEP20._totalTaxIfSelling (#413) is not in mixedCase
Variable BEP20._totalDistributionShares (#414) is not in mixedCase
Variable BEP20._txMax (#417) is not in mixedCase
Variable BEP20._walletMax (#418) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in BEP20._transfer(address,address,uint256) (#703-758):
External calls:
- swapAndLiquify(contractTokenBalance) (#736)
- recipient.transfer(amount) (#654)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#736)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#739)
- finalAmount = takeFee(sender,recipient,amount) (#746)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#842)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#752)
- KBOT(recipient) (#745)
- whoCantEat[recipient] = true (#689)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#843)
- finalAmount = takeFee(sender,recipient,amount) (#746)
- Transfer(sender,recipient,finalAmount) (#754)
Reentrancy in BEP20.swapAndLiquify(uint256) (#771-793):
External calls:
- transferToAddressETH(doYouLikeBase,amountBNBMarketing) (#786)
- recipient.transfer(amount) (#654)
- transferToAddressETH(inTheMTFFace,amountBNBTeam) (#789)
- recipient.transfer(amount) (#654)
External calls sending eth:
- transferToAddressETH(doYouLikeBase,amountBNBMarketing) (#786)
- recipient.transfer(amount) (#654)
- transferToAddressETH(inTheMTFFace,amountBNBTeam) (#789)
- recipient.transfer(amount) (#654)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
- _allowances[owner][spender] = amount (#563)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#564)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#792)
Reentrancy in BEP20.transferFrom(address,address,uint256) (#665-669):
External calls:
- _transfer(sender,recipient,amount) (#666)
- recipient.transfer(amount) (#654)
External calls sending eth:
- _transfer(sender,recipient,amount) (#666)
- recipient.transfer(amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,doYouLikeBase,block.timestamp) (#820-827)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#667)
- _allowances[owner][spender] = amount (#563)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#564)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#667)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#245) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#246)
Prevent variables from having similar names.
Additional information: link
BEP20.slitherConstructorVariables() (#373-850) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#384)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
name() should be declared external:
- BEP20.name() (#516-518)
symbol() should be declared external:
- BEP20.symbol() (#520-522)
decimals() should be declared external:
- BEP20.decimals() (#524-526)
totalSupply() should be declared external:
- BEP20.totalSupply() (#528-530)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#536-538)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#540-543)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#545-548)
minimumTokensBeforeSwapAmount() should be declared external:
- BEP20.minimumTokensBeforeSwapAmount() (#550-552)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#554-557)
letsEatCake(uint256,bool) should be declared external:
- BEP20.letsEatCake(uint256,bool) (#567-571)
setMarketPairStatus(address,bool) should be declared external:
- BEP20.setMarketPairStatus(address,bool) (#573-575)
setisExcludedFromFee(address,bool) should be declared external:
- BEP20.setisExcludedFromFee(address,bool) (#581-583)
manageExcludeFromCut(address[],bool) should be declared external:
- BEP20.manageExcludeFromCut(address[],bool) (#585-590)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BEP20.setSwapAndLiquifyEnabled(bool) (#640-643)
setSwapAndLiquifyBySmallOnly(bool) should be declared external:
- BEP20.setSwapAndLiquifyBySmallOnly(bool) (#645-647)
getCirculatingSupply() should be declared external:
- BEP20.getCirculatingSupply() (#649-651)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#660-663)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#665-669)
isCantEat(address) should be declared external:
- BEP20.isCantEat(address) (#671-673)
manage_CantEat(address[],bool) should be declared external:
- BEP20.manage_CantEat(address[],bool) (#692-697)
setWhoCantEat(address,bool) should be declared external:
- BEP20.setWhoCantEat(address,bool) (#699-701)
setRandomAddress(address) should be declared external:
- BEP20.setRandomAddress(address) (#760-762)
Use the external attribute for functions never called from the contract.
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 that token and website are owned by the same team (no listings + unable to find contract on website)
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
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 CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts