SuperFloki Token Logo

SuperFloki Token

About SuperFloki

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

SafeToken.withdrawBNB(uint256) (#404-407) sends eth to arbitrary user
Dangerous calls:
- safeManager.transfer(_amount) (#406)
SuperFloki.swapBack() (#704-781) sends eth to arbitrary user
Dangerous calls:
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SuperFloki._transferFrom(address,address,uint256) (#570-638):
External calls:
- swapBack() (#610)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
External calls sending eth:
- swapBack() (#610)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#616)
- amountReceived = takeFee(sender,recipient,amount) (#624)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#691)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#625)
- buyBackTokens() (#613)
- inSwap = true (#499)
- inSwap = false (#499)
Reentrancy in SuperFloki.lTransferFix(uint256) (#815-820):
External calls:
- (successOpTf) = address(marketing3).call{gas: 30000,value: amount}() (#816)
State variables written after the call(s):
- marketing3 = marketing3 (#818)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#343-354) ignores return value by ADA.transfer(shareholder,amount) (#349)
SafeToken.withdraw(address,uint256) (#399-402) ignores return value by IBEP20(_token).transfer(safeManager,_amount) (#401)
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.

SuperFloki.swapBack() (#704-781) performs a multiplication on the result of a division:
-amountBNB2 = amountBNB.mul(9).div(10) (#723)
-amountBNBReflection = amountBNB2.mul(reflectionFee).div(totalFee) (#726)
SuperFloki.swapBack() (#704-781) performs a multiplication on the result of a division:
-amountBNB2 = amountBNB.mul(9).div(10) (#723)
-amountBNBMarketing = amountBNB2.mul(marketingFee).div(totalFee).div(2) (#727)
SuperFloki.swapBack() (#704-781) performs a multiplication on the result of a division:
-amountBNB2 = amountBNB.mul(9).div(10) (#723)
-amountBNBMarketing2 = amountBNB2.mul(marketingFee).div(totalFee).div(2) (#728)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#343-354):
External calls:
- ADA.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#351)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#352)
Reentrancy in DividendDistributor.process(uint256) (#312-336):
External calls:
- distributeDividend(shareholders[currentIndex]) (#328)
- ADA.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- currentIndex ++ (#333)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- ADA.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shares[shareholder].amount = amount (#260)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#261)
Apply the check-effects-interactions pattern.

Additional information: link

SuperFloki.swapBack().successOp1_scope_9 (#768) is a local variable never initialized
SuperFloki.swapBack().successOp1_scope_4 (#752) is a local variable never initialized
SuperFloki.swapBack().e (#776) is a local variable never initialized
SuperFloki.swapBack().successOp2_scope_5 (#753) 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

DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#242-246) should emit an event for:
- minPeriod = _minPeriod (#243)
- minDistribution = _minDistribution (#244)
SuperFloki.STL(uint256) (#849-851) should emit an event for:
- _maxTxAmount = amount (#850)
SuperFloki.setMaxWallet(uint256) (#852-854) should emit an event for:
- _maxWallet = amount (#853)
SuperFloki.setMaxBuyBack(uint256) (#855-857) should emit an event for:
- buyBackUpperLimit = amount (#856)
SuperFloki.setFees(uint256,uint256,uint256,uint256) (#890-897) should emit an event for:
- burnFee = _burnFee (#891)
- reflectionFee = _reflectionFee (#892)
- marketingFee = _marketingFee (#893)
- totalFee = _burnFee.add(_reflectionFee).add(_marketingFee) (#894)
- feeDenominator = _feeDenominator (#895)
SuperFloki.setSwapBackSettings(bool,uint256) (#909-912) should emit an event for:
- swapThreshold = _amount (#911)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#395) lacks a zero-check on :
- safeManager = _safeManager (#396)
SuperFloki.constructor().owner_ (#513) lacks a zero-check on :
- marketing = owner_ (#527)
- marketing2 = owner_ (#528)
- marketing3 = owner_ (#529)
SuperFloki.setMarketingWallet(address)._marketing (#899) lacks a zero-check on :
- marketing = _marketing (#900)
SuperFloki.setMarketingWallet2(address)._marketing (#902) lacks a zero-check on :
- marketing2 = _marketing (#903)
SuperFloki.setMarketingWallet3(address)._marketing (#905) lacks a zero-check on :
- marketing3 = _marketing (#906)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#343-354) has external calls inside a loop: ADA.transfer(shareholder,amount) (#349)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'SuperFloki.swapBack().successOp1 (#731)' in SuperFloki.swapBack() (#704-781) potentially used before declaration: (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
Variable 'SuperFloki.swapBack().successOp2 (#732)' in SuperFloki.swapBack() (#704-781) potentially used before declaration: (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
Variable 'SuperFloki.swapBack().successOp1 (#731)' in SuperFloki.swapBack() (#704-781) potentially used before declaration: (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
Variable 'SuperFloki.swapBack().e (#776)' in SuperFloki.swapBack() (#704-781) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#777)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in SuperFloki.constructor() (#501-533):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#507)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#508)
- _balances[owner_] = _totalSupply (#531)
- _setAutomatedMarketMakerPair(pair,true) (#509)
- automatedMarketMakerPairs[pairAddr] = value (#555)
- distributor = new DividendDistributor() (#511)
- excludeDividend[pair] = true (#517)
- excludeDividend[address(this)] = true (#518)
- excludeDividend[DEAD] = true (#521)
- excludeFee[owner_] = true (#515)
- excludeFee[address(this)] = true (#519)
- excludeMaxTxn[owner_] = true (#516)
- excludeMaxTxn[address(this)] = true (#520)
- excludeMaxWallet[owner_] = true (#522)
- excludeMaxWallet[pair] = true (#523)
- excludeMaxWallet[DEAD] = true (#524)
- excludeMaxWallet[0x10ED43C718714eb63d5aA57B78B54704E256024E] = true (#525)
- marketing = owner_ (#527)
- marketing2 = owner_ (#528)
- marketing3 = owner_ (#529)
Reentrancy in DividendDistributor.deposit() (#292-310):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#299-304)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#309)
- totalDividends = totalDividends.add(amount) (#308)
Reentrancy in DividendDistributor.distributeDividend(address) (#343-354):
External calls:
- ADA.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#350)
Reentrancy in DividendDistributor.setShare(address,uint256) (#248-262):
External calls:
- distributeDividend(shareholder) (#250)
- ADA.transfer(shareholder,amount) (#349)
State variables written after the call(s):
- addShareholder(shareholder) (#254)
- shareholderIndexes[shareholder] = shareholders.length (#376)
- removeShareholder(shareholder) (#256)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#382)
- addShareholder(shareholder) (#254)
- shareholders.push(shareholder) (#377)
- removeShareholder(shareholder) (#256)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#381)
- shareholders.pop() (#383)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#259)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SuperFloki._transferFrom(address,address,uint256) (#570-638):
External calls:
- swapBack() (#610)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
External calls sending eth:
- swapBack() (#610)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#808)
- buyBackTokens() (#613)
- Transfer(sender,address(this),feeAmount) (#692)
- amountReceived = takeFee(sender,recipient,amount) (#624)
Reentrancy in SuperFloki._transferFrom(address,address,uint256) (#570-638):
External calls:
- swapBack() (#610)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
- distributor.setShare(sender,_balances[sender]) (#627)
- distributor.setShare(recipient,_balances[recipient]) (#628)
- distributor.process(distributorGas) (#630)
External calls sending eth:
- swapBack() (#610)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
- buyBackTokens() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#636)
Reentrancy in SuperFloki.constructor() (#501-533):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#507)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#532)
Reentrancy in SuperFloki.swapBack() (#704-781):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#730)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#734)
Reentrancy in SuperFloki.swapBack() (#704-781):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection_scope_1}() (#751)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#754)
Reentrancy in SuperFloki.swapBack() (#704-781):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection_scope_7}() (#767)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#769)
Reentrancy in SuperFloki.swapBack() (#704-781):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmount,0,path,address(this),block.timestamp) (#713-780)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#777)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#779)
Reentrancy in SuperFloki.swapBnbForTokens(uint256) (#792-809):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#799-806)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#808)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.getAccount(address) (#275-290) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#287-289)
DividendDistributor.shouldDistribute(address) (#338-341) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#339-340)
SuperFloki._transferFrom(address,address,uint256) (#570-638) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp - _transactionCheckpoint[sender] >= _transactionLockTime (#589)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#312-336) has costly operations inside a loop:
- currentIndex = 0 (#324)
DividendDistributor.distributeDividend(address) (#343-354) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#348)
DividendDistributor.process(uint256) (#312-336) has costly operations inside a loop:
- currentIndex ++ (#333)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#52-55) is never used and should be removed
SuperFloki.changeBuyingFee() (#640-644) is never used and should be removed
SuperFloki.restoreAllFee() (#645-648) is never used and should be removed
Remove unused functions.

Additional information: link

SuperFloki._maxTxAmount (#455) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SuperFloki.maxSellTransactionAmount (#456) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SuperFloki.totalFee (#464) is set pre-construction with a non-constant function or state variable:
- burnFee.add(reflectionFee).add(marketingFee)
SuperFloki.swapThreshold (#495) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
SuperFloki.swapThresholdBNB (#496) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 5000
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 SuperFloki.swapBack() (#704-781):
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#731)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2}() (#732)
- (successOp3) = address(marketing3).call{gas: 30000,value: amountBNBforLiq}() (#733)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_2}() (#752)
- (successOp2) = address(marketing2).call{gas: 30000,value: amountBNBMarketing2_scope_3}() (#753)
- (successOp1) = address(marketing).call{gas: 30000,value: amountBNBMarketing_scope_8}() (#768)
Low level call in SuperFloki.lTransferFix(uint256) (#815-820):
- (successOpTf) = address(marketing3).call{gas: 30000,value: amount}() (#816)
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() (#133) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#242) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#242) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#242) is not in mixedCase
Parameter DividendDistributor.getAccount(address)._account (#275) is not in mixedCase
Variable DividendDistributor._token (#192) is not in mixedCase
Variable DividendDistributor.ADA (#200) is not in mixedCase
Variable DividendDistributor.WBNB (#201) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#395) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#399) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#399) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#404) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#427) is not in mixedCase
Function SuperFloki.UMS(uint256) (#670-672) is not in mixedCase
Function SuperFloki.STL(uint256) (#849-851) is not in mixedCase
Parameter SuperFloki.setFees(uint256,uint256,uint256,uint256)._burnFee (#890) is not in mixedCase
Parameter SuperFloki.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#890) is not in mixedCase
Parameter SuperFloki.setFees(uint256,uint256,uint256,uint256)._marketingFee (#890) is not in mixedCase
Parameter SuperFloki.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#890) is not in mixedCase
Parameter SuperFloki.setMarketingWallet(address)._marketing (#899) is not in mixedCase
Parameter SuperFloki.setMarketingWallet2(address)._marketing (#902) is not in mixedCase
Parameter SuperFloki.setMarketingWallet3(address)._marketing (#905) is not in mixedCase
Parameter SuperFloki.setSwapBackSettings(bool,uint256)._enabled (#909) is not in mixedCase
Parameter SuperFloki.setSwapBackSettings(bool,uint256)._amount (#909) is not in mixedCase
Parameter SuperFloki.setDualMarkSettings(bool)._enabled (#913) is not in mixedCase
Parameter SuperFloki.setAutoLiqSettings(bool)._enabled (#916) is not in mixedCase
Parameter SuperFloki.setLimitByDaySettings(bool)._enabled (#920) is not in mixedCase
Parameter SuperFloki.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#927) is not in mixedCase
Parameter SuperFloki.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#927) is not in mixedCase
Parameter SuperFloki.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#927) is not in mixedCase
Function SuperFloki.SBL(address,bool) (#966-968) is not in mixedCase
Variable SuperFloki.WBNB (#437) is not in mixedCase
Variable SuperFloki.DEAD (#438) is not in mixedCase
Variable SuperFloki.ZERO (#439) is not in mixedCase
Variable SuperFloki._balances (#441) is not in mixedCase
Variable SuperFloki._allowances (#442) is not in mixedCase
Constant SuperFloki._name (#444) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SuperFloki._symbol (#445) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SuperFloki._decimals (#446) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SuperFloki._totalSupply (#447) is not in mixedCase
Variable SuperFloki._maxTxAmount (#455) is not in mixedCase
Variable SuperFloki._maxWallet (#458) is not in mixedCase
Variable SuperFloki._transactionCheckpoint (#491) is not in mixedCase
Variable SuperFloki._transactionCheckpointAmt (#492) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#53)" inContext (#47-56)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#138) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#139)
Variable SuperFloki.swapBack().amountBNBMarketing_scope_2 (#748) is too similar to SuperFloki.swapBack().amountBNBMarketing_scope_8 (#765)
Variable SuperFloki.swapBack().amountBNBReflection_scope_1 (#747) is too similar to SuperFloki.swapBack().amountBNBReflection_scope_7 (#764)
Variable SuperFloki.swapBack().amountBNB_scope_0 (#746) is too similar to SuperFloki.swapBack().amountBNB_scope_6 (#763)
Variable SuperFloki.swapBack().successOp1_scope_4 (#752) is too similar to SuperFloki.swapBack().successOp1_scope_9 (#768)
Prevent variables from having similar names.

Additional information: link

SuperFloki.setDistributorSettings(uint256) (#946-949) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#947)
SuperFloki.slitherConstructorVariables() (#434-974) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#438)
SuperFloki.slitherConstructorVariables() (#434-974) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#439)
SuperFloki.slitherConstructorVariables() (#434-974) uses literals with too many digits:
- distributorGas = 500000 (#484)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#214) should be constant
SuperFloki.DEAD (#438) should be constant
SuperFloki.ZERO (#439) should be constant
SuperFloki._totalSupply (#447) should be constant
SuperFloki.buyBackEnable (#487) should be constant
SuperFloki.buyMarketingFee (#473) should be constant
SuperFloki.buyReflectionFee (#472) should be constant
SuperFloki.pushChartMarketingFee (#467) should be constant
SuperFloki.pushChartReflectionFee (#468) should be constant
SuperFloki.sellMarketingFee (#471) should be constant
SuperFloki.sellReflectionFee (#470) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#94-97)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#103-107)
getAccount(address) should be declared external:
- DividendDistributor.getAccount(address) (#275-290)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#395-397)
UMS(uint256) should be declared external:
- SuperFloki.UMS(uint256) (#670-672)
lsetBeforeLaunch() should be declared external:
- SuperFloki.lsetBeforeLaunch() (#811-813)
lsetGrandLaunch1() should be declared external:
- SuperFloki.lsetGrandLaunch1() (#830-839)
lsetGrandLaunch2() should be declared external:
- SuperFloki.lsetGrandLaunch2() (#840-848)
lsetEMX(address[],bool) should be declared external:
- SuperFloki.lsetEMX(address[],bool) (#879-883)
lsetEF(address[],bool) should be declared external:
- SuperFloki.lsetEF(address[],bool) (#884-888)
getCirculatingSupply() should be declared external:
- SuperFloki.getCirculatingSupply() (#951-953)
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.


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 scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SuperFloki