MANEKI INU ($MANEKI) is a decentralized finance (DeFi) token on the Binance Smart Chain (BSC). It is building the revolutionary reward system in $BUSD to the holders, NFTs by Gusto Art London to showcase amazing art pieces, as well as auto deflationary, auto liquidity on transactions.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
ManekiInu.swapBackInBnb() (#1254-1312) sends eth to arbitrary user
Dangerous calls:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1039-1042)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#1047)
- amountReceived = takeFee(sender,amount,recipient) (#1044-1046)
- _balances[DEAD] = _balances[DEAD].add(burnFee) (#1098)
- _balances[DEAD] = _balances[DEAD].add(burnFee) (#1106)
- _balances[DEAD] = _balances[DEAD].add(burnFee) (#1114)
- _balances[address(this)] = _balances[address(this)].add(feesToContract) (#1119)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.purge(address) (#634-637) ignores return value by REWARD.transfer(receiver,balance) (#636)
DividendDistributor.distributeDividend(address) (#706-723) ignores return value by REWARD.transfer(shareholder,amount) (#714)
ManekiInu.swapBackInBnb() (#1254-1312) ignores return value by IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
ManekiInu.swapBackInTokens() (#1314-1345) ignores return value by IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
ManekiInu.swapAndSendFees(uint256) (#1347-1371) ignores return value by IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
ManekiInu.swapAndSendFees(uint256) (#1347-1371) ignores return value by IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
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 locking ether found:
Contract DividendDistributor (#568-803) has payable functions:
- DividendDistributor.receive() (#624)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
ManekiInu.swapBackInBnb().marketingSuccess (#1292) is written in both
(marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
marketingSuccess = false (#1296)
ManekiInu.swapBackInBnb().devSuccess (#1300) is written in both
(devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
devSuccess = false (#1305)
Fix or remove the writes.
Additional information: link
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
ManekiInu.takeFee(address,uint256,address) (#1086-1123) performs a multiplication on the result of a division:
-feeAmount = amount.mul(sellTotalFees).div(100) (#1094)
-burnFee = feeAmount.mul(sellBurnFee).div(sellTotalFees) (#1097)
ManekiInu.takeFee(address,uint256,address) (#1086-1123) performs a multiplication on the result of a division:
-feeAmount = amount.mul(transferTotalFees).div(100) (#1110)
-burnFee = feeAmount.mul(transferBurnFee).div(transferTotalFees) (#1113)
ManekiInu.takeFee(address,uint256,address) (#1086-1123) performs a multiplication on the result of a division:
-burnFee = feeAmount.mul(buyBurnFee).div(buyTotalFees) (#1105)
-feeAmount = amount.mul(transferTotalFees).div(100) (#1110)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#706-723):
External calls:
- REWARD.transfer(shareholder,amount) (#714)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#716-718)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#719-721)
Reentrancy in DividendDistributor.process(uint256) (#668-694):
External calls:
- distributeDividend(shareholders[currentIndex]) (#686)
- REWARD.transfer(shareholder,amount) (#714)
State variables written after the call(s):
- currentIndex ++ (#691)
Reentrancy in DividendDistributor.setShare(address,uint256) (#639-659):
External calls:
- distributeDividend(shareholder) (#645)
- REWARD.transfer(shareholder,amount) (#714)
State variables written after the call(s):
- shares[shareholder].amount = amount (#655)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#656-658)
Apply the check-effects-interactions pattern.
Additional information: link
ManekiInu.addLiquidity(uint256,uint256) (#1431-1443) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Ensure that all the return values of the function calls are used.
Additional information: link
ManekiInu._approve(address,address,uint256).owner (#975) shadows:
- Ownable.owner() (#348-350) (function)
Rename the local variables that shadow another component.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#626-632) should emit an event for:
- minPeriod = _minPeriod (#630)
- minDistribution = _minDistribution (#631)
DividendDistributor.deposit(uint256) (#661-666) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#663-665)
ManekiInu.updateBuyFees(uint256,uint256,uint256,uint256,uint256) (#1142-1156) should emit an event for:
- buyDividendRewardsFee = reward (#1149)
- buyMarketingFee = marketing (#1150)
- buyLiquidityFee = liquidity (#1151)
- buyDevFee = dev (#1152)
- buyBurnFee = burn (#1153)
- buyTotalFees = reward.add(marketing).add(liquidity).add(dev).add(burn) (#1154)
ManekiInu.updateSellFees(uint256,uint256,uint256,uint256,uint256) (#1158-1172) should emit an event for:
- sellBurnFee = burn (#1169)
- sellTotalFees = reward.add(marketing).add(liquidity).add(dev).add(burn) (#1170)
ManekiInu.updateTransferFees(uint256,uint256,uint256,uint256,uint256) (#1174-1188) should emit an event for:
- transferBurnFee = burn (#1185)
- transferTotalFees = reward.add(marketing).add(liquidity).add(dev).add(burn) (#1186)
ManekiInu.setDistributorSettings(uint256) (#1485-1488) should emit an event for:
- distributorGas = gas (#1487)
Emit an event for critical parameter changes.
Additional information: link
ManekiInu.changeSwapToken(address).token (#1138) lacks a zero-check on :
- SWAPTOKEN = token (#1139)
ManekiInu.setFeeReceivers(address,address)._marketingFeeReceiver (#1462) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1463)
ManekiInu.setFeeReceivers(address,address)._devFeeReceiver (#1462) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1464)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#706-723) has external calls inside a loop: REWARD.transfer(shareholder,amount) (#714)
ManekiInu.switchToken(address,bool) (#1213-1239) has external calls inside a loop: dividendDistributor.setShare(currentHolders[i],_balances[currentHolders[i]]) (#1229-1234)
ManekiInu.claimTokens(address,address[],uint256[]) (#1490-1524) has external calls inside a loop: dividendDistributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#1511-1516)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
State variables written after the call(s):
- _basicTransfer(sender,recipient,amount) (#1023)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1073-1076)
- _balances[recipient] = _balances[recipient].add(amount) (#1077)
- _basicTransfer(sender,recipient,amount) (#1027)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1073-1076)
- _balances[recipient] = _balances[recipient].add(amount) (#1077)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
External calls sending eth:
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
State variables written after the call(s):
- swapBackInBnb() (#1032)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- swapBackInTokens() (#1034)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.constructor(address) (#882-905):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#884-887)
State variables written after the call(s):
- pinkAntiBot = IPinkAntiBot(pinkAntiBot_) (#889)
Reentrancy in ManekiInu.constructor(address) (#882-905):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#884-887)
- pinkAntiBot.setTokenOwner(_msgSender()) (#890)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#892)
- _balances[msg.sender] = _totalSupply (#903)
- dividendDistributor = new DividendDistributor(address(router),REWARD) (#894)
- isDividendExempt[pair] = true (#899)
- isDividendExempt[address(this)] = true (#900)
- isDividendExempt[DEAD] = true (#901)
- isFeeExempt[msg.sender] = true (#897)
- isWhitelisted[msg.sender] = true (#896)
Reentrancy in DividendDistributor.distributeDividend(address) (#706-723):
External calls:
- REWARD.transfer(shareholder,amount) (#714)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#715)
Reentrancy in DividendDistributor.setShare(address,uint256) (#639-659):
External calls:
- distributeDividend(shareholder) (#645)
- REWARD.transfer(shareholder,amount) (#714)
State variables written after the call(s):
- addShareholder(shareholder) (#649)
- shareholderIndexes[shareholder] = shareholders.length (#790)
- removeShareholder(shareholder) (#651)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#798-800)
- addShareholder(shareholder) (#649)
- shareholders.push(shareholder) (#791)
- removeShareholder(shareholder) (#651)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#795-797)
- shareholders.pop() (#801)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#654)
Reentrancy in ManekiInu.swapAndLiquify(uint256) (#1373-1394):
External calls:
- swapTokensForEth(half) (#1385)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- addLiquidity(otherHalf,newBalance) (#1391)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1391)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1391)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapAndSendFees(uint256) (#1347-1371):
External calls:
- swapTokensForTokens(tokensForFee,SWAPTOKEN) (#1350)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
State variables written after the call(s):
- _approve(address(this),marketingFeeReceiver,marketingToken) (#1362)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapAndSendFees(uint256) (#1347-1371):
External calls:
- swapTokensForTokens(tokensForFee,SWAPTOKEN) (#1350)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
State variables written after the call(s):
- _approve(address(this),devFeeReceiver,devToken) (#1367)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapBackInBnb() (#1254-1312):
External calls:
- swapTokensForEth(tokensToSwap) (#1268)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
State variables written after the call(s):
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapBackInBnb() (#1254-1312):
External calls:
- swapTokensForEth(tokensToSwap) (#1268)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapAndLiquify(tokensToLiquidity) (#1310)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapAndLiquify(tokensToLiquidity) (#1310)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- swapAndLiquify(tokensToLiquidity) (#1310)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapBackInTokens() (#1314-1345):
External calls:
- swapTokensForTokens(rewardTokens,REWARD) (#1327)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- swapAndLiquify(liquidityTokens) (#1340)
- _allowances[owner][spender] = amount (#982)
Reentrancy in ManekiInu.swapBackInTokens() (#1314-1345):
External calls:
- swapTokensForTokens(rewardTokens,REWARD) (#1327)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapAndSendFees(tokensForFee) (#1343)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
State variables written after the call(s):
- swapAndSendFees(tokensForFee) (#1343)
- _allowances[owner][spender] = amount (#982)
Apply the check-effects-interactions pattern.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#367-369)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#375-378)
getHolderDetails(address) should be declared external:
- DividendDistributor.getHolderDetails(address) (#750-764)
name() should be declared external:
- ManekiInu.name() (#913-915)
symbol() should be declared external:
- ManekiInu.symbol() (#917-919)
decimals() should be declared external:
- ManekiInu.decimals() (#921-923)
getHolderDetails(address) should be declared external:
- ManekiInu.getHolderDetails(address) (#930-941)
getLastProcessedIndex() should be declared external:
- ManekiInu.getLastProcessedIndex() (#943-945)
getNumberOfTokenHolders() should be declared external:
- ManekiInu.getNumberOfTokenHolders() (#947-949)
totalDistributedRewards() should be declared external:
- ManekiInu.totalDistributedRewards() (#951-953)
updateBuyFees(uint256,uint256,uint256,uint256,uint256) should be declared external:
- ManekiInu.updateBuyFees(uint256,uint256,uint256,uint256,uint256) (#1142-1156)
updateSellFees(uint256,uint256,uint256,uint256,uint256) should be declared external:
- ManekiInu.updateSellFees(uint256,uint256,uint256,uint256,uint256) (#1158-1172)
updateTransferFees(uint256,uint256,uint256,uint256,uint256) should be declared external:
- ManekiInu.updateTransferFees(uint256,uint256,uint256,uint256,uint256) (#1174-1188)
whitelistPreSale(address) should be declared external:
- ManekiInu.whitelistPreSale(address) (#1190-1193)
purgeBeforeSwitch() should be declared external:
- ManekiInu.purgeBeforeSwitch() (#1196-1198)
includeMeinRewards() should be declared external:
- ManekiInu.includeMeinRewards() (#1200-1210)
switchToken(address,bool) should be declared external:
- ManekiInu.switchToken(address,bool) (#1213-1239)
___claimRewards(bool) should be declared external:
- ManekiInu.___claimRewards(bool) (#1242-1247)
claimProcess() should be declared external:
- ManekiInu.claimProcess() (#1250-1252)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1078)
- _basicTransfer(sender,recipient,amount) (#1023)
- Transfer(sender,recipient,amount) (#1078)
- _basicTransfer(sender,recipient,amount) (#1027)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
External calls sending eth:
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapBackInBnb() (#1032)
- AutoLiquify(newBalance,otherHalf) (#1393)
- swapBackInBnb() (#1032)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapBackInTokens() (#1034)
- AutoLiquify(newBalance,otherHalf) (#1393)
- swapBackInTokens() (#1034)
- SendFeesInToken(marketingFeeReceiver,marketingToken) (#1364)
- swapBackInTokens() (#1034)
- SendFeesInToken(devFeeReceiver,devToken) (#1369)
- swapBackInTokens() (#1034)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
- dividendDistributor.setShare(sender,_balances[sender]) (#1051-1053)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#1057-1059)
- dividendDistributor.process(distributorGas) (#1062)
External calls sending eth:
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#1064)
Reentrancy in ManekiInu._transferFrom(address,address,uint256) (#1011-1066):
External calls:
- pinkAntiBot.onPreTransferCheck(sender,recipient,amount) (#1018)
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapBackInBnb() (#1032)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapBackInTokens() (#1034)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Transfer(sender,DEAD,burnFee) (#1099)
- amountReceived = takeFee(sender,amount,recipient) (#1044-1046)
- Transfer(sender,DEAD,burnFee) (#1107)
- amountReceived = takeFee(sender,amount,recipient) (#1044-1046)
- Transfer(sender,DEAD,burnFee) (#1115)
- amountReceived = takeFee(sender,amount,recipient) (#1044-1046)
- Transfer(sender,address(this),feesToContract) (#1120)
- amountReceived = takeFee(sender,amount,recipient) (#1044-1046)
Reentrancy in ManekiInu.constructor(address) (#882-905):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#884-887)
- pinkAntiBot.setTokenOwner(_msgSender()) (#890)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#904)
Reentrancy in ManekiInu.includeMeinRewards() (#1200-1210):
External calls:
- dividendDistributor.setShare(msg.sender,_balances[msg.sender]) (#1205-1207)
Event emitted after the call(s):
- IncludeInReward(msg.sender) (#1209)
Reentrancy in ManekiInu.swapAndLiquify(uint256) (#1373-1394):
External calls:
- swapTokensForEth(half) (#1385)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- addLiquidity(otherHalf,newBalance) (#1391)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1391)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- addLiquidity(otherHalf,newBalance) (#1391)
- AutoLiquify(newBalance,otherHalf) (#1393)
Reentrancy in ManekiInu.swapAndSendFees(uint256) (#1347-1371):
External calls:
- swapTokensForTokens(tokensForFee,SWAPTOKEN) (#1350)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- _approve(address(this),marketingFeeReceiver,marketingToken) (#1362)
Reentrancy in ManekiInu.swapAndSendFees(uint256) (#1347-1371):
External calls:
- swapTokensForTokens(tokensForFee,SWAPTOKEN) (#1350)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- _approve(address(this),devFeeReceiver,devToken) (#1367)
- SendFeesInToken(marketingFeeReceiver,marketingToken) (#1364)
Reentrancy in ManekiInu.swapAndSendFees(uint256) (#1347-1371):
External calls:
- swapTokensForTokens(tokensForFee,SWAPTOKEN) (#1350)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
Event emitted after the call(s):
- SendFeesInToken(devFeeReceiver,devToken) (#1369)
Reentrancy in ManekiInu.swapBackInBnb() (#1254-1312):
External calls:
- swapTokensForEth(tokensToSwap) (#1268)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
Reentrancy in ManekiInu.swapBackInBnb() (#1254-1312):
External calls:
- swapTokensForEth(tokensToSwap) (#1268)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapTokensForTokens(tokensToReward,REWARD) (#1279)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1285-1288)
- dividendDistributor.deposit(swappedTokensAmount) (#1289)
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapAndLiquify(tokensToLiquidity) (#1310)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
- swapAndLiquify(tokensToLiquidity) (#1310)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapAndLiquify(tokensToLiquidity) (#1310)
- AutoLiquify(newBalance,otherHalf) (#1393)
- swapAndLiquify(tokensToLiquidity) (#1310)
Reentrancy in ManekiInu.swapBackInTokens() (#1314-1345):
External calls:
- swapTokensForTokens(rewardTokens,REWARD) (#1327)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapAndLiquify(liquidityTokens) (#1340)
- AutoLiquify(newBalance,otherHalf) (#1393)
- swapAndLiquify(liquidityTokens) (#1340)
Reentrancy in ManekiInu.swapBackInTokens() (#1314-1345):
External calls:
- swapTokensForTokens(rewardTokens,REWARD) (#1327)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(REWARD).transfer(address(dividendDistributor),swappedTokensAmount) (#1333-1336)
- dividendDistributor.deposit(swappedTokensAmount) (#1337)
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1403-1409)
- swapAndSendFees(tokensForFee) (#1343)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1422-1428)
- IERC20(SWAPTOKEN).transfer(marketingFeeReceiver,marketingToken) (#1363)
- IERC20(SWAPTOKEN).transfer(devFeeReceiver,devToken) (#1368)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#1340)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1435-1442)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#983)
- swapAndSendFees(tokensForFee) (#1343)
- SendFeesInToken(marketingFeeReceiver,marketingToken) (#1364)
- swapAndSendFees(tokensForFee) (#1343)
- SendFeesInToken(devFeeReceiver,devToken) (#1369)
- swapAndSendFees(tokensForFee) (#1343)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#696-704) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#701-703)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#668-694) has costly operations inside a loop:
- currentIndex = 0 (#682)
DividendDistributor.distributeDividend(address) (#706-723) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#713)
DividendDistributor.process(uint256) (#668-694) has costly operations inside a loop:
- currentIndex ++ (#691)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#316-318) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#264-273) is never used and should be removed
SafeMath.mod(uint256,uint256) (#224-226) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#290-299) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#95-101) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#137-142) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#149-154) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#120-130) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#108-113) is never used and should be removed
Remove unused functions.
Additional information: link
ManekiInu.swapThreshold (#874) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 100000
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
Low level call in ManekiInu.swapBackInBnb() (#1254-1312):
- (marketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: marketingFeeBnb}() (#1292-1295)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: devFeeBnb}() (#1300-1303)
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() (#410) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#627) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#628) is not in mixedCase
Variable DividendDistributor._token (#571) is not in mixedCase
Variable DividendDistributor.REWARD (#579) is not in mixedCase
Variable DividendDistributor.WBNB (#582) is not in mixedCase
Parameter ManekiInu.whitelistPreSale(address)._preSale (#1190) is not in mixedCase
Function ManekiInu.___claimRewards(bool) (#1242-1247) is not in mixedCase
Parameter ManekiInu.setFeeReceivers(address,address)._marketingFeeReceiver (#1462) is not in mixedCase
Parameter ManekiInu.setFeeReceivers(address,address)._devFeeReceiver (#1462) is not in mixedCase
Parameter ManekiInu.setSwapBackSettings(bool,uint256)._enabled (#1467) is not in mixedCase
Parameter ManekiInu.setSwapBackSettings(bool,uint256)._amount (#1467) is not in mixedCase
Parameter ManekiInu.setDistributionCriteria(uint256,uint256)._minPeriod (#1476) is not in mixedCase
Parameter ManekiInu.setDistributionCriteria(uint256,uint256)._minDistribution (#1477) is not in mixedCase
Variable ManekiInu.WBNB (#810) is not in mixedCase
Variable ManekiInu.DEAD (#811) is not in mixedCase
Variable ManekiInu.ZERO (#812) is not in mixedCase
Variable ManekiInu.SWAPTOKEN (#814) is not in mixedCase
Variable ManekiInu.REWARD (#818) is not in mixedCase
Constant ManekiInu._name (#824) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ManekiInu._symbol (#825) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ManekiInu._decimals (#826) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ManekiInu._totalSupply (#828) is not in mixedCase
Variable ManekiInu._balances (#830) is not in mixedCase
Variable ManekiInu._allowances (#831) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#415) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#416)
Prevent variables from having similar names.
Additional information: link
ManekiInu.slitherConstructorVariables() (#805-1538) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#811)
ManekiInu.slitherConstructorVariables() (#805-1538) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#812)
ManekiInu.slitherConstructorVariables() (#805-1538) uses literals with too many digits:
- _totalSupply = 1000000000000000 * (10 ** _decimals) (#828)
ManekiInu.slitherConstructorVariables() (#805-1538) uses literals with too many digits:
- distributorGas = 500000 (#866)
ManekiInu.slitherConstructorVariables() (#805-1538) uses literals with too many digits:
- swapThreshold = (_totalSupply * 10) / 100000 (#874)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ManekiInu.ZERO (#812) is never used in ManekiInu (#805-1538)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#582) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#595) should be constant
ManekiInu.DEAD (#811) should be constant
ManekiInu.WBNB (#810) should be constant
ManekiInu.ZERO (#812) should be constant
ManekiInu._totalSupply (#828) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Token is deployed only at one blockchain
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Contract has 1% buy tax and 17% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
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 relatively low CoinMarketCap rank
Last post in Twitter was more than 30 days ago
Unable to find Youtube account
Unable to find Discord account