Doxy revolutionixing the fantasy sports market. It is a blockchain-powered live and fantasy sports platform that will decentralize the social gamin experience wherein people can express their passion for the sports they follow.
DoxyFinance.rescueBEPTokenFromContract() (#1083-1087) ignores return value by ERC20Token.transfer(_owner,address(this).balance) (#1086)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in DoxyFinance.setRouterAddress(address) (#1023-1041):
External calls:
- pancakePair = IFactory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#1033-1036)
State variables written after the call(s):
- pancakeRouter = _newRouter (#1040)
Apply the check-effects-interactions pattern.
Additional information: link
ERC20._transfer(address,address,uint256) (#453-564) compares to a boolean constant:
-require(bool,string)(LockList[recipient] == false,ERC20: Receipient Locked !) (#530)
ERC20._transfer(address,address,uint256) (#453-564) compares to a boolean constant:
-require(bool,string)(LockList[_msgSender()] == false,ERC20: Caller Locked !) (#528)
ERC20._transfer(address,address,uint256) (#453-564) compares to a boolean constant:
-require(bool,string)(LockList[sender] == false,ERC20: Sender Locked !) (#529)
ERC20.burn(uint256) (#670-686) compares to a boolean constant:
-require(bool,string)(LockList[msg.sender] == false,ERC20: User Locked !) (#671)
Remove the equality to the boolean constant.
Additional information: link
DoxyFinance.rescueBEPTokenFromContract()._owner (#1085) shadows:
- Ownable._owner (#725) (state variable)
DoxyFinance.rescueBNBFromContract()._owner (#843) shadows:
- Ownable._owner (#725) (state variable)
DoxyFinance.airdrop(address[],uint256[])._balances (#1065) shadows:
- ERC20._balances (#237) (state variable)
DoxyFinance.preSale(address[],uint256[])._balances (#1075) shadows:
- ERC20._balances (#237) (state variable)
Rename the local variables that shadow another component.
Additional information: link
ERC20.appliedFees (#321) is set pre-construction with a non-constant function or state variable:
- buyFees
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
Pragma version0.8.0 (#3) allows old versions
solc-0.8.0 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) (#6-17):
- (success) = recipient.call{value: amount}() (#12)
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 "i (#1068)" inDoxyFinance (#764-1089)
Redundant expression "i (#1078)" inDoxyFinance (#764-1089)
Remove redundant statements if they congest code but offer no value.
Additional information: link
DoxyFinance.setMarketingWallet(address)._address (#892) lacks a zero-check on :
- marketingWallet = _address (#897)
DoxyFinance.setBurnWallet(address)._address (#875) lacks a zero-check on :
- burnWallet = _address (#880)
DoxyFinance.setLiquidityWallet(address)._address (#902) lacks a zero-check on :
- liquidityWallet = _address (#907)
DoxyFinance.rescueBNBFromContract()._owner (#843) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#844)
DoxyFinance.setPrivateSaleWallet(address)._address (#922) lacks a zero-check on :
- privateSaleWallet = _address (#927)
DoxyFinance.setTeamWallet(address)._address (#952) lacks a zero-check on :
- teamWallet = _address (#957)
DoxyFinance.setGameOperationsWallet(address)._address (#942) lacks a zero-check on :
- gameOperationsWallet = _address (#947)
DoxyFinance.setAirdropWallet(address)._address (#912) lacks a zero-check on :
- communityAirdropWallet = _address (#917)
DoxyFinance.setStakeAddress(address)._address (#992) lacks a zero-check on :
- stakeAddress = _address (#993)
DoxyFinance.setStrategicSalesWallet(address)._address (#932) lacks a zero-check on :
- strategicSalesWallet = _address (#937)
Check that the address is not zero.
Additional information: link
ERC20._transfer(address,address,uint256) (#453-564) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > timeLimit + 24 * 3600,maxSellPerDay Limit Exceeded) (#474-477)
- block.timestamp < _firstSell[sender] + 24 * 3600 (#481)
- block.timestamp < timeLimit + 24 * 3600 (#488)
- block.timestamp < timeLimit + 24 * 3600 (#502)
- block.timestamp < _firstBuy[recipient] + 24 * 3600 (#512)
Avoid relying on block.timestamp.
Additional information: link
SafeMath.mul(uint256,uint256) (#90-92) is never used and should be removed
SafeMath.sub(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#60-69) is never used and should be removed
SafeMath.add(uint256,uint256) (#82-84) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#71-80) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#21-31) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#124-133) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#113-122) is never used and should be removed
Context._msgData() (#226-228) is never used and should be removed
SafeMath.mod(uint256,uint256) (#98-100) is never used and should be removed
SafeMath.div(uint256,uint256) (#94-96) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#44-58) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#33-42) is never used and should be removed
Remove unused functions.
Additional information: link
Parameter DoxyFinance.LockTokens(address,uint256).Account (#974) is not in mixedCase
Variable ERC20._isExcludedFromFee (#248) is not in mixedCase
Parameter DoxyFinance.whitelistWallet(address)._address (#887) is not in mixedCase
Parameter DoxyFinance.staking(uint256)._amount (#856) is not in mixedCase
Variable ERC20.LockedTokens (#240) is not in mixedCase
Variable ERC20._isBadActor (#250) is not in mixedCase
Parameter DoxyFinance.setTeamWallet(address)._address (#952) is not in mixedCase
Parameter DoxyFinance.preSale(address[],uint256[])._contributors (#1074) is not in mixedCase
Variable ERC20.LockList (#239) is not in mixedCase
Parameter DoxyFinance.UnLockTokens(address).Account (#978) is not in mixedCase
Function DoxyFinance.LockTokens(address,uint256) (#974-976) is not in mixedCase
Parameter DoxyFinance.setMaxBurnAmount(uint256)._maxBurnAmount (#966) is not in mixedCase
Parameter DoxyFinance.setLiquidityWallet(address)._address (#902) is not in mixedCase
Parameter DoxyFinance.preSale(address[],uint256[])._balances (#1075) is not in mixedCase
Parameter ERC20.burn(uint256)._value (#670) is not in mixedCase
Struct ERC20.feeRatesStruct (#300-308) is not in CapWords
Parameter DoxyFinance.setAirdropWallet(address)._address (#912) is not in mixedCase
Struct ERC20.valuesFromGetValues (#323-327) is not in CapWords
Parameter DoxyFinance.setPrivateSaleWallet(address)._address (#922) is not in mixedCase
Function DoxyFinance.UserLock(address,bool) (#970-972) is not in mixedCase
Parameter DoxyFinance.setGameOperationsWallet(address)._address (#942) is not in mixedCase
Parameter DoxyFinance.setTotalBuyFees(uint256)._totFees (#1043) is not in mixedCase
Variable ERC20._includeInSell (#249) is not in mixedCase
Parameter DoxyFinance.setBurnDifference(uint256)._burnDifference (#962) is not in mixedCase
Parameter DoxyFinance.setMarketingWallet(address)._address (#892) is not in mixedCase
Function IRouter.WETH() (#181) is not in mixedCase
Parameter DoxyFinance.airdrop(address[],uint256[])._balances (#1065) is not in mixedCase
Parameter DoxyFinance.airdrop(address[],uint256[])._contributors (#1064) is not in mixedCase
Function DoxyFinance.UnLockTokens(address) (#978-980) is not in mixedCase
Parameter DoxyFinance.setmaxTxAmount(uint256)._maxTxAmount (#871) is not in mixedCase
Parameter DoxyFinance.setStakeAddress(address)._address (#992) is not in mixedCase
Parameter DoxyFinance.setBurnWallet(address)._address (#875) is not in mixedCase
Parameter DoxyFinance.setStrategicSalesWallet(address)._address (#932) is not in mixedCase
Parameter DoxyFinance.UserLock(address,bool).Account (#970) is not in mixedCase
Constant ERC20.pancakeSwapRouter (#280-281) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- maxSellPerDayLimit += amount (#489)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- maxSellPerDayLimit = 1 * 10 ** 9 (#479)
ERC20._transfeTokens(address,address,uint256,bool,bool) (#566-594) has costly operations inside a loop:
- appliedFees = buyFees (#580)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- maxSellPerDayLimit += amount (#503)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- maxSellPerDayLimit = 1 * 10 ** 9 (#491)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- timeLimit = block.timestamp (#478)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- timeLimit = block.timestamp (#506)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- maxSellPerDayLimit = 1 * 10 ** 9 (#505)
ERC20._transfer(address,address,uint256) (#453-564) has costly operations inside a loop:
- timeLimit = block.timestamp (#492)
Use a local variable to hold the loop computation result.
Additional information: link
checkBadActor(address) should be declared external:
- DoxyFinance.checkBadActor(address) (#838-840)
decimals() should be declared external:
- ERC20.decimals() (#346-348)
symbol() should be declared external:
- ERC20.symbol() (#342-344)
name() should be declared external:
- ERC20.name() (#338-340)
isExcludedFromFee(address) should be declared external:
- DoxyFinance.isExcludedFromFee(address) (#1051-1053)
isIncludeInSell(address) should be declared external:
- DoxyFinance.isIncludeInSell(address) (#1055-1057)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Contract has 0% buy tax and 100% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Discord account
Unable to find Youtube account