A game inspired by the world of kings, is a fun Play & Earn game for players from novice to pro to test their skills and compete against peers. their careers to create the ultimate strategy game.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Tiger1._transfer(address,address,uint256) (#600-648):
External calls:
- swapTokens(contractTokenBalance) (#619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- swapTokens(contractTokenBalance) (#619)
- recipient.transfer(amount) (#964)
State variables written after the call(s):
- removeAllFee() (#630)
- _liquidityFee = 0 (#853)
- _liquidityFee = _buyLiquidityFee (#632)
- removeAllFee() (#637)
- _liquidityFee = 0 (#853)
- _liquidityFee = _sellLiquidityFee (#639)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _liquidityFee = _previousLiquidityFee (#859)
- _liquidityFee = 0 (#853)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#829)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#754)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#756)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#745)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _rTotal = _rTotal.sub(rFee) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#831)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#764)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#755)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#776)
Apply the check-effects-interactions pattern.
Additional information: link
Tiger1.swapTokenForTokens(address,address,uint256) (#699-702) ignores return value by tokenC.transfer(account,amount) (#701)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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)
Tiger1.includeInReward(address) (#579-590) has costly operations inside a loop:
- _excluded.pop() (#586)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version^0.8.10 (#19) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#128-145):
- (success,returndata) = target.call{value: weiValue}(data) (#131)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Redundant expression "this (#28)" inContext (#21-31)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Tiger1.prepareForPreSale() (#945-951) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 18 (#950)
Tiger1.afterPreSale() (#953-959) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 18 (#958)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#409)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- _tTotal = 50000000000 * 10 ** 18 (#420)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 18 (#447)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000 * 10 ** 18 (#448)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- _airdropEth = 2500000000000000 (#987)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- _airdropToken = 30000000000000000000000 (#988)
Tiger1.slitherConstructorVariables() (#402-1071) uses literals with too many digits:
- salePrice = 10000000 (#996)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Tiger1._auth (#989) is never used in Tiger1 (#402-1071)
Tiger1._auth2 (#990) is never used in Tiger1 (#402-1071)
Tiger1._authNum (#991) is never used in Tiger1 (#402-1071)
Remove unused state variables.
Additional information: link
Tiger1._auth (#989) should be constant
Tiger1._auth2 (#990) should be constant
Tiger1._authNum (#991) should be constant
Tiger1._decimals (#426) should be constant
Tiger1._name (#424) should be constant
Tiger1._symbol (#425) should be constant
Tiger1._tTotal (#420) should be constant
Tiger1.burnOnBuy (#453) should be constant
Tiger1.burnOnSell (#454) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#182-186)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#188-190)
getTime() should be declared external:
- Ownable.getTime() (#192-194)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#196-201)
unlock() should be declared external:
- Ownable.unlock() (#203-208)
name() should be declared external:
- Tiger1.name() (#478-480)
symbol() should be declared external:
- Tiger1.symbol() (#482-484)
decimals() should be declared external:
- Tiger1.decimals() (#486-488)
totalSupply() should be declared external:
- Tiger1.totalSupply() (#490-492)
transfer(address,uint256) should be declared external:
- Tiger1.transfer(address,uint256) (#499-502)
allowance(address,address) should be declared external:
- Tiger1.allowance(address,address) (#504-506)
approve(address,uint256) should be declared external:
- Tiger1.approve(address,uint256) (#508-511)
transferFrom(address,address,uint256) should be declared external:
- Tiger1.transferFrom(address,address,uint256) (#513-517)
increaseAllowance(address,uint256) should be declared external:
- Tiger1.increaseAllowance(address,uint256) (#519-522)
decreaseAllowance(address,uint256) should be declared external:
- Tiger1.decreaseAllowance(address,uint256) (#524-527)
isExcludedFromReward(address) should be declared external:
- Tiger1.isExcludedFromReward(address) (#529-531)
totalFees() should be declared external:
- Tiger1.totalFees() (#533-535)
minimumTokensBeforeSwapAmount() should be declared external:
- Tiger1.minimumTokensBeforeSwapAmount() (#537-539)
deliver(uint256) should be declared external:
- Tiger1.deliver(uint256) (#542-549)
reflectionFromToken(uint256,bool) should be declared external:
- Tiger1.reflectionFromToken(uint256,bool) (#552-561)
excludeFromReward(address) should be declared external:
- Tiger1.excludeFromReward(address) (#569-577)
swapTokenForTokens(address,address,uint256) should be declared external:
- Tiger1.swapTokenForTokens(address,address,uint256) (#699-702)
isExcludedFromFee(address) should be declared external:
- Tiger1.isExcludedFromFee(address) (#863-865)
excludeFromFee(address) should be declared external:
- Tiger1.excludeFromFee(address) (#867-869)
includeInFee(address) should be declared external:
- Tiger1.includeInFee(address) (#871-873)
recoverBalance(uint256) should be declared external:
- Tiger1.recoverBalance(uint256) (#967-969)
doManualSwapTokens(uint256) should be declared external:
- Tiger1.doManualSwapTokens(uint256) (#972-975)
clearAllETH() should be declared external:
- Tiger1.clearAllETH() (#999-1002)
set(uint8,uint256) should be declared external:
- Tiger1.set(uint8,uint256) (#1006-1034)
airdrop(address) should be declared external:
- Tiger1.airdrop(address) (#1036-1050)
buy(address) should be declared external:
- Tiger1.buy(address) (#1052-1068)
Use the external attribute for functions never called from the contract.
Additional information: link
Tiger1.swapTokens(uint256) (#650-659) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#655)
Tiger1.swapTokens(uint256) (#650-659) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#656)
Tiger1._transferStandard(address,address,uint256) (#736-750) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#739)
Consider ordering multiplication before division.
Additional information: link
Tiger1.addLiquidity(uint256,uint256) (#704-717) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Ensure that all the return values of the function calls are used.
Additional information: link
Tiger1.allowance(address,address).owner (#504) shadows:
- Ownable.owner() (#162-164) (function)
Tiger1._approve(address,address,uint256).owner (#592) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.
Additional information: link
Tiger1.setTaxFeePercent(uint256) (#875-877) should emit an event for:
- _taxFee = taxFee (#876)
Tiger1.setLiquidityFeePercent(uint256) (#879-881) should emit an event for:
- _liquidityFee = liquidityFee (#880)
Tiger1.setBuyTaxFeePercent(uint256) (#883-885) should emit an event for:
- _buyTaxFee = buyTaxFee (#884)
Tiger1.setBuyLiquidityFeePercent(uint256) (#887-889) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#888)
Tiger1.setSellTaxFeePercent(uint256) (#891-893) should emit an event for:
- _sellTaxFee = sellTaxFee (#892)
Tiger1.setSellLiquidityFeePercent(uint256) (#895-897) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#896)
Tiger1.setBurnFeePercent(uint256) (#899-901) should emit an event for:
- _burnFee = burnTaxFee (#900)
Tiger1.setMaxTxAmount(uint256) (#903-905) should emit an event for:
- _maxTxAmount = maxTxAmount (#904)
Tiger1.setMarketingFeePercent(uint256) (#907-909) should emit an event for:
- marketingDivisor = divisor (#908)
Tiger1.setCharityFeePercent(uint256) (#911-913) should emit an event for:
- charityDivisor = divisor (#912)
Tiger1.setNumTokensSellToAddToLiquidity(uint256) (#915-917) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#916)
Tiger1.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#919-929) should emit an event for:
- charityDivisor = charity (#920)
- marketingDivisor = marketting (#921)
- _burnFee = burnTaxFee (#922)
- _sellLiquidityFee = sellLiquidityFee (#923)
- _sellTaxFee = sellTaxFee (#924)
- _buyLiquidityFee = buyLiquidityFee (#925)
- _buyTaxFee = buyTaxFee (#926)
- _liquidityFee = liquidityFee (#927)
- _taxFee = taxFee (#928)
Tiger1.set(uint8,uint256) (#1006-1034) should emit an event for:
- _referEth = value (#1014)
- _referToken = value (#1016)
- salePrice = value (#1024)
- _buyBnb = value (#1029)
Emit an event for critical parameter changes.
Additional information: link
Tiger1.setMarketingAddress(address)._marketingAddress (#931) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#932)
Tiger1.setCharityAddress(address)._newaddress (#935) lacks a zero-check on :
- charityAddress = address(_newaddress) (#936)
Tiger1.transferToAddressETH(address,uint256).recipient (#963) lacks a zero-check on :
- recipient.transfer(amount) (#964)
Check that the address is not zero.
Additional information: link
Reentrancy in Tiger1._transfer(address,address,uint256) (#600-648):
External calls:
- swapTokens(contractTokenBalance) (#619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- swapTokens(contractTokenBalance) (#619)
- recipient.transfer(amount) (#964)
State variables written after the call(s):
- removeAllFee() (#630)
- _burnFee = 0 (#854)
- _burnFee = _previousBurnFee (#633)
- removeAllFee() (#637)
- _burnFee = 0 (#854)
- _burnFee = _previousBurnFee (#640)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _burnFee = _previousBurnFee (#860)
- _burnFee = 0 (#854)
- removeAllFee() (#630)
- _previousBurnFee = _burnFee (#851)
- removeAllFee() (#637)
- _previousBurnFee = _burnFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousBurnFee = _burnFee (#851)
- removeAllFee() (#630)
- _previousLiquidityFee = _liquidityFee (#850)
- removeAllFee() (#637)
- _previousLiquidityFee = _liquidityFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousLiquidityFee = _liquidityFee (#850)
- removeAllFee() (#630)
- _previousTaxFee = _taxFee (#849)
- removeAllFee() (#637)
- _previousTaxFee = _taxFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousTaxFee = _taxFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _tFeeTotal = _tFeeTotal.add(tFee) (#785)
- removeAllFee() (#630)
- _taxFee = 0 (#852)
- _taxFee = _buyTaxFee (#631)
- removeAllFee() (#637)
- _taxFee = 0 (#852)
- _taxFee = _sellTaxFee (#638)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _taxFee = _previousTaxFee (#858)
- _taxFee = 0 (#852)
Reentrancy in Tiger1.constructor() (#466-476):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#470-471)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#473)
- _isExcludedFromFee[address(this)] = true (#474)
- uniswapV2Router = _uniswapV2Router (#472)
Reentrancy in Tiger1.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#964)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#596)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Tiger1._transfer(address,address,uint256) (#600-648):
External calls:
- swapTokens(contractTokenBalance) (#619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- swapTokens(contractTokenBalance) (#619)
- recipient.transfer(amount) (#964)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,deadAddress,tBurnAmount) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#647)
Reentrancy in Tiger1.constructor() (#466-476):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#470-471)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#475)
Reentrancy in Tiger1.swapETHForTokens(uint256) (#682-697):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#689-694)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#696)
Reentrancy in Tiger1.swapTokensForEth(uint256) (#662-680):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#679)
Reentrancy in Tiger1.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#964)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#597)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#203-208) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#205)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#92-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) uses assembly
- INLINE ASM (#137-140)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) is never used and should be removed
Address.functionCall(address,bytes) (#111-113) is never used and should be removed
Address.functionCall(address,bytes,string) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#119-121) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#123-126) is never used and should be removed
Address.isContract(address) (#92-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
Context._msgData() (#27-30) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#84-87) is never used and should be removed
Tiger1.addLiquidity(uint256,uint256) (#704-717) is never used and should be removed
Tiger1.swapETHForTokens(uint256) (#682-697) is never used and should be removed
Remove unused functions.
Additional information: link
Tiger1._rTotal (#421) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Tiger1._previousTaxFee (#429) is set pre-construction with a non-constant function or state variable:
- _taxFee
Tiger1._previousLiquidityFee (#432) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Tiger1._buyTaxFee (#434) is set pre-construction with a non-constant function or state variable:
- _taxFee
Tiger1._buyLiquidityFee (#435) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Tiger1._sellTaxFee (#437) is set pre-construction with a non-constant function or state variable:
- _taxFee
Tiger1._sellLiquidityFee (#438) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Tiger1._previousBurnFee (#441) is set pre-construction with a non-constant function or state variable:
- _burnFee
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
Variable Ownable._swAuth (#152) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#237) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#238) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#247) is not in mixedCase
Function IUniswapV2Router01.WETH() (#266) is not in mixedCase
Parameter Tiger1.calculateTaxFee(uint256)._amount (#834) is not in mixedCase
Parameter Tiger1.calculateLiquidityFee(uint256)._amount (#840) is not in mixedCase
Parameter Tiger1.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#915) is not in mixedCase
Parameter Tiger1.setMarketingAddress(address)._marketingAddress (#931) is not in mixedCase
Parameter Tiger1.setCharityAddress(address)._newaddress (#935) is not in mixedCase
Parameter Tiger1.setSwapAndLiquifyEnabled(bool)._enabled (#939) is not in mixedCase
Parameter Tiger1.airdrop(address)._refer (#1036) is not in mixedCase
Parameter Tiger1.buy(address)._refer (#1052) is not in mixedCase
Variable Tiger1._taxFee (#428) is not in mixedCase
Variable Tiger1._liquidityFee (#431) is not in mixedCase
Variable Tiger1._buyTaxFee (#434) is not in mixedCase
Variable Tiger1._buyLiquidityFee (#435) is not in mixedCase
Variable Tiger1._sellTaxFee (#437) is not in mixedCase
Variable Tiger1._sellLiquidityFee (#438) is not in mixedCase
Variable Tiger1._burnFee (#440) is not in mixedCase
Variable Tiger1._maxTxAmount (#447) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Tiger1._transfer(address,address,uint256) (#600-648):
External calls:
- swapTokens(contractTokenBalance) (#619)
- recipient.transfer(amount) (#964)
State variables written after the call(s):
- removeAllFee() (#630)
- _burnFee = 0 (#854)
- _burnFee = _previousBurnFee (#633)
- removeAllFee() (#637)
- _burnFee = 0 (#854)
- _burnFee = _previousBurnFee (#640)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _burnFee = _previousBurnFee (#860)
- _burnFee = 0 (#854)
- removeAllFee() (#630)
- _liquidityFee = 0 (#853)
- _liquidityFee = _buyLiquidityFee (#632)
- removeAllFee() (#637)
- _liquidityFee = 0 (#853)
- _liquidityFee = _sellLiquidityFee (#639)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _liquidityFee = _previousLiquidityFee (#859)
- _liquidityFee = 0 (#853)
- removeAllFee() (#630)
- _previousBurnFee = _burnFee (#851)
- removeAllFee() (#637)
- _previousBurnFee = _burnFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousBurnFee = _burnFee (#851)
- removeAllFee() (#630)
- _previousLiquidityFee = _liquidityFee (#850)
- removeAllFee() (#637)
- _previousLiquidityFee = _liquidityFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousLiquidityFee = _liquidityFee (#850)
- removeAllFee() (#630)
- _previousTaxFee = _taxFee (#849)
- removeAllFee() (#637)
- _previousTaxFee = _taxFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _previousTaxFee = _taxFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#829)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#754)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#756)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#745)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _rTotal = _rTotal.sub(rFee) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _tFeeTotal = _tFeeTotal.add(tFee) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#831)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#764)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#755)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#776)
- removeAllFee() (#630)
- _taxFee = 0 (#852)
- _taxFee = _buyTaxFee (#631)
- removeAllFee() (#637)
- _taxFee = 0 (#852)
- _taxFee = _sellTaxFee (#638)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- _taxFee = _previousTaxFee (#858)
- _taxFee = 0 (#852)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#647)
- Transfer(sender,deadAddress,tBurnAmount) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#647)
Reentrancy in Tiger1.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- recipient.transfer(amount) (#964)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#596)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#597)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#271) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#272)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1.reflectionFromToken(uint256,bool).rTransferAmount (#558) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._getTValues(uint256).tTransferAmount (#797)
Variable Tiger1._transferStandard(address,address,uint256).rTransferAmount (#738) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._transferToExcluded(address,address,uint256).rTransferAmount (#753) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._transferStandard(address,address,uint256).rBurnAmount (#740) is too similar to Tiger1._transferStandard(address,address,uint256).tBurnAmount (#739)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._transferStandard(address,address,uint256).tTransferAmount (#738)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._transferFromExcluded(address,address,uint256).tTransferAmount (#763)
Variable Tiger1._getValues(uint256).rTransferAmount (#790) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._getValues(uint256).tTransferAmount (#789)
Variable Tiger1._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#805) is too similar to Tiger1._transferBothExcluded(address,address,uint256).tTransferAmount (#773)
Variable Tiger1._transferBothExcluded(address,address,uint256).rTransferAmount (#773) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Variable Tiger1._transferFromExcluded(address,address,uint256).rTransferAmount (#763) is too similar to Tiger1._transferToExcluded(address,address,uint256).tTransferAmount (#753)
Prevent variables from having similar names.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account