Anyone who wins the game can easily acquire Squid Cash tokens!
Bringing Squid Game to life through gaming, Community prizes!
Squidcash team based in South Korea, BUSD rewards token on the Binance Smart Chain. Just buy and hold $SQUIDC and we’ll give you bonuses in form of the hottest game Squid Cash game. Transaction fees from buy and sell orders are redistributed with BUSD rewards with the highest yields of 5%.
No claiming required. BUSD are sent automatically to holders every 3 hours.
ERC20DividendToken.swapEthForTokens(uint256,address) (#1709-1721) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
ERC20DividendToken.swapAndSendToFee(uint256) (#1686-1697) ignores return value by IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
- swapAndSendDividends(sellTokens) (#1641)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#1765-1768)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- dividendTracker.distributeDividends(dividends) (#1771)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1658)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#816)
- _balances[recipient] = _balances[recipient].add(amount) (#817)
- super._transfer(from,to,amount) (#1661)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#816)
- _balances[recipient] = _balances[recipient].add(amount) (#817)
- swapping = false (#1643)
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.
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.
Contract ownership is not renounced (belongs to a wallet)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
DividendPayingToken.constructor(address,string,string)._rewardToken (#1074) lacks a zero-check on :
- rewardToken = _rewardToken (#1075)
ERC20DividendToken.constructor(string,string,uint256,address,address,address).rewardToken_ (#1324) lacks a zero-check on :
- rewardToken = rewardToken_ (#1331)
ERC20DividendToken.constructor(string,string,uint256,address,address,address).marketingAddress_ (#1324) lacks a zero-check on :
- marketingAddress = marketingAddress_ (#1332)
ERC20DividendToken.constructor(string,string,uint256,address,address,address)._uniswapV2Pair (#1342-1343) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1345)
ERC20DividendToken.updateUniswapV2Router(address)._uniswapV2Pair (#1403-1404) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1405)
ERC20DividendToken.setMarketingWallet(address).wallet (#1429) lacks a zero-check on :
- marketingAddress = wallet (#1430)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#1099-1125) has external calls inside a loop: success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#1109-1112)
Favor pull over push strategy for external calls.
Additional information: link
ERC20DividendToken.swapAndSendToFee(uint256) (#1686-1697) uses timestamp for comparisons
Dangerous comparisons:
- balance >= 1400 * (10 ** 18) && block.timestamp - lastDividend >= dividendCooldown (#1691)
ERC20DividendTracker.getAccount(address) (#1853-1900) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1897-1899)
ERC20DividendTracker.canAutoClaim(uint256) (#1925-1931) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1926)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1930)
Avoid relying on block.timestamp.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#274-277)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#283-287)
name() should be declared external:
- ERC20.name() (#666-668)
symbol() should be declared external:
- ERC20.symbol() (#674-676)
decimals() should be declared external:
- ERC20.decimals() (#691-693)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#717-720)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#725-727)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#736-739)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#754-758)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#772-775)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#791-794)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#919-921)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#923-928)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#930-932)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#936-938)
distributeDividends(uint256) should be declared external:
- DividendPayingToken.distributeDividends(uint256) (#1078-1089)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1093-1095)
- ERC20DividendTracker.withdrawDividend() (#1815-1820)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1130-1132)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1149-1156)
updateDividendTracker(address) should be declared external:
- ERC20DividendToken.updateDividendTracker(address) (#1371-1394)
updateUniswapV2Router(address) should be declared external:
- ERC20DividendToken.updateUniswapV2Router(address) (#1396-1406)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ERC20DividendToken.excludeMultipleAccountsFromFees(address[],bool) (#1418-1427)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- ERC20DividendToken.setAutomatedMarketMakerPair(address,bool) (#1448-1458)
updateGasForProcessing(uint256) should be declared external:
- ERC20DividendToken.updateGasForProcessing(uint256) (#1474-1485)
isExcludedFromFees(address) should be declared external:
- ERC20DividendToken.isExcludedFromFees(address) (#1499-1501)
withdrawableDividendOf(address) should be declared external:
- ERC20DividendToken.withdrawableDividendOf(address) (#1503-1509)
dividendTokenBalanceOf(address) should be declared external:
- ERC20DividendToken.dividendTokenBalanceOf(address) (#1511-1517)
getAccountAtIndex(uint256) should be declared external:
- ERC20DividendTracker.getAccountAtIndex(uint256) (#1902-1923)
process(uint256) should be declared external:
- ERC20DividendTracker.process(uint256) (#1950-2002)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1099-1125):
External calls:
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#1109-1112)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1115-1117)
Reentrancy in ERC20DividendToken.updateDividendTracker(address) (#1371-1394):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1386)
- newDividendTracker.excludeFromDividends(address(this)) (#1387)
- newDividendTracker.excludeFromDividends(owner()) (#1388)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1389)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1393)
Apply the check-effects-interactions pattern.
Additional information: link
ERC20DividendToken._transfer(address,address,uint256).iterations (#1670) is a local variable never initialized
ERC20DividendToken._transfer(address,address,uint256).lastProcessedIndex (#1672) is a local variable never initialized
ERC20DividendToken._transfer(address,address,uint256).claims (#1671) 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
ERC20DividendToken.claim() (#1573-1575) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1574)
ERC20DividendToken._transfer(address,address,uint256) (#1585-1684) ignores return value by dividendTracker.process(gas) (#1669-1682)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(address,string,string)._name (#1074) shadows:
- ERC20._name (#644) (state variable)
DividendPayingToken.constructor(address,string,string)._symbol (#1074) shadows:
- ERC20._symbol (#645) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1130) shadows:
- Ownable._owner (#239) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1137) shadows:
- Ownable._owner (#239) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1149) shadows:
- Ownable._owner (#239) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1163) shadows:
- Ownable._owner (#239) (state variable)
Rename the local variables that shadow another component.
Additional information: link
Variable 'ERC20DividendToken._transfer(address,address,uint256).iterations (#1670)' in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1674-1681)
Variable 'ERC20DividendToken._transfer(address,address,uint256).lastProcessedIndex (#1672)' in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1674-1681)
Variable 'ERC20DividendToken._transfer(address,address,uint256).claims (#1671)' in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1674-1681)
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 ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
State variables written after the call(s):
- buyBack(buyBackTokens) (#1638)
- _allowances[owner][spender] = amount (#878)
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
- swapAndSendDividends(sellTokens) (#1641)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#1765-1768)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- dividendTracker.distributeDividends(dividends) (#1771)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1641)
- _allowances[owner][spender] = amount (#878)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address,address) (#1324-1363):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1342-1343)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1345)
- uniswapV2Router = _uniswapV2Router (#1344)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address,address) (#1324-1363):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1342-1343)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1346)
- dividendTracker.excludeFromDividends(pair) (#1468)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1349)
- dividendTracker.excludeFromDividends(address(this)) (#1350)
- dividendTracker.excludeFromDividends(owner()) (#1351)
- dividendTracker.excludeFromDividends(address(0xdead)) (#1352)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1353)
State variables written after the call(s):
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1362)
- _balances[account] = _balances[account].add(amount) (#836)
- excludeFromFees(owner(),true) (#1355)
- _isExcludedFromFees[account] = excluded (#1413)
- excludeFromFees(marketingAddress,true) (#1356)
- _isExcludedFromFees[account] = excluded (#1413)
- excludeFromFees(address(this),true) (#1357)
- _isExcludedFromFees[account] = excluded (#1413)
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1362)
- _totalSupply = _totalSupply.add(amount) (#835)
Reentrancy in ERC20DividendTracker.processAccount(address,bool) (#2004-2018):
External calls:
- amount = _withdrawDividendOfUser(account) (#2009)
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#1109-1112)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#2012)
Reentrancy in ERC20DividendToken.swapAndSendDividends(uint256) (#1759-1775):
External calls:
- swapTokensForERC20(tokens) (#1760)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
State variables written after the call(s):
- triggerDividends = false (#1764)
Reentrancy in ERC20DividendToken.swapAndSendToFee(uint256) (#1686-1697):
External calls:
- swapTokensForERC20(tokens) (#1687)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
State variables written after the call(s):
- lastDividend = block.timestamp (#1693)
- triggerDividends = true (#1692)
Reentrancy in ERC20DividendToken.updateUniswapV2Router(address) (#1396-1406):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1403-1404)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1405)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ERC20DividendToken._setAutomatedMarketMakerPair(address,bool) (#1460-1472):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1468)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1471)
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#879)
- buyBack(buyBackTokens) (#1638)
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
- swapAndSendDividends(sellTokens) (#1641)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#1765-1768)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- dividendTracker.distributeDividends(dividends) (#1771)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#879)
- swapAndSendDividends(sellTokens) (#1641)
- SendDividends(tokens,dividends) (#1772)
- swapAndSendDividends(sellTokens) (#1641)
- Transfer(sender,recipient,amount) (#818)
- super._transfer(from,to,amount) (#1661)
- Transfer(sender,recipient,amount) (#818)
- super._transfer(from,address(this),fees) (#1658)
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1585-1684):
External calls:
- swapAndSendToFee(marketingTokens) (#1633)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- IERC20(rewardToken).transfer(marketingAddress,400 * (10 ** 18)) (#1695)
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1732-1738)
- swapAndSendDividends(sellTokens) (#1641)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#1765-1768)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- dividendTracker.distributeDividends(dividends) (#1771)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1663)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1664)
- dividendTracker.process(gas) (#1669-1682)
External calls sending eth:
- buyBack(buyBackTokens) (#1638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1715-1720)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1674-1681)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address,address) (#1324-1363):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1342-1343)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1346)
- dividendTracker.excludeFromDividends(pair) (#1468)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1471)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1346)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address,address) (#1324-1363):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1342-1343)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1346)
- dividendTracker.excludeFromDividends(pair) (#1468)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1349)
- dividendTracker.excludeFromDividends(address(this)) (#1350)
- dividendTracker.excludeFromDividends(owner()) (#1351)
- dividendTracker.excludeFromDividends(address(0xdead)) (#1352)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1353)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1415)
- excludeFromFees(owner(),true) (#1355)
- ExcludeFromFees(account,excluded) (#1415)
- excludeFromFees(address(this),true) (#1357)
- ExcludeFromFees(account,excluded) (#1415)
- excludeFromFees(marketingAddress,true) (#1356)
- Transfer(address(0),account,amount) (#837)
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1362)
Reentrancy in ERC20DividendTracker.processAccount(address,bool) (#2004-2018):
External calls:
- amount = _withdrawDividendOfUser(account) (#2009)
- success = IERC20(rewardToken).transfer(user,_withdrawableDividend) (#1109-1112)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#2013)
Reentrancy in ERC20DividendToken.processDividendTracker(uint256) (#1557-1571):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1558-1562)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1563-1570)
Reentrancy in ERC20DividendToken.swapAndSendDividends(uint256) (#1759-1775):
External calls:
- swapTokensForERC20(tokens) (#1760)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1750-1756)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#1765-1768)
- dividendTracker.distributeDividends(dividends) (#1771)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1772)
Reentrancy in ERC20DividendToken.updateDividendTracker(address) (#1371-1394):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1386)
- newDividendTracker.excludeFromDividends(address(this)) (#1387)
- newDividendTracker.excludeFromDividends(owner()) (#1388)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1389)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1391)
Apply the check-effects-interactions pattern.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.7.6']
- >=0.6.2 (#4)
- >=0.6.2 (#102)
- >=0.5.0 (#148)
- >=0.5.0 (#203)
- ^0.7.6 (#225)
Use one Solidity version.
Additional information: link
Context._msgData() (#232-235) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1182-1197) is never used and should be removed
ERC20._setupDecimals(uint8) (#889-891) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#538-541) is never used and should be removed
SafeMath.mod(uint256,uint256) (#500-503) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#558-561) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#372-376) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#408-411) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#418-421) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#393-401) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#383-386) is never used and should be removed
SafeMathInt.abs(int256) (#342-345) is never used and should be removed
SafeMathInt.div(int256,int256) (#313-319) is never used and should be removed
SafeMathInt.mul(int256,int256) (#301-308) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.2 (#4) allows old versions
Pragma version>=0.6.2 (#102) allows old versions
Pragma version>=0.5.0 (#148) allows old versions
Pragma version>=0.5.0 (#203) allows old versions
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
Function IUniswapV2Router01.WETH() (#8) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#165) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#166) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#183) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1130) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1137) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1149) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1163) is not in mixedCase
Constant DividendPayingToken.magnitude (#1045) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter ERC20DividendToken.updateDividendCooldown(uint256)._dividendCooldown (#1256) is not in mixedCase
Parameter ERC20DividendToken.updateBuyBackThreshold(uint256)._buyBackThreshold (#1268) is not in mixedCase
Parameter ERC20DividendTracker.getAccount(address)._account (#1853) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#233)" inContext (#227-236)
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 (#13) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#14)
Variable ERC20._totalSupply (#642) is too similar to ERC20DividendToken.constructor(string,string,uint256,address,address,address).totalSupply_ (#1324)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1103) is too similar to ERC20DividendTracker.getAccount(address).withdrawableDividends (#1860)
Variable DividendPayingToken.constructor(address,string,string)._rewardToken (#1074) is too similar to ERC20DividendTracker.constructor(address).rewardToken_ (#1802)
Variable SquidCash._marketingAddress (#2040) is too similar to ERC20DividendToken.constructor(string,string,uint256,address,address,address).marketingAddress_ (#1324)
Variable SquidCash._rewardToken (#2038) is too similar to ERC20DividendToken.constructor(string,string,uint256,address,address,address).rewardToken_ (#1324)
Prevent variables from having similar names.
Additional information: link
ERC20DividendTracker.constructor(address) (#1802-1805) uses literals with too many digits:
- minimumTokenBalanceForDividends = 1000000 * (10 ** 18) (#1804)
ERC20DividendToken.updateGasForProcessing(uint256) (#1474-1485) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,ERC20DividendToken: gasForProcessing must be between 200,000 and 500,000) (#1475-1478)
SquidCash.slitherConstructorVariables() (#2021-2046) uses literals with too many digits:
- gasForProcessing = 300000 (#1273)
SquidCash.slitherConstructorVariables() (#2021-2046) uses literals with too many digits:
- _tokenSupply = 456000000000000 (#2023)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#296) is never used in SafeMathInt (#294-352)
Remove unused state variables.
Additional information: link
SquidCash._marketingAddress (#2040) should be constant
SquidCash._rewardToken (#2038) should be constant
SquidCash._routerAddress (#2031) should be constant
SquidCash._tokenSupply (#2023) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Contract has 9% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Average 30d PancakeSwap volume is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Token has no active CoinGecko listing / rank
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
Young tokens have high risks of price dump / death
Last post in Twitter was more than 30 days ago
Unable to find Youtube account
Unable to find Discord account