FLORK is a meme token for the community and to spread mental health awareness.
Instant rewards token the safest bet to park your BNB!
Flork.swapBack() (#1187-1244) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Flork._transfer(address,address,uint256) (#1057-1185):
External calls:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
External calls sending eth:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1182)
- _devTokensToSwap += (tLiquidity * _buyDevFee) / _liquidityFee (#1474)
- _devTokensToSwap += (tLiquidity * _sellDevFee) / _liquidityFee (#1482)
- _tokenTransfer(from,to,amount) (#1182)
- _liquidityTokensToSwap += (tLiquidity * _buyLiquidityFee) / _liquidityFee (#1468-1470)
- _liquidityTokensToSwap += (tLiquidity * _sellLiquidityFee) / _liquidityFee (#1476-1478)
- _tokenTransfer(from,to,amount) (#1182)
- _marketingTokensToSwap += (tLiquidity * _buyMarketingFee) / _liquidityFee (#1471-1473)
- _marketingTokensToSwap += (tLiquidity * _sellMarketingFee) / _liquidityFee (#1479-1481)
- _tokenTransfer(from,to,amount) (#1182)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1301)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1321)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1343)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1364)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1302)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1323)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1344)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1366)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1486)
- _tokenTransfer(from,to,amount) (#1182)
- _rTotal = _rTotal.sub(rFee) (#1373)
- _tokenTransfer(from,to,amount) (#1182)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1363)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1342)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1322)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1365)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1488)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable._lockTime (#214) is never initialized. It is used in:
- Ownable.getUnlockTime() (#250-252)
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
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Flork.swapBack().success (#1192) is written in both
(success,None) = address(devAddress).call{value: ethForDev}() (#1238)
(success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
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.
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in Flork.constructor() (#738-783):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#755-756)
State variables written after the call(s):
- transferOwnership(newOwner) (#782)
- _owner = newOwner (#247)
Reentrancy in Flork.swapBack() (#1187-1244):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
State variables written after the call(s):
- _devTokensToSwap = 0 (#1227)
- _liquidityTokensToSwap = 0 (#1225)
- _marketingTokensToSwap = 0 (#1226)
Apply the check-effects-interactions pattern.
Additional information: link
Flork._transfer(address,address,uint256) (#1057-1185) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1095-1099)
Do not use tx.origin for authorization.
Additional information: link
Flork.addLiquidity(uint256,uint256) (#1260-1270) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
Ensure that all the return values of the function calls are used.
Additional information: link
Flork.allowance(address,address).owner (#815) shadows:
- Ownable.owner() (#227-229) (function)
Flork._approve(address,address,uint256).owner (#1046) shadows:
- Ownable.owner() (#227-229) (function)
Rename the local variables that shadow another component.
Additional information: link
Flork.updateMinimumTokensBeforeSwap(uint256) (#940-953) should emit an event for:
- minimumTokensBeforeSwap = newAmount (#952)
Flork.updateMaxAmount(uint256) (#955-961) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#960)
Flork.setGasPriceLimit(uint256) (#986-989) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#988)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in Flork._transfer(address,address,uint256) (#1057-1185):
External calls:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
External calls sending eth:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
State variables written after the call(s):
- removeAllFee() (#1144)
- _liquidityFee = 0 (#1510)
- _liquidityFee = 9300 (#1155)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyDevFee (#1161-1164)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellDevFee (#1172-1175)
- restoreAllFee() (#1184)
- _liquidityFee = _previousLiquidityFee (#1515)
- removeAllFee() (#1144)
- _previousLiquidityFee = _liquidityFee (#1507)
- removeAllFee() (#1144)
- _previousTaxFee = _taxFee (#1506)
- _tokenTransfer(from,to,amount) (#1182)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1374)
- removeAllFee() (#1144)
- _taxFee = 0 (#1509)
- _taxFee = 600 (#1154)
- _taxFee = _buyTaxFee (#1160)
- _taxFee = _sellTaxFee (#1171)
- restoreAllFee() (#1184)
- _taxFee = _previousTaxFee (#1514)
- buyOrSellSwitch = TRANSFER (#1146)
- buyOrSellSwitch = SELL (#1156)
- buyOrSellSwitch = BUY (#1166)
- buyOrSellSwitch = SELL (#1177)
Reentrancy in Flork.constructor() (#738-783):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#755-756)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#758)
- _excluded.push(account) (#1029)
- _excluded[i] = _excluded[_excluded.length - 1] (#1036)
- _excluded.pop() (#1039)
- excludeFromReward(address(this)) (#779)
- _excluded.push(account) (#1029)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#758)
- _isExcluded[account] = true (#1028)
- _isExcluded[account] = false (#1038)
- excludeFromReward(address(this)) (#779)
- _isExcluded[account] = true (#1028)
- _isExcludedFromFee[newOwner] = true (#768)
- _isExcludedFromFee[address(this)] = true (#769)
- _isExcludedFromFee[marketingAddress] = true (#770)
- _isExcludedFromFee[liquidityAddress] = true (#771)
- _isExcludedFromFee[address(0x96ca2786E70772Be797eDd1ac8310eb38a8A43C5)] = true (#772)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#757)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#925)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#758)
- _isExcludedMaxTransactionAmount[pair] = value (#977)
- excludeFromMaxTransaction(newOwner,true) (#774)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#925)
- excludeFromMaxTransaction(address(this),true) (#775)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#925)
- excludeFromMaxTransaction(address(0xdead),true) (#776)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#925)
- excludeFromMaxTransaction(address(0x96ca2786E70772Be797eDd1ac8310eb38a8A43C5),true) (#777)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#925)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#758)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#1026)
- _tOwned[account] = 0 (#1037)
- excludeFromReward(address(this)) (#779)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#1026)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#758)
- automatedMarketMakerPairs[pair] = value (#976)
- devAddress = address(0xa287E1C3c2a830F8C3f22F2A8122a8Ce015c07ea) (#766)
- liquidityAddress = address(address(owner())) (#765)
- marketingAddress = address(0x5b99Edb6273E761616bB56d626baD2E1fD34136b) (#764)
- maxTransactionAmount = (_tTotal * 22) / 10000 (#761)
- minimumTokensBeforeSwap = (_tTotal * 5) / 10000 (#762)
Reentrancy in Flork.swapBack() (#1187-1244):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- _allowances[owner][spender] = amount (#1053)
Reentrancy in Flork.transferFrom(address,address,uint256) (#833-848):
External calls:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
External calls sending eth:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#839-846)
- _allowances[owner][spender] = amount (#1053)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Flork._transfer(address,address,uint256) (#1057-1185):
External calls:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
External calls sending eth:
- swapBack() (#1141)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1305)
- _tokenTransfer(from,to,amount) (#1182)
- Transfer(sender,recipient,tTransferAmount) (#1347)
- _tokenTransfer(from,to,amount) (#1182)
- Transfer(sender,recipient,tTransferAmount) (#1326)
- _tokenTransfer(from,to,amount) (#1182)
- Transfer(sender,recipient,tTransferAmount) (#1369)
- _tokenTransfer(from,to,amount) (#1182)
Reentrancy in Flork.constructor() (#738-783):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#755-756)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#246)
- transferOwnership(newOwner) (#782)
- Transfer(address(0),newOwner,_tTotal) (#781)
Reentrancy in Flork.swapBack() (#1187-1244):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1054)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1230)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1231-1235)
Reentrancy in Flork.transferForeignToken(address,address) (#1626-1636):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1634)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1635)
Reentrancy in Flork.transferFrom(address,address,uint256) (#833-848):
External calls:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1251-1257)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
External calls sending eth:
- _transfer(sender,recipient,amount) (#838)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1262-1269)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1054)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#839-846)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#116-127) uses assembly
- INLINE ASM (#123-125)
Address._functionCallWithValue(address,bytes,uint256,string) (#185-208) uses assembly
- INLINE ASM (#200-203)
Do not use evm assembly.
Additional information: link
Flork.includeInReward(address) (#1032-1043) has costly operations inside a loop:
- _excluded.pop() (#1039)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#185-208) is never used and should be removed
Address.functionCall(address,bytes) (#143-148) is never used and should be removed
Address.functionCall(address,bytes,string) (#150-156) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#158-170) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#172-183) is never used and should be removed
Address.isContract(address) (#116-127) is never used and should be removed
Address.sendValue(address,uint256) (#129-141) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#101-103) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#105-112) is never used and should be removed
Remove unused functions.
Additional information: link
Flork._previousTaxFee (#636) is set pre-construction with a non-constant function or state variable:
- _taxFee
Flork._previousLiquidityFee (#639) 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 (#8) 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) (#129-141):
- (success) = recipient.call{value: amount}() (#136)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#185-208):
- (success,returndata) = target.call{value: weiValue}(data) (#193-195)
Low level call in Flork.swapBack() (#1187-1244):
- (success,None) = address(devAddress).call{value: ethForDev}() (#1238)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1241-1243)
Low level call in Flork.withdrawStuckETH() (#1639-1645):
- (success,None) = address(msg.sender).call{value: address(this).balance}() (#1642-1644)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#322) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#324) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#354) is not in mixedCase
Function IUniswapV2Router01.WETH() (#398) is not in mixedCase
Parameter Flork.addPresaleAddressForExclusions(address)._presaleAddress (#907) is not in mixedCase
Parameter Flork.calculateTaxFee(uint256)._amount (#1491) is not in mixedCase
Parameter Flork.calculateLiquidityFee(uint256)._amount (#1495) is not in mixedCase
Parameter Flork.setMarketingAddress(address)._marketingAddress (#1591) is not in mixedCase
Parameter Flork.setLiquidityAddress(address)._liquidityAddress (#1602) is not in mixedCase
Parameter Flork.setdevAddress(address)._devAddress (#1612) is not in mixedCase
Parameter Flork.setSwapAndLiquifyEnabled(bool)._enabled (#1618) is not in mixedCase
Parameter Flork.transferForeignToken(address,address)._token (#1626) is not in mixedCase
Parameter Flork.transferForeignToken(address,address)._to (#1626) is not in mixedCase
Constant Flork._tTotal (#626) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._name (#630) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._symbol (#631) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._decimals (#632) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Flork._buyTaxFee (#646) is not in mixedCase
Variable Flork._buyLiquidityFee (#647) is not in mixedCase
Variable Flork._buyMarketingFee (#648) is not in mixedCase
Variable Flork._buyDevFee (#649) is not in mixedCase
Constant Flork._originalSellTaxFee (#651) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._originalSellLiquidityFee (#652) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._originalSellMarketingFee (#653) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Flork._originalSellDevFee (#654) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Flork._sellTaxFee (#656) is not in mixedCase
Variable Flork._sellLiquidityFee (#657) is not in mixedCase
Variable Flork._sellMarketingFee (#658) is not in mixedCase
Variable Flork._sellDevFee (#659) is not in mixedCase
Variable Flork._liquidityTokensToSwap (#663) is not in mixedCase
Variable Flork._marketingTokensToSwap (#664) is not in mixedCase
Variable Flork._devTokensToSwap (#665) is not in mixedCase
Variable Flork._isExcludedMaxTransactionAmount (#668) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#16)" inContext (#10-19)
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 (#403) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#404)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._transferStandard(address,address,uint256).tTransferAmount (#1297)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1442) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._getValues(uint256).rTransferAmount (#1394) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork._transferStandard(address,address,uint256).rTransferAmount (#1295) is too similar to Flork._transferFromExcluded(address,address,uint256).tTransferAmount (#1338)
Variable Flork._transferToExcluded(address,address,uint256).rTransferAmount (#1315) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._transferBothExcluded(address,address,uint256).rTransferAmount (#1357) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._getValues(uint256).tTransferAmount (#1390)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._transferBothExcluded(address,address,uint256).tTransferAmount (#1359)
Variable Flork._transferFromExcluded(address,address,uint256).rTransferAmount (#1336) is too similar to Flork._getTValues(uint256).tTransferAmount (#1421)
Variable Flork.reflectionFromToken(uint256,bool).rTransferAmount (#1001) is too similar to Flork._transferToExcluded(address,address,uint256).tTransferAmount (#1317)
Prevent variables from having similar names.
Additional information: link
Flork.updateMinimumTokensBeforeSwap(uint256) (#940-953) uses literals with too many digits:
- require(bool,string)(newAmount >= (_tTotal * 1) / 100000,Swap amount cannot be lower than 0.001% total supply.) (#944-947)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#213) is never used in Flork (#601-1647)
Remove unused state variables.
Additional information: link
Ownable._lockTime (#214) should be constant
Ownable._previousOwner (#213) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#236-239)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#250-252)
getTime() should be declared external:
- Ownable.getTime() (#254-256)
approve(address,uint256) should be declared external:
- Flork.approve(address,uint256) (#824-831)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- Flork.setAutomatedMarketMakerPair(address,bool) (#963-973)
setLiquidityAddress(address) should be declared external:
- Flork.setLiquidityAddress(address) (#1602-1610)
setdevAddress(address) should be declared external:
- Flork.setdevAddress(address) (#1612-1616)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Flork.setSwapAndLiquifyEnabled(bool) (#1618-1621)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts