First Blockchain Sport Game Where You Can Receive Daily Rewards For Completing Missions And Compete With Users From All Over The World In Multiple Game Options Such As Leagues, Duels And Tournaments With Unlimited Winnings.
Reentrancy in FinanceSports._transfer(address,address,uint256) (#1016-1061):
External calls:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#953)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1142)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1151)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1162)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1153)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1163)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#871)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rTotal = _rTotal.sub(rFee) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#955)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1161)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#868)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1152)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#870)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.
Additional information: link
FinanceSports._decimals (#705) should be constant
FinanceSports._name (#703) should be constant
FinanceSports._symbol (#704) should be constant
FinanceSports._tTotal (#699) should be constant
FinanceSports.numTokensSellToAddToLiquidity (#720) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
FinanceSports.addLiquidity(uint256,uint256) (#1104-1117) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Ensure that all the return values of the function calls are used.
Additional information: link
FinanceSports.allowance(address,address).owner (#784) shadows:
- Ownable.owner() (#416-418) (function)
FinanceSports._approve(address,address,uint256).owner (#989) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.
Additional information: link
FinanceSports.setTaxFeePercent(uint256) (#885-887) should emit an event for:
- _taxFee = taxFee (#886)
FinanceSports.setLiquidityFeePercent(uint256) (#889-891) should emit an event for:
- _liquidityFee = liquidityFee (#890)
FinanceSports.setMaxTxPercent(uint256) (#893-897) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#894-896)
Emit an event for critical parameter changes.
Additional information: link
FinanceSports.setAirdropContract(address)._airdropContract (#1001) lacks a zero-check on :
- airdropContract = _airdropContract (#1002)
Check that the address is not zero.
Additional information: link
Reentrancy in FinanceSports._transfer(address,address,uint256) (#1016-1061):
External calls:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _liquidityFee = _previousLiquidityFee (#982)
- _liquidityFee = 0 (#977)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousLiquidityFee = _liquidityFee (#974)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousTaxFee = _taxFee (#973)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tFeeTotal = _tFeeTotal.add(tFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _taxFee = _previousTaxFee (#981)
- _taxFee = 0 (#976)
Reentrancy in FinanceSports.constructor() (#740-756):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#745-746)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#752)
- _isExcludedFromFee[address(this)] = true (#753)
- uniswapV2Router = _uniswapV2Router (#749)
Reentrancy in FinanceSports.swapAndLiquify(uint256) (#1063-1084):
External calls:
- swapTokensForEth(half) (#1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
- addLiquidity(otherHalf,newBalance) (#1081)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1081)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1081)
- _allowances[owner][spender] = amount (#993)
Reentrancy in FinanceSports.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
- _allowances[owner][spender] = amount (#993)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FinanceSports._transfer(address,address,uint256) (#1016-1061):
External calls:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1146)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1156)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#874)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
Reentrancy in FinanceSports.constructor() (#740-756):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#745-746)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#755)
Reentrancy in FinanceSports.swapAndLiquify(uint256) (#1063-1084):
External calls:
- swapTokensForEth(half) (#1075)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
- addLiquidity(otherHalf,newBalance) (#1081)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1081)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#994)
- addLiquidity(otherHalf,newBalance) (#1081)
- SwapAndLiquify(half,newBalance,otherHalf) (#1083)
Reentrancy in FinanceSports.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1095-1101)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1109-1116)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#994)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#463-468) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#465)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.
Additional information: link
FinanceSports.includeInReward(address) (#853-864) has costly operations inside a loop:
- _excluded.pop() (#860)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.
Additional information: link
FinanceSports._rTotal (#700) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FinanceSports._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
FinanceSports._previousLiquidityFee (#711) 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) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
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() (#507) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#508) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#525) is not in mixedCase
Function IUniswapV2Router01.WETH() (#547) is not in mixedCase
Parameter FinanceSports.setSwapAndLiquifyEnabled(bool)._enabled (#899) is not in mixedCase
Parameter FinanceSports.calculateTaxFee(uint256)._amount (#958) is not in mixedCase
Parameter FinanceSports.calculateLiquidityFee(uint256)._amount (#964) is not in mixedCase
Parameter FinanceSports.setAirdropContract(address)._airdropContract (#1001) is not in mixedCase
Variable FinanceSports._taxFee (#707) is not in mixedCase
Variable FinanceSports._liquidityFee (#710) is not in mixedCase
Variable FinanceSports._maxTxAmount (#719) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#552) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#553)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._transferFromExcluded(address,address,uint256).tTransferAmount (#1160)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._transferStandard(address,address,uint256).rTransferAmount (#1141) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to FinanceSports._transferToExcluded(address,address,uint256).tTransferAmount (#1150)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._transferStandard(address,address,uint256).tTransferAmount (#1141)
Variable FinanceSports._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to FinanceSports._getTValues(uint256).tTransferAmount (#921)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._transferToExcluded(address,address,uint256).rTransferAmount (#1150) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable FinanceSports._transferFromExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Variable FinanceSports._getValues(uint256).rTransferAmount (#914) is too similar to FinanceSports._getValues(uint256).tTransferAmount (#913)
Prevent variables from having similar names.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#450-452)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#455-460)
unlock() should be declared external:
- Ownable.unlock() (#463-468)
name() should be declared external:
- FinanceSports.name() (#758-760)
symbol() should be declared external:
- FinanceSports.symbol() (#762-764)
decimals() should be declared external:
- FinanceSports.decimals() (#766-768)
totalSupply() should be declared external:
- FinanceSports.totalSupply() (#770-772)
transfer(address,uint256) should be declared external:
- FinanceSports.transfer(address,uint256) (#779-782)
allowance(address,address) should be declared external:
- FinanceSports.allowance(address,address) (#784-786)
approve(address,uint256) should be declared external:
- FinanceSports.approve(address,uint256) (#788-791)
transferFrom(address,address,uint256) should be declared external:
- FinanceSports.transferFrom(address,address,uint256) (#793-797)
increaseAllowance(address,uint256) should be declared external:
- FinanceSports.increaseAllowance(address,uint256) (#799-802)
decreaseAllowance(address,uint256) should be declared external:
- FinanceSports.decreaseAllowance(address,uint256) (#804-807)
isExcludedFromReward(address) should be declared external:
- FinanceSports.isExcludedFromReward(address) (#809-811)
totalFees() should be declared external:
- FinanceSports.totalFees() (#813-815)
deliver(uint256) should be declared external:
- FinanceSports.deliver(uint256) (#817-824)
reflectionFromToken(uint256,bool) should be declared external:
- FinanceSports.reflectionFromToken(uint256,bool) (#826-835)
excludeFromReward(address) should be declared external:
- FinanceSports.excludeFromReward(address) (#843-851)
excludeFromFee(address) should be declared external:
- FinanceSports.excludeFromFee(address) (#877-879)
includeInFee(address) should be declared external:
- FinanceSports.includeInFee(address) (#881-883)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FinanceSports.setSwapAndLiquifyEnabled(bool) (#899-902)
isExcludedFromFee(address) should be declared external:
- FinanceSports.isExcludedFromFee(address) (#985-987)
turnOffAntibotMode() should be declared external:
- FinanceSports.turnOffAntibotMode() (#997-999)
setAirdropContract(address) should be declared external:
- FinanceSports.setAirdropContract(address) (#1001-1003)
setAntibotModeWhitelist(address[],address[]) should be declared external:
- FinanceSports.setAntibotModeWhitelist(address[],address[]) (#1005-1008)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 8% 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.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
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 KYC or doxxing proof
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts