Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in dearMoonX._transfer(address,address,uint256) (#1642-1782):
External calls:
- swapBack() (#1738)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1794-1800)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1855)
External calls sending eth:
- swapBack() (#1738)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1855)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1775)
- _balances[sender] = senderBalance - amount (#364)
- _balances[recipient] += amount (#366)
- super._transfer(from,to,amount) (#1781)
- _balances[sender] = senderBalance - amount (#364)
- _balances[recipient] += amount (#366)
- swapping = false (#1740)
- tokensForBuyBack += fees * 33 / 99 (#1756)
- tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees (#1763)
- tokensForBuyBack += fees * buyBuyBackFee / buyTotalFees (#1770)
- tokensForLiquidity += fees * 33 / 99 (#1755)
- tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees (#1762)
- tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees (#1769)
- tokensForMarketing += fees * 33 / 99 (#1757)
- tokensForMarketing += fees * sellMarketingFee / sellTotalFees (#1764)
- tokensForMarketing += fees * buyMarketingFee / buyTotalFees (#1771)
Apply the check-effects-interactions pattern.
Additional information: link
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-deductAmount = curBlockNumber.sub(_prevUpdatedBlock).div(_perBlock) * _percent (#1667)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1754)
-tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees (#1762)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1754)
-tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees (#1763)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1754)
-tokensForLiquidity += fees * 33 / 99 (#1755)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1754)
-tokensForMarketing += fees * sellMarketingFee / sellTotalFees (#1764)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1768)
-tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees (#1769)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1768)
-tokensForBuyBack += fees * buyBuyBackFee / buyTotalFees (#1770)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-tokensForBuyBack += fees * 33 / 99 (#1756)
-fees = amount.mul(buyTotalFees).div(100) (#1768)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1768)
-tokensForMarketing += fees * buyMarketingFee / buyTotalFees (#1771)
dearMoonX._transfer(address,address,uint256) (#1642-1782) performs a multiplication on the result of a division:
-tokensForMarketing += fees * 33 / 99 (#1757)
-fees = amount.mul(buyTotalFees).div(100) (#1768)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in dearMoonX.constructor() (#1403-1469):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1412)
State variables written after the call(s):
- transferOwnership(newOwner) (#1468)
- _owner = newOwner (#870)
Reentrancy in dearMoonX.swapBack() (#1821-1856):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1794-1800)
State variables written after the call(s):
- tokensForBuyBack = 0 (#1846)
- tokensForLiquidity = 0 (#1844)
- tokensForMarketing = 0 (#1845)
Apply the check-effects-interactions pattern.
Additional information: link
dearMoonX._transfer(address,address,uint256) (#1642-1782) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1701)
Do not use tx.origin for authorization.
Additional information: link
dearMoonX.addLiquidity(uint256,uint256) (#1806-1819) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
Ensure that all the return values of the function calls are used.
Additional information: link
dearMoonX.constructor().totalSupply (#1426) shadows:
- ERC20.totalSupply() (#224-226) (function)
- IERC20.totalSupply() (#10) (function)
Rename the local variables that shadow another component.
Additional information: link
dearMoonX.decreaseTax(uint256,uint256,uint256) (#1475-1481) should emit an event for:
- _percent = percent (#1478)
- _perBlock = perBlock (#1479)
- _limit = limit (#1480)
dearMoonX.setBlackListFee(uint256) (#1545-1548) should emit an event for:
- blackListFee = _fee (#1546)
dearMoonX.setSwapTokensAtAmount(uint256) (#1557-1560) should emit an event for:
- swapTokensAtAmount = newAmount (#1558)
dearMoonX.setMaxTransactionAmount(uint256) (#1562-1564) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#1563)
dearMoonX.setMaxWalletAmount(uint256) (#1566-1568) should emit an event for:
- maxWallet = newNum * (10 ** 18) (#1567)
dearMoonX.setBuyFees(uint256,uint256,uint256) (#1579-1589) should emit an event for:
- buyMarketingFee = _marketingFee (#1580)
- buyLiquidityFee = _liquidityFee (#1581)
- buyBuyBackFee = _buyBackFee (#1582)
- buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBuyBackFee (#1583)
- _limit = const10.sub(_liquidityFee) (#1587)
dearMoonX.setSellFees(uint256,uint256,uint256) (#1591-1597) should emit an event for:
- sellMarketingFee = _marketingFee (#1592)
- sellLiquidityFee = _liquidityFee (#1593)
- sellBuyBackFee = _buyBackFee (#1594)
- sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBuyBackFee (#1595)
Emit an event for critical parameter changes.
Additional information: link
dearMoonX.setMarketingWallet(address).newMarketingWallet (#1616) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#1618)
dearMoonX.setBuyBackWallet(address).newWallet (#1621) lacks a zero-check on :
- buyBackWallet = newWallet (#1623)
dearMoonX.clearStuckBNBBalance(address).addr (#1626) lacks a zero-check on :
- (sent) = address(addr).call{value: (address(this).balance)}() (#1627)
Check that the address is not zero.
Additional information: link
Reentrancy in dearMoonX.constructor() (#1403-1469):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1412)
State variables written after the call(s):
- _mint(newOwner,totalSupply) (#1467)
- _balances[account] += amount (#388)
- _isExcludedFromContractBuyingLimit[address(this)] = true (#1459)
- _isExcludedFromContractBuyingLimit[0x10ED43C718714eb63d5aA57B78B54704E256024E] = true (#1460)
- _isExcludedFromContractBuyingLimit[address(uniswapV2Pair)] = true (#1461)
- excludeFromFees(newOwner,true) (#1449)
- _isExcludedFromFees[account] = excluded (#1600)
- excludeFromFees(address(this),true) (#1450)
- _isExcludedFromFees[account] = excluded (#1600)
- excludeFromFees(address(0xdead),true) (#1451)
- _isExcludedFromFees[account] = excluded (#1600)
- excludeFromFees(buyBackWallet,true) (#1452)
- _isExcludedFromFees[account] = excluded (#1600)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#1413)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1571)
- excludeFromMaxTransaction(newOwner,true) (#1454)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1571)
- excludeFromMaxTransaction(address(this),true) (#1455)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1571)
- excludeFromMaxTransaction(buyBackWallet,true) (#1456)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1571)
- excludeFromMaxTransaction(address(0xdead),true) (#1457)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1571)
- _mint(newOwner,totalSupply) (#1467)
- _totalSupply += amount (#387)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#1414)
- automatedMarketMakerPairs[pair] = value (#1611)
- blackListFee = 99 (#1443)
- buyBackWallet = msg.sender (#1446)
- buyBuyBackFee = _buyBuyBackFee (#1435)
- buyLiquidityFee = _buyLiquidityFee (#1434)
- buyMarketingFee = _buyMarketingFee (#1433)
- buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBuyBackFee (#1436)
- marketingWallet = msg.sender (#1445)
- maxTransactionAmount = totalSupply * 1 / 1000 (#1428)
- maxWallet = totalSupply * 5 / 1000 (#1431)
- sellBuyBackFee = _sellBuyBackFee (#1440)
- sellLiquidityFee = _sellLiquidityFee (#1439)
- sellMarketingFee = _sellMarketingFee (#1438)
- sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBuyBackFee (#1441)
- swapTokensAtAmount = 1000 * 1e18 (#1430)
Reentrancy in dearMoonX.swapBack() (#1821-1856):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1794-1800)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
State variables written after the call(s):
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- _allowances[owner][spender] = amount (#443)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in dearMoonX._transfer(address,address,uint256) (#1642-1782):
External calls:
- swapBack() (#1738)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1794-1800)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1855)
External calls sending eth:
- swapBack() (#1738)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1855)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#368)
- super._transfer(from,to,amount) (#1781)
- Transfer(sender,recipient,amount) (#368)
- super._transfer(from,address(this),fees) (#1775)
Reentrancy in dearMoonX.buyBackTokens(uint256) (#1859-1873):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmountInWei}(0,path,address(0xdead),block.timestamp) (#1866-1871)
Event emitted after the call(s):
- BuyBackTriggered(bnbAmountInWei) (#1872)
Reentrancy in dearMoonX.constructor() (#1403-1469):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1412)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1601)
- excludeFromFees(newOwner,true) (#1449)
- ExcludeFromFees(account,excluded) (#1601)
- excludeFromFees(buyBackWallet,true) (#1452)
- ExcludeFromFees(account,excluded) (#1601)
- excludeFromFees(address(0xdead),true) (#1451)
- ExcludeFromFees(account,excluded) (#1601)
- excludeFromFees(address(this),true) (#1450)
- OwnershipTransferred(oldOwner,newOwner) (#871)
- transferOwnership(newOwner) (#1468)
- SetAutomatedMarketMakerPair(pair,value) (#1613)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#1414)
- Transfer(address(0),account,amount) (#389)
- _mint(newOwner,totalSupply) (#1467)
Reentrancy in dearMoonX.swapBack() (#1821-1856):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1794-1800)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1811-1818)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#444)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1850)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1851)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#514-524) uses assembly
- INLINE ASM (#520-522)
Address.verifyCallResult(bool,bytes,string) (#683-703) uses assembly
- INLINE ASM (#695-698)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>0.6.0', '^0.8.0']
- ^0.8.0 (#1)
- ^0.8.0 (#84)
- ^0.8.0 (#111)
- ^0.8.0 (#136)
- ^0.8.0 (#491)
- ^0.8.0 (#709)
- ^0.8.0 (#807)
- ^0.8.0 (#878)
- ^0.8.0 (#1106)
- >0.6.0 (#1150)
- ^0.8.0 (#1310)
- ABIEncoderV2 (#1311)
Use one Solidity version.
Additional information: link
Address.functionCall(address,bytes) (#567-569) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#596-602) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#656-658) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#666-675) is never used and should be removed
Address.functionStaticCall(address,bytes) (#629-631) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#639-648) is never used and should be removed
Address.sendValue(address,uint256) (#542-547) is never used and should be removed
Context._msgData() (#128-130) is never used and should be removed
Counters.current(Counters.Counter) (#1124-1126) is never used and should be removed
Counters.decrement(Counters.Counter) (#1134-1140) is never used and should be removed
Counters.increment(Counters.Counter) (#1128-1132) is never used and should be removed
Counters.reset(Counters.Counter) (#1142-1144) is never used and should be removed
ERC20._burn(address,uint256) (#405-420) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#748-761) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#772-783) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#763-770) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#732-739) is never used and should be removed
SafeMath.add(uint256,uint256) (#967-969) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#1065-1074) is never used and should be removed
SafeMath.mod(uint256,uint256) (#1025-1027) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#1091-1100) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#1042-1051) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#896-902) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#938-943) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#950-955) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#921-931) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#909-914) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (#1) allows old versions
Pragma version^0.8.0 (#84) allows old versions
Pragma version^0.8.0 (#111) allows old versions
Pragma version^0.8.0 (#136) allows old versions
Pragma version^0.8.0 (#491) allows old versions
Pragma version^0.8.0 (#709) allows old versions
Pragma version^0.8.0 (#807) allows old versions
Pragma version^0.8.0 (#878) allows old versions
Pragma version^0.8.0 (#1106) allows old versions
Pragma version>0.6.0 (#1150) allows old versions
Pragma version^0.8.0 (#1310) allows old versions
solc-0.8.0 is not recommended for deployment
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) (#542-547):
- (success) = recipient.call{value: amount}() (#545)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#610-621):
- (success,returndata) = target.call{value: value}(data) (#619)
Low level call in Address.functionStaticCall(address,bytes,string) (#639-648):
- (success,returndata) = target.staticcall(data) (#646)
Low level call in Address.functionDelegateCall(address,bytes,string) (#666-675):
- (success,returndata) = target.delegatecall(data) (#673)
Low level call in dearMoonX.clearStuckBNBBalance(address) (#1626-1629):
- (sent) = address(addr).call{value: (address(this).balance)}() (#1627)
Low level call in dearMoonX.swapBack() (#1821-1856):
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1848)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1855)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#1170) is not in mixedCase
Contract dearMoonX (#1312-1875) is not in CapWords
Event dearMoonXmarketingWalletUpdated(address,address) (#1391) is not in CapWords
Event dearMoonXbuyBackWalletUpdated(address,address) (#1393) is not in CapWords
Parameter dearMoonX.setBlackListFee(uint256)._fee (#1545) is not in mixedCase
Parameter dearMoonX.setBuyFees(uint256,uint256,uint256)._marketingFee (#1579) is not in mixedCase
Parameter dearMoonX.setBuyFees(uint256,uint256,uint256)._liquidityFee (#1579) is not in mixedCase
Parameter dearMoonX.setBuyFees(uint256,uint256,uint256)._buyBackFee (#1579) is not in mixedCase
Parameter dearMoonX.setSellFees(uint256,uint256,uint256)._marketingFee (#1591) is not in mixedCase
Parameter dearMoonX.setSellFees(uint256,uint256,uint256)._liquidityFee (#1591) is not in mixedCase
Parameter dearMoonX.setSellFees(uint256,uint256,uint256)._buyBackFee (#1591) is not in mixedCase
Constant dearMoonX.deadAddress (#1319) is not in UPPER_CASE_WITH_UNDERSCORES
Variable dearMoonX._isExcludedMaxTransactionAmount (#1358) is not in mixedCase
Variable dearMoonX._isExcludedFromContractBuyingLimit (#1359) is not in mixedCase
Variable dearMoonX._decreasing (#1370) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1175) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1176)
Prevent variables from having similar names.
Additional information: link
name() should be declared external:
- ERC20.name() (#192-194)
symbol() should be declared external:
- ERC20.symbol() (#200-202)
decimals() should be declared external:
- ERC20.decimals() (#217-219)
totalSupply() should be declared external:
- ERC20.totalSupply() (#224-226)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#243-246)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#251-253)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#262-265)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#280-294)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#308-311)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#327-335)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#855-857)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- dearMoonX.setAutomatedMarketMakerPair(address,bool) (#1604-1608)
isExcludedFromFees(address) should be declared external:
- dearMoonX.isExcludedFromFees(address) (#1636-1638)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts