FlokiBatman Token Logo

FlokiBatman Token

About FlokiBatman

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 January 2022

report
Token seems to be a scam (type: honeypot scam).


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


Contract creator or owner is blacklisted for past scams

FlokiBatman.swapBack() (#924-968) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
FlokiBatman.transferToDistributorAndMarketing(uint256,uint256) (#970-982) sends eth to arbitrary user
Dangerous calls:
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
FlokiBatman.buyTokens(uint256,address) (#1002-1016) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FlokiBatman._transferFrom(address,address,uint256) (#852-886):
External calls:
- swapBack() (#873)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- distributor.deposit() (#973)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#937-943)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
- amountReceived = handleTransferBody(sender,recipient,amount) (#874)
- distributor.setShare(sender,_balances[sender]) (#895)
- distributor.setShare(recipient,_balances[recipient]) (#896)
External calls sending eth:
- swapBack() (#873)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
State variables written after the call(s):
- amountReceived = handleTransferBody(sender,recipient,amount) (#874)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#889)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#913)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#893)
Reentrancy in FlokiBatman._transferFrom(address,address,uint256) (#852-886):
External calls:
- triggerAutoBuyback() (#876)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
- amountReceived = handleTransferBody(sender,recipient,amount) (#877)
- distributor.setShare(sender,_balances[sender]) (#895)
- distributor.setShare(recipient,_balances[recipient]) (#896)
External calls sending eth:
- triggerAutoBuyback() (#876)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
State variables written after the call(s):
- amountReceived = handleTransferBody(sender,recipient,amount) (#877)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#889)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#913)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#893)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#657-668) ignores return value by IERC20(WBNB).transfer(shareholder,amount) (#663)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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.

DividendDistributor.process(uint256) (#605-629) has costly operations inside a loop:
- currentIndex = 0 (#617)
DividendDistributor.distributeDividend(address) (#657-668) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#662)
DividendDistributor.process(uint256) (#605-629) has costly operations inside a loop:
- currentIndex ++ (#626)
DividendDistributor.processManually() (#631-650) has costly operations inside a loop:
- currentIndex = 0 (#641)
DividendDistributor.processManually() (#631-650) has costly operations inside a loop:
- currentIndex ++ (#647)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in FlokiBatman.constructor() (#784-811):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#789)
State variables written after the call(s):
- WBNB = router.WETH() (#792)
Reentrancy in DividendDistributor.distributeDividend(address) (#657-668):
External calls:
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#665)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#666)
Reentrancy in DividendDistributor.process(uint256) (#605-629):
External calls:
- distributeDividend(shareholders[currentIndex]) (#621)
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- currentIndex ++ (#626)
Reentrancy in DividendDistributor.processManually() (#631-650):
External calls:
- distributeDividend(shareholders[currentIndex]) (#645)
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- currentIndex ++ (#647)
Reentrancy in DividendDistributor.setShare(address,uint256) (#564-578):
External calls:
- distributeDividend(shareholder) (#566)
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- shares[shareholder].amount = amount (#576)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#577)
Apply the check-effects-interactions pattern.

Additional information: link

FlokiBatman.swapBack() (#924-968) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#558-562) should emit an event for:
- minPeriod = _minPeriod (#559)
- minDistribution = _minDistribution (#560)
FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256) (#1029-1037) should emit an event for:
- liquidityFee = _liquidityFee (#1030)
- reflectionFee = _reflectionFee (#1032)
- marketingFee = _marketingFee (#1033)
- totalFeeSells = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#1034)
- feeDenominator = _feeDenominator (#1035)
FlokiBatman.setAutoBuybackSettings(bool,uint256,uint256) (#1073-1079) should emit an event for:
- autoBuybackAmount = _amount (#1076)
FlokiBatman.setSwapBackSettings(bool,uint256,bool,bool,uint256) (#1081-1087) should emit an event for:
- swapThreshold = _amount (#1083)
- swapThresholdPercentOfCirculatingSupply = percentOfCirculatingSupply (#1085)
FlokiBatman.setTargetLiquidity(uint256,uint256) (#1089-1092) should emit an event for:
- targetLiquidity = _target (#1090)
- targetLiquidityDenominator = _denominator (#1091)
FlokiBatman.setDistributorGas(uint256) (#1098-1101) should emit an event for:
- distributorGas = gas (#1100)
FlokiBatman.setBuyingFee(uint256) (#1130-1132) should emit an event for:
- totalFeeBuys = buyFee (#1131)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setAxieinfinityAddress(address).nSFM (#701) lacks a zero-check on :
- WBNB = nSFM (#702)
FlokiBatman.setFeeReceivers(address,address)._autoLiquidityReceiver (#1068) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1069)
FlokiBatman.setFeeReceivers(address,address)._marketingFeeReceiver (#1068) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1070)
FlokiBatman.setDexRouter(address).nRouter (#1134) lacks a zero-check on :
- _dexRouter = nRouter (#1135)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#657-668) has external calls inside a loop: IERC20(WBNB).transfer(shareholder,amount) (#663)
FlokiBatman.handleTransferBody(address,address,uint256) (#888-899) has external calls inside a loop: distributor.setShare(sender,_balances[sender]) (#895)
FlokiBatman.handleTransferBody(address,address,uint256) (#888-899) has external calls inside a loop: distributor.setShare(recipient,_balances[recipient]) (#896)
FlokiBatman.airdrop(address,address[],uint256[]) (#1166-1189) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#1181)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FlokiBatman.buyTokens(uint256,address) (#1002-1016):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
State variables written after the call(s):
- swapThreshold = getCirculatingSupply().div(swapThresholdPercentOfCirculatingSupply) (#1014)
Reentrancy in FlokiBatman.constructor() (#784-811):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#789)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#790)
- approve(_dexRouter,_totalSupply) (#807)
- _allowances[msg.sender][spender] = amount (#831)
- approve(address(pair),_totalSupply) (#808)
- _allowances[msg.sender][spender] = amount (#831)
- _balances[msg.sender] = _totalSupply (#809)
- autoLiquidityReceiver = DEAD (#796)
- distributor = new DividendDistributor(_dexRouter) (#794)
- isDividendExempt[pair] = true (#804)
- isDividendExempt[address(this)] = true (#805)
- isDividendExempt[DEAD] = true (#806)
- isFeeExempt[msg.sender] = true (#798)
- isTxLimitExempt[msg.sender] = true (#800)
- isTxLimitExempt[marketingFeeReceiver] = true (#801)
- isTxLimitExempt[address(this)] = true (#802)
Reentrancy in DividendDistributor.deposit() (#580-603):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: swapToSafemoonThreshold}(0,path,address(this),block.timestamp) (#591-596)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#601)
- totalDividends = totalDividends.add(amount) (#600)
Reentrancy in DividendDistributor.distributeDividend(address) (#657-668):
External calls:
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#664)
Reentrancy in DividendDistributor.setShare(address,uint256) (#564-578):
External calls:
- distributeDividend(shareholder) (#566)
- IERC20(WBNB).transfer(shareholder,amount) (#663)
State variables written after the call(s):
- addShareholder(shareholder) (#570)
- shareholderIndexes[shareholder] = shareholders.length (#691)
- removeShareholder(shareholder) (#572)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#697)
- addShareholder(shareholder) (#570)
- shareholders.push(shareholder) (#692)
- removeShareholder(shareholder) (#572)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#696)
- shareholders.pop() (#698)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#575)
Reentrancy in FlokiBatman.transferToDistributorAndMarketing(uint256,uint256) (#970-982):
External calls:
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- distributor.deposit() (#973)
External calls sending eth:
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
State variables written after the call(s):
- totalBNBAxieinfinityReflections = totalBNBAxieinfinityReflections.add(marketingBNB) (#973)
Reentrancy in FlokiBatman.transferToDistributorAndMarketing(uint256,uint256) (#970-982):
External calls:
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- distributor.deposit() (#973)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
External calls sending eth:
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
State variables written after the call(s):
- totalBNBMarketing = totalBNBMarketing.add(marketingBNB) (#979)
Reentrancy in FlokiBatman.triggerAutoBuyback() (#993-997):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#994)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#996)
- autoBuybackBlockLast = block.number (#995)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FlokiBatman._transferFrom(address,address,uint256) (#852-886):
External calls:
- swapBack() (#873)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- distributor.deposit() (#973)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#937-943)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
- amountReceived = handleTransferBody(sender,recipient,amount) (#874)
- distributor.setShare(sender,_balances[sender]) (#895)
- distributor.setShare(recipient,_balances[recipient]) (#896)
- triggerAutoBuyback() (#876)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
- amountReceived = handleTransferBody(sender,recipient,amount) (#877)
- distributor.setShare(sender,_balances[sender]) (#895)
- distributor.setShare(recipient,_balances[recipient]) (#896)
- amountReceived = handleTransferBody(sender,recipient,amount) (#879)
- distributor.setShare(sender,_balances[sender]) (#895)
- distributor.setShare(recipient,_balances[recipient]) (#896)
- distributor.process(gasToUse) (#881)
External calls sending eth:
- swapBack() (#873)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
- triggerAutoBuyback() (#876)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#884)
Reentrancy in FlokiBatman.constructor() (#784-811):
External calls:
- pair = IUniswapV2Factory(router.factory()).createPair(WBNB,address(this)) (#789)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#832)
- approve(address(pair),_totalSupply) (#808)
- Approval(msg.sender,spender,amount) (#832)
- approve(_dexRouter,_totalSupply) (#807)
- Transfer(address(0),msg.sender,_totalSupply) (#810)
Reentrancy in FlokiBatman.swapBack() (#924-968):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#937-943)
- transferToDistributorAndMarketing(amountBNBReflection,amountBNBMarketing) (#954)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- distributor.deposit() (#973)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
External calls sending eth:
- transferToDistributorAndMarketing(amountBNBReflection,amountBNBMarketing) (#954)
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#958-965)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#966)
Reentrancy in FlokiBatman.triggerVaultBuyback(uint256) (#1121-1124):
External calls:
- buyTokens(amount,DEAD) (#1122)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp.add(30)) (#1007-1012)
Event emitted after the call(s):
- VaultBuyBackAndBurn(amount) (#1123)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#299-304) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked) (#301)
DividendDistributor.shouldDistribute(address) (#652-655) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#653-654)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#37-46) uses assembly
- INLINE ASM (#44)
Address._functionCallWithValue(address,bytes,uint256,string) (#78-99) uses assembly
- INLINE ASM (#91-94)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#78-99) is never used and should be removed
Address.functionCall(address,bytes) (#58-60) is never used and should be removed
Address.functionCall(address,bytes,string) (#63-65) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#68-70) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#73-76) is never used and should be removed
Address.isContract(address) (#37-46) is never used and should be removed
Address.sendValue(address,uint256) (#49-55) is never used and should be removed
Context._msgData() (#227-230) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#216-219) is never used and should be removed
Remove unused functions.

Additional information: link

FlokiBatman.swapThreshold (#768) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(1000)
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 Address.sendValue(address,uint256) (#49-55):
- (success) = recipient.call{value: amount}() (#53)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#78-99):
- (success,returndata) = target.call{value: weiValue}(data) (#82)
Low level call in FlokiBatman.transferToDistributorAndMarketing(uint256,uint256) (#970-982):
- (success) = address(address(distributor)).call{gas: 30000,value: distributorBNB}() (#971)
- (successful) = address(marketingFeeReceiver).call{gas: 30000,value: marketingBNB}() (#977)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#234) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#338) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#339) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#356) is not in mixedCase
Function IUniswapV2Router01.WETH() (#376) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#558) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#558) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._bnbToSafemoonThreshold (#558) is not in mixedCase
Variable DividendDistributor._token (#515) is not in mixedCase
Variable DividendDistributor.WBNB (#523) is not in mixedCase
Variable DividendDistributor.BUSD (#525) is not in mixedCase
Parameter FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1029) is not in mixedCase
Parameter FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#1029) is not in mixedCase
Parameter FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1029) is not in mixedCase
Parameter FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1029) is not in mixedCase
Parameter FlokiBatman.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1029) is not in mixedCase
Parameter FlokiBatman.tradingStatus(bool)._status (#1056) is not in mixedCase
Parameter FlokiBatman.setFeeReceivers(address,address)._autoLiquidityReceiver (#1068) is not in mixedCase
Parameter FlokiBatman.setFeeReceivers(address,address)._marketingFeeReceiver (#1068) is not in mixedCase
Parameter FlokiBatman.setAutoBuybackSettings(bool,uint256,uint256)._enabled (#1073) is not in mixedCase
Parameter FlokiBatman.setAutoBuybackSettings(bool,uint256,uint256)._amount (#1073) is not in mixedCase
Parameter FlokiBatman.setAutoBuybackSettings(bool,uint256,uint256)._period (#1073) is not in mixedCase
Parameter FlokiBatman.setSwapBackSettings(bool,uint256,bool,bool,uint256)._enabled (#1081) is not in mixedCase
Parameter FlokiBatman.setSwapBackSettings(bool,uint256,bool,bool,uint256)._amount (#1081) is not in mixedCase
Parameter FlokiBatman.setTargetLiquidity(uint256,uint256)._target (#1089) is not in mixedCase
Parameter FlokiBatman.setTargetLiquidity(uint256,uint256)._denominator (#1089) is not in mixedCase
Parameter FlokiBatman.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#1094) is not in mixedCase
Parameter FlokiBatman.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#1094) is not in mixedCase
Parameter FlokiBatman.setDistributionCriteria(uint256,uint256,uint256)._bnbToSafemoonThreshold (#1094) is not in mixedCase
Parameter FlokiBatman.setAllowTransferToMarketing(bool)._canSendToMarketing (#1126) is not in mixedCase
Variable FlokiBatman.WBNB (#716) is not in mixedCase
Variable FlokiBatman.DEAD (#718) is not in mixedCase
Constant FlokiBatman._name (#720) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FlokiBatman._symbol (#721) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FlokiBatman._decimals (#722) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FlokiBatman._totalSupply (#724) is not in mixedCase
Variable FlokiBatman._maxTxAmount (#726) is not in mixedCase
Variable FlokiBatman._maxWalletToken (#728) is not in mixedCase
Variable FlokiBatman._balances (#730) is not in mixedCase
Variable FlokiBatman._allowances (#731) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#228)" inContext (#222-231)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#381) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#382)
Prevent variables from having similar names.

Additional information: link

FlokiBatman.setDistributorGas(uint256) (#1098-1101) uses literals with too many digits:
- require(bool)(gas < 1000000) (#1099)
FlokiBatman.slitherConstructorVariables() (#709-1194) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#718)
FlokiBatman.slitherConstructorVariables() (#709-1194) uses literals with too many digits:
- _totalSupply = 100000000000 * (10 ** 18) (#724)
FlokiBatman.slitherConstructorVariables() (#709-1194) uses literals with too many digits:
- _maxTxAmount = 100000000000 * (10 ** 18) (#726)
FlokiBatman.slitherConstructorVariables() (#709-1194) uses literals with too many digits:
- _maxWalletToken = 400000000000 * (10 ** 18) (#728)
FlokiBatman.slitherConstructorVariables() (#709-1194) uses literals with too many digits:
- distributorGas = 500000 (#765)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.BUSD (#525) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#537) should be constant
FlokiBatman.DEAD (#718) should be constant
FlokiBatman._totalSupply (#724) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#252-254)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#271-274)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#280-284)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#286-288)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#291-296)
unlock() should be declared external:
- Ownable.unlock() (#299-304)
name() should be declared external:
- FlokiBatman.name() (#818-820)
symbol() should be declared external:
- FlokiBatman.symbol() (#822-824)
decimals() should be declared external:
- FlokiBatman.decimals() (#826-828)
manuallyProcessDividends(uint256) should be declared external:
- FlokiBatman.manuallyProcessDividends(uint256) (#1019-1027)
tradingStatus(bool) should be declared external:
- FlokiBatman.tradingStatus(bool) (#1056-1058)
triggerVaultBuyback(uint256) should be declared external:
- FlokiBatman.triggerVaultBuyback(uint256) (#1121-1124)
setAllowTransferToMarketing(bool) should be declared external:
- FlokiBatman.setAllowTransferToMarketing(bool) (#1126-1128)
setBuyingFee(uint256) should be declared external:
- FlokiBatman.setBuyingFee(uint256) (#1130-1132)
setDexRouter(address) should be declared external:
- FlokiBatman.setDexRouter(address) (#1134-1137)
setAutoBuyBack(bool) should be declared external:
- FlokiBatman.setAutoBuyBack(bool) (#1139-1141)
getBNBQuantityInContract() should be declared external:
- FlokiBatman.getBNBQuantityInContract() (#1144-1146)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for FlokiBatman