DevilFloki Token Logo

DF [DevilFloki] Token

About DF

Listings

Not Found
Token 2 years

Nobody does it better than us. We are destined to destroy all other meme tokens and claim the throne as our own. Shiba? Laughable. Doge? Bye-bye. Welcome to hell, hyper deflationary never loses in hell.

Call us the Doge killer or the Shiba destroyer, nobody will stop the destruction that awaits our path. Utility? Marketing? How about just straight mooning. We are here to provide a token that is going to wreck all the others while we laugh straight to hell doing it.

DevilFloki is the coin your mother warned you about. Don’t you want to join us as we burn our way straight into hell and wreck everybody while doing it? Sellers? Wrecked. Your mother? Well, we won’t wreck her just yet.

Join us today and learn why DevilFloki is the coin you’ve always wanted to own, but have been too scared to do so until the fomo is burning so hot in front of you, you have to fomo in, let’s burn all these other tokens into the ground and laugh while doing it.

Social

Laser Scorebeta Last Audit: 1 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

DevilFloki.swapBack() (#583-629) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DevilFloki._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#496)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#499)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#539)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#540)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#283-294) ignores return value by RWRD.transfer(shareholder,amount) (#289)
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.

DevilFloki.swapBack().tmpSuccess (#612) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
DevilFloki.swapBack().tmpSuccess (#612) is written in both
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
tmpSuccess = false (#616)
Fix or remove the writes.

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.

DevilFloki.takeFee(address,uint256,bool) (#531-548) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#534)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#536)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#291)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#292)
Reentrancy in DividendDistributor.process(uint256) (#252-276):
External calls:
- distributeDividend(shareholders[currentIndex]) (#268)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- currentIndex ++ (#273)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].amount = amount (#228)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#229)
Apply the check-effects-interactions pattern.

Additional information: link

DevilFloki.manage_blacklist(address[],bool).i (#647) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

DevilFloki.swapBack() (#583-629) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#211-214) should emit an event for:
- minPeriod = _minPeriod (#212)
- minDistribution = _minDistribution (#213)
DevilFloki.setMaxTxPercent_base1000(uint256) (#456-458) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#457)
DevilFloki.setTxLimit(uint256) (#460-462) should emit an event for:
- _maxTxAmount = amount (#461)
DevilFloki.set_sell_multiplier(uint256) (#567-569) should emit an event for:
- sellMultiplier = Multiplier (#568)
DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#665-674) should emit an event for:
- liquidityFee = _liquidityFee (#666)
- reflectionFee = _reflectionFee (#667)
- marketingFee = _marketingFee (#668)
- ecosystemfee = _ecosystemfee (#669)
- burnFee = _burnFee (#670)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_ecosystemfee).add(_burnFee) (#671)
- feeDenominator = _feeDenominator (#672)
DevilFloki.setSwapBackSettings(bool,uint256) (#683-686) should emit an event for:
- swapThreshold = _amount (#685)
DevilFloki.setTargetLiquidity(uint256,uint256) (#688-691) should emit an event for:
- targetLiquidity = _target (#689)
- targetLiquidityDenominator = _denominator (#690)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#93) lacks a zero-check on :
- owner = adr (#94)
DevilFloki.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#676) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#677)
DevilFloki.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#676) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#678)
DevilFloki.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#676) lacks a zero-check on :
- ecosystemfeeReceiver = _ecosystemfeeReceiver (#679)
DevilFloki.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#676) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#680)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#283-294) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#289)
DevilFloki.multiTransfer(address,address[],uint256[]) (#717-741) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#733)
DevilFloki.multiTransfer_fixed(address,address[],uint256) (#743-762) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#754)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DevilFloki.constructor() (#394-419):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#396)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#397)
- _balances[msg.sender] = _totalSupply (#417)
- autoLiquidityReceiver = msg.sender (#412)
- burnFeeReceiver = DEAD (#415)
- distributor = new DividendDistributor(address(router)) (#399)
- ecosystemfeeReceiver = 0xC66D92BBA043db2fB683c58d5e3204a76f928Ef9 (#414)
- isDividendExempt[pair] = true (#408)
- isDividendExempt[address(this)] = true (#409)
- isDividendExempt[DEAD] = true (#410)
- isFeeExempt[msg.sender] = true (#401)
- isTimelockExempt[msg.sender] = true (#404)
- isTimelockExempt[DEAD] = true (#405)
- isTimelockExempt[address(this)] = true (#406)
- isTxLimitExempt[msg.sender] = true (#402)
- marketingFeeReceiver = 0xC66D92BBA043db2fB683c58d5e3204a76f928Ef9 (#413)
Reentrancy in DividendDistributor.deposit() (#232-250):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#239-244)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#249)
- totalDividends = totalDividends.add(amount) (#248)
Reentrancy in DividendDistributor.distributeDividend(address) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#290)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- addShareholder(shareholder) (#222)
- shareholderIndexes[shareholder] = shareholders.length (#316)
- removeShareholder(shareholder) (#224)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#322)
- addShareholder(shareholder) (#222)
- shareholders.push(shareholder) (#317)
- removeShareholder(shareholder) (#224)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#321)
- shareholders.pop() (#323)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#227)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DevilFloki._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
- distributor.setShare(sender,_balances[sender]) (#503)
- distributor.setShare(recipient,_balances[recipient]) (#507)
- distributor.process(distributorGas) (#510)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#512)
Reentrancy in DevilFloki._transferFrom(address,address,uint256) (#465-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#541)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- Transfer(sender,burnFeeReceiver,burnTokens) (#544)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
Reentrancy in DevilFloki.constructor() (#394-419):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#396)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#418)
Reentrancy in DevilFloki.swapBack() (#583-629):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#594-600)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#619-626)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#627)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#278-281) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#279-280)
DevilFloki._transferFrom(address,address,uint256) (#465-514) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#486)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex = 0 (#264)
DividendDistributor.distributeDividend(address) (#283-294) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#288)
DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex ++ (#273)
Use a local variable to hold the loop computation result.

Additional information: link

DevilFloki._maxTxAmount (#340) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
DevilFloki._maxWalletToken (#341) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
DevilFloki.totalFee (#360) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + ecosystemfee + burnFee
DevilFloki.swapThreshold (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 40 / 10000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version^0.7.4 (#3) allows old versions
solc-0.7.4 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 DevilFloki.swapBack() (#583-629):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#613)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#108) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#211) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#211) is not in mixedCase
Variable DividendDistributor._token (#164) is not in mixedCase
Variable DividendDistributor.RWRD (#172) is not in mixedCase
Variable DividendDistributor.WBNB (#173) is not in mixedCase
Function DevilFloki.setMaxWalletPercent_base1000(uint256) (#453-455) is not in mixedCase
Parameter DevilFloki.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#453) is not in mixedCase
Function DevilFloki.setMaxTxPercent_base1000(uint256) (#456-458) is not in mixedCase
Parameter DevilFloki.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#456) is not in mixedCase
Function DevilFloki.clearStuckBalance_sender(uint256) (#562-565) is not in mixedCase
Function DevilFloki.set_sell_multiplier(uint256) (#567-569) is not in mixedCase
Parameter DevilFloki.set_sell_multiplier(uint256).Multiplier (#567) is not in mixedCase
Parameter DevilFloki.cooldownEnabled(bool,uint8)._status (#578) is not in mixedCase
Parameter DevilFloki.cooldownEnabled(bool,uint8)._interval (#578) is not in mixedCase
Function DevilFloki.enable_blacklist(bool) (#642-644) is not in mixedCase
Parameter DevilFloki.enable_blacklist(bool)._status (#642) is not in mixedCase
Function DevilFloki.manage_blacklist(address[],bool) (#646-650) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#665) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#665) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#665) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemfee (#665) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#665) is not in mixedCase
Parameter DevilFloki.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#665) is not in mixedCase
Parameter DevilFloki.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#676) is not in mixedCase
Parameter DevilFloki.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#676) is not in mixedCase
Parameter DevilFloki.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#676) is not in mixedCase
Parameter DevilFloki.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#676) is not in mixedCase
Parameter DevilFloki.setSwapBackSettings(bool,uint256)._enabled (#683) is not in mixedCase
Parameter DevilFloki.setSwapBackSettings(bool,uint256)._amount (#683) is not in mixedCase
Parameter DevilFloki.setTargetLiquidity(uint256,uint256)._target (#688) is not in mixedCase
Parameter DevilFloki.setTargetLiquidity(uint256,uint256)._denominator (#688) is not in mixedCase
Parameter DevilFloki.setDistributionCriteria(uint256,uint256)._minPeriod (#693) is not in mixedCase
Parameter DevilFloki.setDistributionCriteria(uint256,uint256)._minDistribution (#693) is not in mixedCase
Function DevilFloki.multiTransfer_fixed(address,address[],uint256) (#743-762) is not in mixedCase
Variable DevilFloki.WBNB (#330) is not in mixedCase
Variable DevilFloki.DEAD (#331) is not in mixedCase
Variable DevilFloki.ZERO (#332) is not in mixedCase
Constant DevilFloki._name (#334) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DevilFloki._symbol (#335) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DevilFloki._decimals (#336) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DevilFloki._totalSupply (#338) is not in mixedCase
Variable DevilFloki._maxTxAmount (#340) is not in mixedCase
Variable DevilFloki._maxWalletToken (#341) is not in mixedCase
Variable DevilFloki._balances (#343) is not in mixedCase
Variable DevilFloki._allowances (#344) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#113) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#114)
Prevent variables from having similar names.

Additional information: link

DevilFloki.slitherConstructorVariables() (#327-766) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#331)
DevilFloki.slitherConstructorVariables() (#327-766) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#332)
DevilFloki.slitherConstructorVariables() (#327-766) uses literals with too many digits:
- _totalSupply = 1000000 * 10 ** 6 * 10 ** 9 (#338)
DevilFloki.slitherConstructorVariables() (#327-766) uses literals with too many digits:
- distributorGas = 500000 (#383)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DevilFloki.DEAD (#331) should be constant
DevilFloki.WBNB (#330) should be constant
DevilFloki.ZERO (#332) should be constant
DevilFloki._totalSupply (#338) should be constant
DevilFloki.gweiLimit (#379) should be constant
DevilFloki.gweiLimitBlocksAffected (#380) should be constant
DividendDistributor.WBNB (#173) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#186) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#77-79)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#81-83)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#93-97)
tradingAllowed() should be declared external:
- DevilFloki.tradingAllowed() (#572-575)
cooldownEnabled(bool,uint8) should be declared external:
- DevilFloki.cooldownEnabled(bool,uint8) (#578-581)
enable_blacklist(bool) should be declared external:
- DevilFloki.enable_blacklist(bool) (#642-644)
manage_blacklist(address[],bool) should be declared external:
- DevilFloki.manage_blacklist(address[],bool) (#646-650)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 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.


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


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 DF