Floki Millions Token Logo

MILLIONS [Floki Millions] Token

ALERT: dead

About MILLIONS

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

$MILLIONS is the year's hottest lottery token with massive weekly jackpot drawings and with a one-of-kind lottery smart contract that will let you earn rewards in BNBs regardless of the volume!

Social

Laser Scorebeta Last Audit: 10 June 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

FlokiMillions.swapBack() (#1080-1120) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Ownable._lockTime (#209) is never initialized. It is used in:
- Ownable.getUnlockTime() (#245-247)
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

Reentrancy in FlokiMillions._transfer(address,address,uint256) (#985-1078):
External calls:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
External calls sending eth:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1074)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1345)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1349)
- _tokenTransfer(from,to,amount) (#1074)
- _lotteryTokensToSwap += tLiquidity * _buyLotteryFee / _liquidityFee (#1347)
- _lotteryTokensToSwap += tLiquidity * _sellLotteryFee / _liquidityFee (#1351)
- _tokenTransfer(from,to,amount) (#1074)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1346)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1350)
- _tokenTransfer(from,to,amount) (#1074)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1178)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1198)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1241)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1220)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1179)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1200)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1221)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1243)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1355)
- _tokenTransfer(from,to,amount) (#1074)
- _rTotal = _rTotal.sub(rFee) (#1250)
- _tokenTransfer(from,to,amount) (#1074)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1219)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1240)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1199)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1242)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1357)
Apply the check-effects-interactions pattern.

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.

FlokiMillions.swapBack().success (#1083) is written in both
(success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
(success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
Fix or remove the writes.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

FlokiMillions._transfer(address,address,uint256) (#985-1078) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1014)
Do not use tx.origin for authorization.

Additional information: link

Reentrancy in FlokiMillions.constructor() (#717-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#724)
State variables written after the call(s):
- transferOwnership(newOwner) (#748)
- _owner = newOwner (#242)
Reentrancy in FlokiMillions.swapBack() (#1080-1120):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1107)
- _lotteryTokensToSwap = 0 (#1109)
- _marketingTokensToSwap = 0 (#1108)
Apply the check-effects-interactions pattern.

Additional information: link

FlokiMillions.addLiquidity(uint256,uint256) (#1136-1146) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
Ensure that all the return values of the function calls are used.

Additional information: link

FlokiMillions.allowance(address,address).owner (#781) shadows:
- Ownable.owner() (#222-224) (function)
FlokiMillions._approve(address,address,uint256).owner (#974) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.

Additional information: link

FlokiMillions.updateMinimumTokensBeforeSwap(uint256) (#893-897) should emit an event for:
- minimumTokensBeforeSwap = newAmount (#896)
FlokiMillions.updateMaxAmount(uint256) (#899-902) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#901)
FlokiMillions.setGasPriceLimit(uint256) (#917-920) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#919)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in FlokiMillions._transfer(address,address,uint256) (#985-1078):
External calls:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
External calls sending eth:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
State variables written after the call(s):
- removeAllFee() (#1046)
- _liquidityFee = 0 (#1379)
- _liquidityFee = 9300 (#1053)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyLotteryFee (#1059)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellLotteryFee (#1067)
- restoreAllFee() (#1076)
- _liquidityFee = _previousLiquidityFee (#1384)
- removeAllFee() (#1046)
- _previousLiquidityFee = _liquidityFee (#1376)
- removeAllFee() (#1046)
- _previousTaxFee = _taxFee (#1375)
- _tokenTransfer(from,to,amount) (#1074)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1251)
- removeAllFee() (#1046)
- _taxFee = 0 (#1378)
- _taxFee = 600 (#1052)
- _taxFee = _buyTaxFee (#1058)
- _taxFee = _sellTaxFee (#1066)
- restoreAllFee() (#1076)
- _taxFee = _previousTaxFee (#1383)
- buyOrSellSwitch = TRANSFER (#1048)
- buyOrSellSwitch = SELL (#1054)
- buyOrSellSwitch = BUY (#1061)
- buyOrSellSwitch = SELL (#1069)
Reentrancy in FlokiMillions.constructor() (#717-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#724)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#726)
- _excluded.push(account) (#957)
- _excluded[i] = _excluded[_excluded.length - 1] (#964)
- _excluded.pop() (#967)
- excludeFromReward(address(this)) (#745)
- _excluded.push(account) (#957)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#726)
- _isExcluded[account] = true (#956)
- _isExcluded[account] = false (#966)
- excludeFromReward(address(this)) (#745)
- _isExcluded[account] = true (#956)
- _isExcludedFromFee[newOwner] = true (#736)
- _isExcludedFromFee[address(this)] = true (#737)
- _isExcludedFromFee[marketingAddress] = true (#738)
- _isExcludedFromFee[liquidityAddress] = true (#739)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#725)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#878)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#726)
- _isExcludedMaxTransactionAmount[pair] = value (#912)
- excludeFromMaxTransaction(newOwner,true) (#741)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#878)
- excludeFromMaxTransaction(address(this),true) (#742)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#878)
- excludeFromMaxTransaction(address(0xdead),true) (#743)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#878)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#726)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#954)
- _tOwned[account] = 0 (#965)
- excludeFromReward(address(this)) (#745)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#954)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#726)
- automatedMarketMakerPairs[pair] = value (#911)
- liquidityAddress = address(address(owner())) (#733)
- lotteryAddress = address(0x81C36eCF7F9aD607B109f3aee8fF4E9090f412ad) (#734)
- marketingAddress = address(0xd17b611E8Fe265D685669032f0BFFafbD949abD2) (#732)
- maxTransactionAmount = _tTotal * 1 / 1000 (#729)
- minimumTokensBeforeSwap = _tTotal * 5 / 10000 (#730)
Reentrancy in FlokiMillions.swapBack() (#1080-1120):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- _allowances[owner][spender] = amount (#981)
Reentrancy in FlokiMillions.transferFrom(address,address,uint256) (#799-814):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805-812)
- _allowances[owner][spender] = amount (#981)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FlokiMillions._transfer(address,address,uint256) (#985-1078):
External calls:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
External calls sending eth:
- swapBack() (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1182)
- _tokenTransfer(from,to,amount) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#1224)
- _tokenTransfer(from,to,amount) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#1203)
- _tokenTransfer(from,to,amount) (#1074)
- Transfer(sender,recipient,tTransferAmount) (#1246)
- _tokenTransfer(from,to,amount) (#1074)
Reentrancy in FlokiMillions.constructor() (#717-749):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#724)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#241)
- transferOwnership(newOwner) (#748)
- Transfer(address(0),newOwner,_tTotal) (#747)
Reentrancy in FlokiMillions.swapBack() (#1080-1120):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#982)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1112)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1113)
Reentrancy in FlokiMillions.transferForeignToken(address,address) (#1454-1464):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1462)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1463)
Reentrancy in FlokiMillions.transferFrom(address,address,uint256) (#799-814):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1127-1133)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1138-1145)
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#982)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805-812)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#111-122) uses assembly
- INLINE ASM (#118-120)
Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) uses assembly
- INLINE ASM (#195-198)
Do not use evm assembly.

Additional information: link

FlokiMillions.includeInReward(address) (#960-971) has costly operations inside a loop:
- _excluded.pop() (#967)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) is never used and should be removed
Address.functionCall(address,bytes) (#138-143) is never used and should be removed
Address.functionCall(address,bytes,string) (#145-151) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#153-165) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#167-178) is never used and should be removed
Address.isContract(address) (#111-122) is never used and should be removed
Address.sendValue(address,uint256) (#124-136) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#100-107) is never used and should be removed
Remove unused functions.

Additional information: link

FlokiMillions._previousTaxFee (#633) is set pre-construction with a non-constant function or state variable:
- _taxFee
FlokiMillions._previousLiquidityFee (#636) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#124-136):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#180-203):
- (success,returndata) = target.call{value: weiValue}(data) (#188-190)
Low level call in FlokiMillions.swapBack() (#1080-1120):
- (success,None) = address(lotteryAddress).call{value: ethForLottery}() (#1116)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1119)
Low level call in FlokiMillions.withdrawStuckETH() (#1467-1471):
- (success,None) = address(msg.sender).call{value: address(this).balance}() (#1470)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Ownable._previousOwner (#208) is never used in FlokiMillions (#598-1473)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#231-234)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#245-247)
getTime() should be declared external:
- Ownable.getTime() (#249-251)
approve(address,uint256) should be declared external:
- FlokiMillions.approve(address,uint256) (#790-797)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- FlokiMillions.setAutomatedMarketMakerPair(address,bool) (#904-908)
setLiquidityAddress(address) should be declared external:
- FlokiMillions.setLiquidityAddress(address) (#1433-1438)
setLotteryAddress(address) should be declared external:
- FlokiMillions.setLotteryAddress(address) (#1440-1444)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FlokiMillions.setSwapAndLiquifyEnabled(bool) (#1446-1449)
Use the external attribute for functions never called from the contract.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#319) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#321) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#351) is not in mixedCase
Function IUniswapV2Router01.WETH() (#395) is not in mixedCase
Parameter FlokiMillions.addPresaleAddressForExclusions(address)._presaleAddress (#866) is not in mixedCase
Parameter FlokiMillions.calculateTaxFee(uint256)._amount (#1360) is not in mixedCase
Parameter FlokiMillions.calculateLiquidityFee(uint256)._amount (#1364) is not in mixedCase
Parameter FlokiMillions.setMarketingAddress(address)._marketingAddress (#1425) is not in mixedCase
Parameter FlokiMillions.setLiquidityAddress(address)._liquidityAddress (#1433) is not in mixedCase
Parameter FlokiMillions.setLotteryAddress(address)._lotteryAddress (#1440) is not in mixedCase
Parameter FlokiMillions.setSwapAndLiquifyEnabled(bool)._enabled (#1446) is not in mixedCase
Parameter FlokiMillions.transferForeignToken(address,address)._token (#1454) is not in mixedCase
Parameter FlokiMillions.transferForeignToken(address,address)._to (#1454) is not in mixedCase
Constant FlokiMillions._tTotal (#623) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FlokiMillions._name (#627) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FlokiMillions._symbol (#628) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FlokiMillions._decimals (#629) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FlokiMillions._buyTaxFee (#643) is not in mixedCase
Variable FlokiMillions._buyLiquidityFee (#644) is not in mixedCase
Variable FlokiMillions._buyMarketingFee (#645) is not in mixedCase
Variable FlokiMillions._buyLotteryFee (#646) is not in mixedCase
Variable FlokiMillions._sellTaxFee (#648) is not in mixedCase
Variable FlokiMillions._sellLiquidityFee (#649) is not in mixedCase
Variable FlokiMillions._sellMarketingFee (#650) is not in mixedCase
Variable FlokiMillions._sellLotteryFee (#651) is not in mixedCase
Variable FlokiMillions._liquidityTokensToSwap (#655) is not in mixedCase
Variable FlokiMillions._marketingTokensToSwap (#656) is not in mixedCase
Variable FlokiMillions._lotteryTokensToSwap (#657) is not in mixedCase
Variable FlokiMillions._isExcludedMaxTransactionAmount (#660) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#400) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#401)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._transferBothExcluded(address,address,uint256).tTransferAmount (#1236)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions._transferStandard(address,address,uint256).rTransferAmount (#1172) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._getTValues(uint256).tTransferAmount (#1298)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferToExcluded(address,address,uint256).rTransferAmount (#1192) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions.reflectionFromToken(uint256,bool).rTransferAmount (#932) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._transferToExcluded(address,address,uint256).tTransferAmount (#1194)
Variable FlokiMillions._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1319) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Variable FlokiMillions._transferFromExcluded(address,address,uint256).rTransferAmount (#1213) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._transferFromExcluded(address,address,uint256).tTransferAmount (#1215)
Variable FlokiMillions._transferBothExcluded(address,address,uint256).rTransferAmount (#1234) is too similar to FlokiMillions._getValues(uint256).tTransferAmount (#1267)
Variable FlokiMillions._getValues(uint256).rTransferAmount (#1271) is too similar to FlokiMillions._transferStandard(address,address,uint256).tTransferAmount (#1174)
Prevent variables from having similar names.

Additional information: link

FlokiMillions.updateMinimumTokensBeforeSwap(uint256) (#893-897) uses literals with too many digits:
- require(bool,string)(newAmount >= _tTotal * 1 / 100000,Swap amount cannot be lower than 0.001% total supply.) (#894)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#209) should be constant
Ownable._previousOwner (#208) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 10% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Average 30d PancakeSwap liquidity is low.


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for MILLIONS

News for MILLIONS