NFT Shootout is a decentralised play to earn Football game where anyone can earn tokens through a very simple and addictive gameplay competitively or for leisure. Our main aim was to create a game that you can just pickup and play. No need for tutorials or anything complicated, its literally a matter of clicking a few buttons and you are playing.
Gamers will be able to collect NFT player cards to use in game which have their own attributes, positions and skillsets, you will also be able to buy land to build your football stadiums, booster cards to give attribute increases to your players, you can even name your own stadium & club and earn a passive income from them.
Shoot.addLiquidity(uint256,uint256) (#1091-1104) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Shoot._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#960)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1138)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1129)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1149)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#862)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1130)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1150)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#864)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _rTotal = _rTotal.sub(rFee) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#962)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1148)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#861)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1139)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#863)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Shoot.addLiquidity(uint256,uint256) (#1091-1104) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
Ensure that all the return values of the function calls are used.
Additional information: link
Shoot.allowance(address,address).owner (#779) shadows:
- Ownable.owner() (#415-417) (function)
Shoot._approve(address,address,uint256).owner (#996) shadows:
- Ownable.owner() (#415-417) (function)
Rename the local variables that shadow another component.
Additional information: link
Shoot.setTaxFeePercent(uint256) (#878-880) should emit an event for:
- _taxFee = taxFee (#879)
Shoot.setLiquidityFeePercent(uint256) (#882-884) should emit an event for:
- _liquidityFee = liquidityFee (#883)
Shoot.setMaxTxPercent(uint256) (#887-891) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#888-890)
Shoot.setMinNumOfTokenToLiquidifiy(uint256) (#893-895) should emit an event for:
- numTokensSellToAddToLiquidity = minTokens * 10 ** 18 (#894)
Emit an event for critical parameter changes.
Additional information: link
Shoot.setUniswapPair(address).p (#907) lacks a zero-check on :
- uniswapV2Pair = p (#908)
Check that the address is not zero.
Additional information: link
Reentrancy in Shoot._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _liquidityFee = _previousLiquidityFee (#989)
- _liquidityFee = 0 (#984)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousLiquidityFee = _liquidityFee (#981)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _previousTaxFee = _taxFee (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _tFeeTotal = _tFeeTotal.add(tFee) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- _taxFee = _previousTaxFee (#988)
- _taxFee = 0 (#983)
Reentrancy in Shoot.constructor() (#735-751):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#740-741)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#747)
- _isExcludedFromFee[address(this)] = true (#748)
- uniswapV2Router = _uniswapV2Router (#744)
Reentrancy in Shoot.swapAndLiquify(uint256) (#1050-1071):
External calls:
- swapTokensForEth(half) (#1062)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1068)
- _allowances[owner][spender] = amount (#1000)
Reentrancy in Shoot.transferFrom(address,address,uint256) (#788-792):
External calls:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#790)
- _allowances[owner][spender] = amount (#1000)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Shoot._transfer(address,address,uint256) (#1004-1048):
External calls:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1035)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1133)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1153)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#1143)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
- Transfer(sender,recipient,tTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1047)
Reentrancy in Shoot.constructor() (#735-751):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#740-741)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#750)
Reentrancy in Shoot.swapAndLiquify(uint256) (#1050-1071):
External calls:
- swapTokensForEth(half) (#1062)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1068)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1001)
- addLiquidity(otherHalf,newBalance) (#1068)
- SwapAndLiquify(half,newBalance,otherHalf) (#1070)
Reentrancy in Shoot.transferFrom(address,address,uint256) (#788-792):
External calls:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1082-1088)
External calls sending eth:
- _transfer(sender,recipient,amount) (#789)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1096-1103)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1001)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#790)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#462-467) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#464)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#267-276) uses assembly
- INLINE ASM (#274)
Address._functionCallWithValue(address,bytes,uint256,string) (#360-381) uses assembly
- INLINE ASM (#373-376)
Do not use evm assembly.
Additional information: link
Shoot.includeInReward(address) (#847-858) has costly operations inside a loop:
- _excluded.pop() (#854)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#360-381) is never used and should be removed
Address.functionCall(address,bytes) (#320-322) is never used and should be removed
Address.functionCall(address,bytes,string) (#330-332) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#345-347) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#355-358) is never used and should be removed
Address.isContract(address) (#267-276) is never used and should be removed
Address.sendValue(address,uint256) (#294-300) is never used and should be removed
Context._msgData() (#239-242) is never used and should be removed
SafeMath.mod(uint256,uint256) (#212-214) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#228-231) is never used and should be removed
Remove unused functions.
Additional information: link
Shoot._rTotal (#699) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Shoot._previousTaxFee (#707) is set pre-construction with a non-constant function or state variable:
- _taxFee
Shoot._previousLiquidityFee (#710) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#294-300):
- (success) = recipient.call{value: amount}() (#298)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#360-381):
- (success,returndata) = target.call{value: weiValue}(data) (#364)
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() (#506) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#507) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#524) is not in mixedCase
Function IUniswapV2Router01.WETH() (#546) is not in mixedCase
Parameter Shoot.setSwapAndLiquifyEnabled(bool)._enabled (#897) is not in mixedCase
Parameter Shoot.calculateTaxFee(uint256)._amount (#965) is not in mixedCase
Parameter Shoot.calculateLiquidityFee(uint256)._amount (#971) is not in mixedCase
Variable Shoot._taxFee (#706) is not in mixedCase
Variable Shoot._liquidityFee (#709) is not in mixedCase
Variable Shoot._maxTxAmount (#718) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#240)" inContext (#234-243)
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 (#551) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#552)
Variable Shoot.constructor()._uniswapV2Router (#738) is too similar to Shoot.setUniswapRouter(address).uniswapV2Router2 (#903)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._transferFromExcluded(address,address,uint256).tTransferAmount (#1147)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._getTValues(uint256).tTransferAmount (#928)
Variable Shoot._transferToExcluded(address,address,uint256).rTransferAmount (#1137) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._transferBothExcluded(address,address,uint256).rTransferAmount (#860) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot._getValues(uint256).rTransferAmount (#921) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._transferStandard(address,address,uint256).rTransferAmount (#1128) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._transferStandard(address,address,uint256).tTransferAmount (#1128)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._transferToExcluded(address,address,uint256).tTransferAmount (#1137)
Variable Shoot._transferFromExcluded(address,address,uint256).rTransferAmount (#1147) is too similar to Shoot._transferBothExcluded(address,address,uint256).tTransferAmount (#860)
Variable Shoot.reflectionFromToken(uint256,bool).rTransferAmount (#827) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Variable Shoot._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#936) is too similar to Shoot._getValues(uint256).tTransferAmount (#920)
Prevent variables from having similar names.
Additional information: link
Shoot.slitherConstructorVariables() (#684-1160) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#698)
Shoot.slitherConstructorVariables() (#684-1160) uses literals with too many digits:
- _maxTxAmount = 50000000000000 * 10 ** 18 (#718)
Shoot.slitherConstructorVariables() (#684-1160) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000000000 * 10 ** 18 (#719)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Shoot._decimals (#704) should be constant
Shoot._name (#702) should be constant
Shoot._symbol (#703) should be constant
Shoot._tTotal (#698) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#434-437)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#443-447)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#449-451)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#454-459)
unlock() should be declared external:
- Ownable.unlock() (#462-467)
name() should be declared external:
- Shoot.name() (#753-755)
symbol() should be declared external:
- Shoot.symbol() (#757-759)
decimals() should be declared external:
- Shoot.decimals() (#761-763)
totalSupply() should be declared external:
- Shoot.totalSupply() (#765-767)
transfer(address,uint256) should be declared external:
- Shoot.transfer(address,uint256) (#774-777)
allowance(address,address) should be declared external:
- Shoot.allowance(address,address) (#779-781)
approve(address,uint256) should be declared external:
- Shoot.approve(address,uint256) (#783-786)
transferFrom(address,address,uint256) should be declared external:
- Shoot.transferFrom(address,address,uint256) (#788-792)
increaseAllowance(address,uint256) should be declared external:
- Shoot.increaseAllowance(address,uint256) (#794-797)
decreaseAllowance(address,uint256) should be declared external:
- Shoot.decreaseAllowance(address,uint256) (#799-802)
isExcludedFromReward(address) should be declared external:
- Shoot.isExcludedFromReward(address) (#804-806)
totalFees() should be declared external:
- Shoot.totalFees() (#808-810)
deliver(uint256) should be declared external:
- Shoot.deliver(uint256) (#812-819)
reflectionFromToken(uint256,bool) should be declared external:
- Shoot.reflectionFromToken(uint256,bool) (#821-830)
excludeFromReward(address) should be declared external:
- Shoot.excludeFromReward(address) (#838-845)
excludeFromFee(address) should be declared external:
- Shoot.excludeFromFee(address) (#870-872)
includeInFee(address) should be declared external:
- Shoot.includeInFee(address) (#874-876)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Shoot.setSwapAndLiquifyEnabled(bool) (#897-900)
isExcludedFromFee(address) should be declared external:
- Shoot.isExcludedFromFee(address) (#992-994)
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.
Token is deployed only at one blockchain
Token has only one trading pair
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Contract has 4% buy tax and 4% sell tax.
Taxes are low and contract ownership is renounced.
Token is not listed at Mobula.Finance
Additional information: link
Token has a considerable age, but average PancakeSwap 30d trading volume is low
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
Token has relatively low CoinMarketCap rank