Fantasy Sport with the power of Block chain and Crypto
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CrytpoFantasyLeague.contractSwap(uint256) (#877-921) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
- _marketingWallet.transfer(address(this).balance) (#919)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CrytpoFantasyLeague.transferOwner(address) (#469-487):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- reflector.tally(from,_tOwned[from]) (#831)
- reflector.tally(to,_tOwned[to]) (#834)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap - amountToLiquify,0,path,address(this),block.timestamp) (#888-894)
- antiSnipe.checkUser(from,to,amount) (#783-787)
- reflector.initialize() (#938)
- reflector.cashout(reflectorGas) (#837)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
- _marketingWallet.transfer(address(this).balance) (#919)
State variables written after the call(s):
- _owner = newOwner (#484)
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
CrytpoFantasyLeague.getMaxWalletSizeUI() (#663-665) performs a multiplication on the result of a division:
-(((getCirculatingSupply() / (10 ** _decimals)) * maxWalletPercent) / maxWalletDivisor) (#664)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in CrytpoFantasyLeague.enableTrading() (#575-581):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp)) (#578)
State variables written after the call(s):
- tradingEnabled = true (#579)
Apply the check-effects-interactions pattern.
Additional information: link
CrytpoFantasyLeague._finalizeTransfer(address,address,uint256,bool).checked (#782) 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
CrytpoFantasyLeague.contractSwap(uint256) (#877-921) ignores return value by dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
Ensure that all the return values of the function calls are used.
Additional information: link
CrytpoFantasyLeague.setMaxWalletSize(uint256,uint256) (#698-703) should emit an event for:
- maxWalletPercent = percent (#701)
- maxWalletDivisor = divisor (#702)
Emit an event for critical parameter changes.
Additional information: link
CrytpoFantasyLeague.setWallets(address).marketingWallet (#615) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#616)
Check that the address is not zero.
Additional information: link
Variable 'CrytpoFantasyLeague._finalizeTransfer(address,address,uint256,bool).check (#783)' in CrytpoFantasyLeague._finalizeTransfer(address,address,uint256,bool) (#773-826) potentially used before declaration: checked = check (#784)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in CrytpoFantasyLeague.setNewRouter(address) (#667-677):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#671)
State variables written after the call(s):
- dexRouter = _newRouter (#676)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CrytpoFantasyLeague.transferOwner(address) (#469-487):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- reflector.tally(from,_tOwned[from]) (#831)
- reflector.tally(to,_tOwned[to]) (#834)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap - amountToLiquify,0,path,address(this),block.timestamp) (#888-894)
- antiSnipe.checkUser(from,to,amount) (#783-787)
- reflector.initialize() (#938)
- reflector.cashout(reflectorGas) (#837)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
- _marketingWallet.transfer(address(this).balance) (#919)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#485)
Apply the check-effects-interactions pattern.
Additional information: link
CrytpoFantasyLeague._transfer(address,address,uint256) (#741-771) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp > launchedAt + 3600 (#751)
Avoid relying on block.timestamp.
Additional information: link
CrytpoFantasyLeague.setLpPair(address,bool) (#679-689) compares to a boolean constant:
-enabled == false (#680)
Remove the equality to the boolean constant.
Additional information: link
Context._msgSender() (#5-7) is never used and should be removed
Remove unused functions.
Additional information: link
CrytpoFantasyLeague.swapAmount (#410) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
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.9 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
Variable CrytpoFantasyLeague.__balances (#871-875) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in CrytpoFantasyLeague.transferOwner(address) (#469-487):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- _marketingWallet.transfer(address(this).balance) (#919)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#481)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#901-908)
- reflector.load{value: amountBNBReflection}() (#912)
- _marketingWallet.transfer(address(this).balance) (#919)
State variables written after the call(s):
- _owner = newOwner (#484)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#485)
Apply the check-effects-interactions pattern.
Additional information: link
Variable CrytpoFantasyLeague.setInitializers(address,address).aInitializer (#548) is too similar to CrytpoFantasyLeague.setInitializers(address,address).cInitializer (#548)
Prevent variables from having similar names.
Additional information: link
CrytpoFantasyLeague.slitherConstructorVariables() (#321-946) uses literals with too many digits:
- reflectorGas = 300000 (#405)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CrytpoFantasyLeague.init (#412) is never used in CrytpoFantasyLeague (#321-946)
Remove unused state variables.
Additional information: link
CrytpoFantasyLeague.startingSupply (#336) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setMaxWalletSize(uint256,uint256) should be declared external:
- CrytpoFantasyLeague.setMaxWalletSize(uint256,uint256) (#698-703)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of 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 CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account