Reentrancy in SIFUINU._transfer(address,address,uint256) (#825-867):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#844)
- swapAndLiquify() (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- swapAndLiquify() (#855)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1051)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#967)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#976)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#987)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#997)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#968)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#978)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#988)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _rTotal = _rTotal.sub(rFee) (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1052)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#986)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#996)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#977)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#998)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- charityTokensCollected += amount.mul(_charityFee).div(100) (#961)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- devTokensCollected += amount.mul(_devFee).div(100) (#959)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- liquidityTokensCollected += amount.mul(_liquidityFee).div(100) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- marketingTokensCollected += amount.mul(_marketingFee).div(100) (#960)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- swapTokensForEth(totalTokens) (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- transferToAddressETH(marketingWalletAddress,ethForMarketing) (#890)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(charityWalletAddress,ethForCharity) (#891)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(devWalletAddress,ethForDev) (#892)
- recipient.transfer(amount) (#1168)
State variables written after the call(s):
- liquidityTokensCollected = 0 (#894)
Apply the check-effects-interactions pattern.
Additional information: link
SIFUINU.sendSameValue(address,address[],uint256) (#1196-1210) ignores return value by token.transferFrom(from,_to[i],_value) (#1206)
SIFUINU.sendTokenToContract(uint256,address) (#1211-1217) ignores return value by mytoken.transfer(address(this),amount) (#1215)
SIFUINU.sendSameValueContract(address,address[],uint256) (#1219-1232) ignores return value by token.transferFrom(address(this),_to[i],_value) (#1228)
SIFUINU.sendDifferentValue(address,address[],uint256[]) (#1240-1257) ignores return value by token.transferFrom(msg.sender,_to[i],_value[i]) (#1252)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SIFUINU.claimInvestment() (#559-572) uses a dangerous strict equality:
- require(bool,string)(id > 0 && status == false,You have already claim this investment.) (#567)
SIFUINU.investment(uint256) (#575-600) uses a dangerous strict equality:
- require(bool,string)(id < 1 || status == true,You can't invest twice) (#586)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
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)
SIFUINU.manage_blacklist(address[],bool).i (#765) is a local variable never initialized
SIFUINU.sendDifferentValue(address,address[],uint256[]).sendAmount (#1245) 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
SIFUINU.addLiquidity(uint256,uint256) (#922-935) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
SIFUINU.sendSameValue(address,address[],uint256) (#1196-1210) ignores return value by token.approve(msg.sender,sendAmount) (#1203)
SIFUINU.sendSameValueContract(address,address[],uint256) (#1219-1232) ignores return value by token.approve(address(this),sendAmount) (#1225)
SIFUINU.sendDifferentValue(address,address[],uint256[]) (#1240-1257) ignores return value by token.approve(address(this),sendAmount) (#1249)
SIFUINU.sendDifferentValue(address,address[],uint256[]) (#1240-1257) ignores return value by sendAmount.add(_value[i]) (#1253)
SIFUINU.ApproveERC20Token1(address,uint256) (#1258-1264) ignores return value by token.approve(address(this),_value) (#1261)
Ensure that all the return values of the function calls are used.
Additional information: link
SIFUINU.allowance(address,address).owner (#723) shadows:
- Ownable.owner() (#194-196) (function)
SIFUINU._approve(address,address,uint256).owner (#817) shadows:
- Ownable.owner() (#194-196) (function)
Rename the local variables that shadow another component.
Additional information: link
SIFUINU.setAllFeePercent(uint256,uint256,uint256,uint256,uint256) (#1104-1118) should emit an event for:
- _taxFee = taxFee (#1107)
- _previousTaxFee = _taxFee (#1108)
- _liquidityFee = liquidityFee (#1109)
- _previousLiquidityFee = _liquidityFee (#1110)
- _devFee = devFee (#1111)
- _previousDevFee = _devFee (#1112)
- _marketingFee = marketingFee (#1113)
- _previousMarketingFee = _marketingFee (#1114)
- _charityFee = charityFee (#1115)
- _previousCharityFee = _charityFee (#1116)
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1117)
SIFUINU.setSaleFeePercent(uint256,uint256,uint256,uint256,uint256) (#1120-1128) should emit an event for:
- _saleTaxFee = taxFee (#1123)
- _saleLiquidityFee = liquidityFee (#1124)
- _saleDevFee = devFee (#1125)
- _saleMarketingFee = marketingFee (#1126)
- _saleCharityFee = charityFee (#1127)
SIFUINU.setSaleLiquidityFeePercent(uint256) (#1132-1134) should emit an event for:
- _saleLiquidityFee = liquidityFee (#1133)
SIFUINU.setMaxTxAmount(uint256) (#1136-1138) should emit an event for:
- _maxTxAmount = maxTxAmount (#1137)
SIFUINU.setNumTokensSellToAddToLiquidity(uint256) (#1141-1143) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1142)
Emit an event for critical parameter changes.
Additional information: link
SIFUINU.setMarketingWalletAddress(address)._marketingWallet (#1145) lacks a zero-check on :
- marketingWalletAddress = address(_marketingWallet) (#1146)
SIFUINU.setCharityWalletAddress(address)._charityWallet (#1149) lacks a zero-check on :
- charityWalletAddress = address(_charityWallet) (#1150)
SIFUINU.setDevWalletAddress(address)._devWallet (#1153) lacks a zero-check on :
- devWalletAddress = address(_devWallet) (#1154)
SIFUINU.setpinkAntiBotAddress(address)._AntiBotAddress (#1157) lacks a zero-check on :
- pinkAntiBot_ = _AntiBotAddress (#1158)
Check that the address is not zero.
Additional information: link
SIFUINU.sendSameValue(address,address[],uint256) (#1196-1210) has external calls inside a loop: token.transferFrom(from,_to[i],_value) (#1206)
SIFUINU.sendSameValueContract(address,address[],uint256) (#1219-1232) has external calls inside a loop: token.transferFrom(address(this),_to[i],_value) (#1228)
SIFUINU.sendDifferentValue(address,address[],uint256[]) (#1240-1257) has external calls inside a loop: token.transferFrom(msg.sender,_to[i],_value[i]) (#1252)
SIFUINU.ethSendSameValue(address[],uint256) (#1330-1344) has external calls inside a loop: require(bool,string)(address(_to[i]).send(_value),failed to send) (#1340)
SIFUINU.ethSendDifferentValue(address[],uint256[]) (#1346-1363) has external calls inside a loop: require(bool)(address(_to[i]).send(_value[i])) (#1358)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SIFUINU._transfer(address,address,uint256) (#825-867):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#844)
- swapAndLiquify() (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- swapAndLiquify() (#855)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- swapAndLiquify() (#855)
- _allowances[owner][spender] = amount (#821)
- setSaleFee() (#858)
- _charityFee = _saleCharityFee (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _charityFee = _previousCharityFee (#1078)
- _charityFee = 0 (#1069)
- setSaleFee() (#858)
- _devFee = _saleDevFee (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _devFee = 0 (#1067)
- _devFee = _previousDevFee (#1076)
- setSaleFee() (#858)
- _liquidityFee = _saleLiquidityFee (#1084)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _liquidityFee = 0 (#1066)
- _liquidityFee = _previousLiquidityFee (#1075)
- setSaleFee() (#858)
- _marketingFee = _saleMarketingFee (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _marketingFee = _previousMarketingFee (#1077)
- _marketingFee = 0 (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1007)
- setSaleFee() (#858)
- _taxFee = _saleTaxFee (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _taxFee = 0 (#1065)
- _taxFee = _previousTaxFee (#1074)
- setSaleFee() (#858)
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1079)
- totalSwapableFee = 0 (#1070)
Reentrancy in SIFUINU.constructor() (#675-695):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#682-683)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#685)
- _isExcludedFromFee[address(this)] = true (#686)
- pinkAntiBot = IPinkAntiBot(pinkAntiBot_) (#689)
- uniswapV2Router = _uniswapV2Router (#684)
Reentrancy in SIFUINU.constructor() (#675-695):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#682-683)
- pinkAntiBot.setTokenOwner(msg.sender) (#691)
State variables written after the call(s):
- antiBotEnabled = true (#692)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- _allowances[owner][spender] = amount (#821)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- swapTokensForEth(totalTokens) (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- swapTokensForEth(totalTokens) (#881)
- _allowances[owner][spender] = amount (#821)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- swapTokensForEth(totalTokens) (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- transferToAddressETH(marketingWalletAddress,ethForMarketing) (#890)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(charityWalletAddress,ethForCharity) (#891)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(devWalletAddress,ethForDev) (#892)
- recipient.transfer(amount) (#1168)
State variables written after the call(s):
- charityTokensCollected = 0 (#897)
- devTokensCollected = 0 (#895)
- marketingTokensCollected = 0 (#896)
Reentrancy in SIFUINU.transferFrom(address,address,uint256) (#732-736):
External calls:
- _transfer(sender,recipient,amount) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#844)
External calls sending eth:
- _transfer(sender,recipient,amount) (#733)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#734)
- _allowances[owner][spender] = amount (#821)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SIFUINU.ApproveERC20Token1(address,uint256) (#1258-1264):
External calls:
- token.approve(address(this),_value) (#1261)
Event emitted after the call(s):
- LogTokenApproval(_tokenAddress,_value) (#1263)
Reentrancy in SIFUINU._transfer(address,address,uint256) (#825-867):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#844)
- swapAndLiquify() (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- swapAndLiquify() (#855)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- swapAndLiquify() (#855)
- SwapAndLiquify(halfLiquidityTokens,newBalance,halfLiquidityTokens) (#877)
- swapAndLiquify() (#855)
- SwapTokensForETH(tokenAmount,path) (#918)
- swapAndLiquify() (#855)
- Transfer(sender,recipient,tTransferAmount) (#971)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#981)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#991)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#866)
Reentrancy in SIFUINU.constructor() (#675-695):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#682-683)
- pinkAntiBot.setTokenOwner(msg.sender) (#691)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#694)
Reentrancy in SIFUINU.sendDifferentValue(address,address[],uint256[]) (#1240-1257):
External calls:
- token.approve(address(this),sendAmount) (#1249)
Event emitted after the call(s):
- LogTokenBulkSent(_tokenAddress,from,sendAmount) (#1255)
Reentrancy in SIFUINU.sendSameValue(address,address[],uint256) (#1196-1210):
External calls:
- token.approve(msg.sender,sendAmount) (#1203)
Event emitted after the call(s):
- LogTokenApproval(from,sendAmount) (#1204)
- LogTokenBulkSent(_tokenAddress,from,sendAmount) (#1208)
Reentrancy in SIFUINU.sendSameValueContract(address,address[],uint256) (#1219-1232):
External calls:
- token.approve(address(this),sendAmount) (#1225)
Event emitted after the call(s):
- LogTokenApproval(address(this),sendAmount) (#1226)
- LogTokenBulkSent(_tokenAddress,address(this),sendAmount) (#1230)
Reentrancy in SIFUINU.sendTokenToContract(uint256,address) (#1211-1217):
External calls:
- mytoken.transfer(address(this),amount) (#1215)
Event emitted after the call(s):
- LogTokenBulkSent(msg.sender,address(this),amount) (#1216)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- SwapAndLiquify(halfLiquidityTokens,newBalance,halfLiquidityTokens) (#877)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- swapTokensForEth(halfLiquidityTokens) (#873)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- swapTokensForEth(totalTokens) (#881)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- swapTokensForEth(totalTokens) (#881)
- SwapTokensForETH(tokenAmount,path) (#918)
- swapTokensForEth(totalTokens) (#881)
Reentrancy in SIFUINU.swapETHForTokens(uint256) (#1180-1192):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#1187-1190)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#1191)
Reentrancy in SIFUINU.swapTokensForEth(uint256) (#902-919):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#918)
Reentrancy in SIFUINU.transferFrom(address,address,uint256) (#732-736):
External calls:
- _transfer(sender,recipient,amount) (#733)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#910-916)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#844)
External calls sending eth:
- _transfer(sender,recipient,amount) (#733)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#734)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#229-234) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#231)
LockToken.openTrade() (#466-473) uses timestamp for comparisons
Dangerous comparisons:
- launchTime < 1 (#469)
SIFUINU.claimInvestment() (#559-572) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(id > 0 && status == false,You have already claim this investment.) (#567)
- require(bool,string)(ctime >= releaseDate,you can't claim investment now, until investment period end.) (#568)
SIFUINU.investment(uint256) (#575-600) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(amount <= balanceOf(investor),Your balance is too low to the amount you want to invest, pls buy more token!) (#585)
- require(bool,string)(id < 1 || status == true,You can't invest twice) (#586)
SIFUINU.tokenFromReflection(uint256) (#788-792) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(rAmount <= _rTotal,Amount must be less than total reflections) (#789)
SIFUINU._transfer(address,address,uint256) (#825-867) uses timestamp for comparisons
Dangerous comparisons:
- overMinimumTokenBalance = contractTokenBalance >= minimumTokensBeforeSwap (#848)
SIFUINU._getCurrentSupply() (#1036-1046) uses timestamp for comparisons
Dangerous comparisons:
- _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply (#1040)
- rSupply < _rTotal.div(_tTotal) (#1044)
SIFUINU.multiTransfer(address[],uint256[]) (#1271-1291) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(balanceOf(from) >= SCCC,Not enough tokens in wallet) (#1282)
SIFUINU.multiTransferFixed(address[],uint256) (#1293-1308) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(balanceOf(from) >= SCCC,Not enough tokens in wallet) (#1299)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#124-133) uses assembly
- INLINE ASM (#131)
Address._functionCallWithValue(address,bytes,uint256,string) (#161-178) uses assembly
- INLINE ASM (#170-173)
Do not use evm assembly.
Additional information: link
SIFUINU.claimInvestment() (#559-572) compares to a boolean constant:
-require(bool,string)(id > 0 && status == false,You have already claim this investment.) (#567)
SIFUINU.investment(uint256) (#575-600) compares to a boolean constant:
-require(bool,string)(id < 1 || status == true,You can't invest twice) (#586)
Remove the equality to the boolean constant.
Additional information: link
SIFUINU.includeInReward(address) (#804-815) has costly operations inside a loop:
- _excluded.pop() (#811)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- _taxFee = 0 (#1065)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- _liquidityFee = 0 (#1066)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- _devFee = 0 (#1067)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- _marketingFee = 0 (#1068)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- _charityFee = 0 (#1069)
SIFUINU.removeAllFee() (#1063-1071) has costly operations inside a loop:
- totalSwapableFee = 0 (#1070)
SIFUINU._reflectFee(uint256,uint256) (#1005-1008) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#1006)
SIFUINU._reflectFee(uint256,uint256) (#1005-1008) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#1007)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#1074)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#1075)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- _devFee = _previousDevFee (#1076)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- _marketingFee = _previousMarketingFee (#1077)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- _charityFee = _previousCharityFee (#1078)
SIFUINU.restoreAllFee() (#1073-1080) has costly operations inside a loop:
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1079)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#161-178) is never used and should be removed
Address.functionCall(address,bytes) (#144-146) is never used and should be removed
Address.functionCall(address,bytes,string) (#148-150) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#152-154) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#156-159) is never used and should be removed
Address.isContract(address) (#124-133) is never used and should be removed
Address.sendValue(address,uint256) (#135-141) is never used and should be removed
Context._msgData() (#35-38) is never used and should be removed
SIFUINU.swapETHForTokens(uint256) (#1180-1192) is never used and should be removed
SafeMath.mod(uint256,uint256) (#112-114) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#116-119) is never used and should be removed
Remove unused functions.
Additional information: link
SIFUINU._rTotal (#513) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SIFUINU._previousTaxFee (#610) is set pre-construction with a non-constant function or state variable:
- _taxFee
SIFUINU._previousLiquidityFee (#613) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SIFUINU._previousDevFee (#616) is set pre-construction with a non-constant function or state variable:
- _devFee
SIFUINU._previousMarketingFee (#619) is set pre-construction with a non-constant function or state variable:
- _marketingFee
SIFUINU._previousCharityFee (#622) is set pre-construction with a non-constant function or state variable:
- _charityFee
SIFUINU.totalSwapableFee (#624) is set pre-construction with a non-constant function or state variable:
- _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee)
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
solc-0.8.12 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) (#135-141):
- (success) = recipient.call{value: amount}() (#139)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#161-178):
- (success,returndata) = target.call{value: weiValue}(data) (#164)
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() (#273) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#274) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#290) is not in mixedCase
Function IUniswapV2Router01.WETH() (#311) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#479) is not in mixedCase
Event SIFUINUinvestmentReport(address,uint256,uint256,uint256,uint256,uint256) (#503) is not in CapWords
Event SIFUINUinventReleased(address,address,uint256,uint256) (#504) is not in CapWords
Parameter SIFUINU.setInvestmentPlan(uint256,uint256)._investmentPlan (#533) is not in mixedCase
Parameter SIFUINU.setInvestmentPlan(uint256,uint256)._interestRate (#533) is not in mixedCase
Parameter SIFUINU.calculateProfit(uint256,uint256)._interestRate (#555) is not in mixedCase
Function SIFUINU.enable_blacklist(bool) (#760-762) is not in mixedCase
Parameter SIFUINU.enable_blacklist(bool)._status (#760) is not in mixedCase
Function SIFUINU.manage_blacklist(address[],bool) (#764-768) is not in mixedCase
Parameter SIFUINU.setEnableAntiBot(bool)._enable (#772) is not in mixedCase
Parameter SIFUINU.calculateTaxFee(uint256)._amount (#1055) is not in mixedCase
Parameter SIFUINU.calculateLiquidityFee(uint256)._amount (#1059) is not in mixedCase
Parameter SIFUINU.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#1141) is not in mixedCase
Parameter SIFUINU.setMarketingWalletAddress(address)._marketingWallet (#1145) is not in mixedCase
Parameter SIFUINU.setCharityWalletAddress(address)._charityWallet (#1149) is not in mixedCase
Parameter SIFUINU.setDevWalletAddress(address)._devWallet (#1153) is not in mixedCase
Parameter SIFUINU.setpinkAntiBotAddress(address)._AntiBotAddress (#1157) is not in mixedCase
Parameter SIFUINU.setSwapAndLiquifyEnabled(bool)._enabled (#1161) is not in mixedCase
Parameter SIFUINU.sendSameValue(address,address[],uint256)._tokenAddress (#1196) is not in mixedCase
Parameter SIFUINU.sendSameValue(address,address[],uint256)._to (#1196) is not in mixedCase
Parameter SIFUINU.sendSameValue(address,address[],uint256)._value (#1196) is not in mixedCase
Parameter SIFUINU.sendSameValueContract(address,address[],uint256)._tokenAddress (#1219) is not in mixedCase
Parameter SIFUINU.sendSameValueContract(address,address[],uint256)._to (#1219) is not in mixedCase
Parameter SIFUINU.sendSameValueContract(address,address[],uint256)._value (#1219) is not in mixedCase
Parameter SIFUINU.sendDifferentValue(address,address[],uint256[])._tokenAddress (#1240) is not in mixedCase
Parameter SIFUINU.sendDifferentValue(address,address[],uint256[])._to (#1240) is not in mixedCase
Parameter SIFUINU.sendDifferentValue(address,address[],uint256[])._value (#1240) is not in mixedCase
Function SIFUINU.ApproveERC20Token1(address,uint256) (#1258-1264) is not in mixedCase
Parameter SIFUINU.ApproveERC20Token1(address,uint256)._tokenAddress (#1258) is not in mixedCase
Parameter SIFUINU.ApproveERC20Token1(address,uint256)._value (#1258) is not in mixedCase
Parameter SIFUINU.ethSendSameValue(address[],uint256)._to (#1330) is not in mixedCase
Parameter SIFUINU.ethSendSameValue(address[],uint256)._value (#1330) is not in mixedCase
Parameter SIFUINU.ethSendDifferentValue(address[],uint256[])._to (#1346) is not in mixedCase
Parameter SIFUINU.ethSendDifferentValue(address[],uint256[])._value (#1346) is not in mixedCase
Variable SIFUINU._investmentCount (#516) is not in mixedCase
Variable SIFUINU._taxFee (#609) is not in mixedCase
Variable SIFUINU._liquidityFee (#612) is not in mixedCase
Variable SIFUINU._devFee (#615) is not in mixedCase
Variable SIFUINU._marketingFee (#618) is not in mixedCase
Variable SIFUINU._charityFee (#621) is not in mixedCase
Variable SIFUINU._saleTaxFee (#626) is not in mixedCase
Variable SIFUINU._saleLiquidityFee (#627) is not in mixedCase
Variable SIFUINU._saleDevFee (#628) is not in mixedCase
Variable SIFUINU._saleMarketingFee (#629) is not in mixedCase
Variable SIFUINU._saleCharityFee (#630) is not in mixedCase
Variable SIFUINU._maxTxAmount (#646) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#36)" inContext (#30-39)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in SIFUINU._transfer(address,address,uint256) (#825-867):
External calls:
- swapAndLiquify() (#855)
- recipient.transfer(amount) (#1168)
External calls sending eth:
- swapAndLiquify() (#855)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- setSaleFee() (#858)
- _charityFee = _saleCharityFee (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _charityFee = _previousCharityFee (#1078)
- _charityFee = 0 (#1069)
- setSaleFee() (#858)
- _devFee = _saleDevFee (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _devFee = 0 (#1067)
- _devFee = _previousDevFee (#1076)
- setSaleFee() (#858)
- _liquidityFee = _saleLiquidityFee (#1084)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _liquidityFee = 0 (#1066)
- _liquidityFee = _previousLiquidityFee (#1075)
- setSaleFee() (#858)
- _marketingFee = _saleMarketingFee (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _marketingFee = _previousMarketingFee (#1077)
- _marketingFee = 0 (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1051)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#967)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#976)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#987)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#997)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#968)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#978)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#988)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _rTotal = _rTotal.sub(rFee) (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1052)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#986)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#996)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#977)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#998)
- setSaleFee() (#858)
- _taxFee = _saleTaxFee (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- _taxFee = 0 (#1065)
- _taxFee = _previousTaxFee (#1074)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- charityTokensCollected += amount.mul(_charityFee).div(100) (#961)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- devTokensCollected += amount.mul(_devFee).div(100) (#959)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- liquidityTokensCollected += amount.mul(_liquidityFee).div(100) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- marketingTokensCollected += amount.mul(_marketingFee).div(100) (#960)
- setSaleFee() (#858)
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- totalSwapableFee = _liquidityFee.add(_devFee).add(_marketingFee).add(_charityFee) (#1079)
- totalSwapableFee = 0 (#1070)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#971)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#991)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#981)
- _tokenTransfer(from,to,amount,takeFee) (#866)
- Transfer(sender,recipient,tTransferAmount) (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#866)
Reentrancy in SIFUINU.swapAndLiquify() (#869-899):
External calls:
- transferToAddressETH(marketingWalletAddress,ethForMarketing) (#890)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(charityWalletAddress,ethForCharity) (#891)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(devWalletAddress,ethForDev) (#892)
- recipient.transfer(amount) (#1168)
External calls sending eth:
- addLiquidity(halfLiquidityTokens,newBalance) (#876)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
- transferToAddressETH(marketingWalletAddress,ethForMarketing) (#890)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(charityWalletAddress,ethForCharity) (#891)
- recipient.transfer(amount) (#1168)
- transferToAddressETH(devWalletAddress,ethForDev) (#892)
- recipient.transfer(amount) (#1168)
State variables written after the call(s):
- charityTokensCollected = 0 (#897)
- devTokensCollected = 0 (#895)
- liquidityTokensCollected = 0 (#894)
- marketingTokensCollected = 0 (#896)
Reentrancy in SIFUINU.transferFrom(address,address,uint256) (#732-736):
External calls:
- _transfer(sender,recipient,amount) (#733)
- recipient.transfer(amount) (#1168)
External calls sending eth:
- _transfer(sender,recipient,amount) (#733)
- recipient.transfer(amount) (#1168)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#927-934)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#734)
- _allowances[owner][spender] = amount (#821)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#822)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#734)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#316) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#317)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1027) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._getValues(uint256).tTransferAmount (#1011)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._transferStandard(address,address,uint256).tTransferAmount (#966)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Variable SIFUINU.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SIFUINU._transferFromExcluded(address,address,uint256).tTransferAmount (#985)
Variable SIFUINU._transferToExcluded(address,address,uint256).rTransferAmount (#975) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._getValues(uint256).rTransferAmount (#1012) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._transferBothExcluded(address,address,uint256).rTransferAmount (#995) is too similar to SIFUINU._transferBothExcluded(address,address,uint256).tTransferAmount (#995)
Variable SIFUINU._transferFromExcluded(address,address,uint256).rTransferAmount (#985) is too similar to SIFUINU._getTValues(uint256).tTransferAmount (#1019)
Variable SIFUINU._transferStandard(address,address,uint256).rTransferAmount (#966) is too similar to SIFUINU._transferToExcluded(address,address,uint256).tTransferAmount (#975)
Prevent variables from having similar names.
Additional information: link
SIFUINU.slitherConstructorVariables() (#487-1367) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#493)
SIFUINU.slitherConstructorVariables() (#487-1367) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#1177)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SIFUINU._decimals (#606) should be constant
SIFUINU._name (#604) should be constant
SIFUINU._symbol (#605) should be constant
SIFUINU._tTotal (#512) should be constant
SIFUINU.deadAddress (#1177) should be constant
SIFUINU.deadWallet (#493) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#203-206)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#208-212)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#214-216)
getTime() should be declared external:
- Ownable.getTime() (#218-220)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#222-227)
unlock() should be declared external:
- Ownable.unlock() (#229-234)
setInvestmentPlan(uint256,uint256) should be declared external:
- SIFUINU.setInvestmentPlan(uint256,uint256) (#533-536)
claimInvestment() should be declared external:
- SIFUINU.claimInvestment() (#559-572)
investment(uint256) should be declared external:
- SIFUINU.investment(uint256) (#575-600)
name() should be declared external:
- SIFUINU.name() (#697-699)
symbol() should be declared external:
- SIFUINU.symbol() (#701-703)
decimals() should be declared external:
- SIFUINU.decimals() (#705-707)
totalSupply() should be declared external:
- SIFUINU.totalSupply() (#709-711)
transfer(address,uint256) should be declared external:
- SIFUINU.transfer(address,uint256) (#718-721)
allowance(address,address) should be declared external:
- SIFUINU.allowance(address,address) (#723-725)
approve(address,uint256) should be declared external:
- SIFUINU.approve(address,uint256) (#727-730)
transferFrom(address,address,uint256) should be declared external:
- SIFUINU.transferFrom(address,address,uint256) (#732-736)
increaseAllowance(address,uint256) should be declared external:
- SIFUINU.increaseAllowance(address,uint256) (#738-741)
decreaseAllowance(address,uint256) should be declared external:
- SIFUINU.decreaseAllowance(address,uint256) (#743-746)
isExcludedFromReward(address) should be declared external:
- SIFUINU.isExcludedFromReward(address) (#748-750)
totalFees() should be declared external:
- SIFUINU.totalFees() (#752-754)
minimumTokensBeforeSwapAmount() should be declared external:
- SIFUINU.minimumTokensBeforeSwapAmount() (#756-758)
enable_blacklist(bool) should be declared external:
- SIFUINU.enable_blacklist(bool) (#760-762)
manage_blacklist(address[],bool) should be declared external:
- SIFUINU.manage_blacklist(address[],bool) (#764-768)
reflectionFromToken(uint256,bool) should be declared external:
- SIFUINU.reflectionFromToken(uint256,bool) (#777-786)
excludeFromReward(address) should be declared external:
- SIFUINU.excludeFromReward(address) (#794-802)
isExcludedFromFee(address) should be declared external:
- SIFUINU.isExcludedFromFee(address) (#1091-1093)
excludeFromFee(address) should be declared external:
- SIFUINU.excludeFromFee(address) (#1096-1098)
includeInFee(address) should be declared external:
- SIFUINU.includeInFee(address) (#1100-1102)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SIFUINU.setSwapAndLiquifyEnabled(bool) (#1161-1164)
read(address[],uint256) should be declared external:
- SIFUINU.read(address[],uint256) (#1234-1239)
recoverTokenFromContract() should be declared external:
- SIFUINU.recoverTokenFromContract() (#1310-1318)
manualBurn(uint256) should be declared external:
- SIFUINU.manualBurn(uint256) (#1320-1327)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Contract has 10% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts