Through the power of NFT’s and a Cryptocurrency the project awards dividends for staking and user’s will have the opportunity to be rewarded from the project treasury on a weekly basis. Users can buy, stake, collect and earn.
INFINITYLOTTO2.swapBack() (#1907-1953) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
INFINITYLOTTO2.swapAndSendToDiv(uint256) (#1955-1973) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in INFINITYLOTTO2._transferFrom(address,address,uint256) (#1795-1830):
External calls:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- distributor.distributeTokenDividends(amountBUSDReflection) (#1970-1972)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1915-1921)
- IBEP20(RWRD).transfer(address(distributor),amountBUSDReflection) (#1971)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
External calls sending eth:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1817)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#1821)
- amountReceived = takeFee(sender,amount,(automatedMarketMakerPairs[recipient])) (#1819)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1883)
Apply the check-effects-interactions pattern.
Additional information: link
INFINITYLOTTO2.swapAndSendToDiv(uint256) (#1955-1973) ignores return value by IBEP20(RWRD).transfer(address(distributor),amountBUSDReflection) (#1971)
INFINITYLOTTO2.withdrawlToken(address,uint256) (#2074-2077) ignores return value by IBEP20(_tokenAddress).transfer(address(msg.sender),_amount) (#2076)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
INFINITYLOTTO2.swapBack().tmpSuccess (#1935) is written in both
(tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
(tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
INFINITYLOTTO2.swapBack().tmpSuccess (#1935) is written in both
(tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
tmpSuccess = false (#1940)
Fix or remove the writes.
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.
Combination 2: Unchecked transfer + 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.
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)
INFINITYLOTTO2.takeFee(address,uint256,bool) (#1870-1887) performs a multiplication on the result of a division:
-feeAmount = amount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#1881)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1416-1434):
External calls:
- success = IERC20(payToken).transfer(user,_withdrawableDividend) (#1423)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1426)
Apply the check-effects-interactions pattern.
Additional information: link
INFINITYLOTTO2.manage_blacklist(address[],bool).i (#1980) 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
INFINITYLOTTO2._transferFrom(address,address,uint256) (#1795-1830) ignores return value by distributor.process(distributorGas) (#1826)
INFINITYLOTTO2.swapBack() (#1907-1953) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string,address)._name (#1385) shadows:
- ERC20._name (#198) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (#1385) shadows:
- ERC20._symbol (#199) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1436) shadows:
- Ownable._owner (#562) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1440) shadows:
- Ownable._owner (#562) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1443) shadows:
- Ownable._owner (#562) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1448) shadows:
- Ownable._owner (#562) (state variable)
Rename the local variables that shadow another component.
Additional information: link
DividendPayingToken.updateClaimWait(uint256) (#1389-1391) should emit an event for:
- claimWait = newClaimWait (#1390)
INFINITYLOTTO2.setMaxWalletPercent_base1000(uint256) (#1791-1793) should emit an event for:
- _maxWalletToken = (_totalSupply * maxWallPercent_base1000) / 1000 (#1792)
INFINITYLOTTO2.cooldownEnabled(bool,uint8) (#1902-1905) should emit an event for:
- cooldownTimerInterval = _interval (#1904)
INFINITYLOTTO2.setSellMultiplier(uint256) (#2005-2008) should emit an event for:
- sellMultiplier = _sellMultiplier (#2007)
INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256) (#2010-2020) should emit an event for:
- liquidityFee = _liquidityFee (#2011)
- divFee = _divFee (#2012)
- treasuryFee = _treasuryFee (#2013)
- lotteryFee = _lotteryFee (#2014)
- totalFee = _divFee.add(_treasuryFee).add(_lotteryFee).add(_liquidityFee) (#2015)
INFINITYLOTTO2.setSwapBackSettings(bool,uint256) (#2027-2030) should emit an event for:
- swapThreshold = _amount (#2029)
INFINITYLOTTO2.setDistributorSettings(uint256) (#2032-2035) should emit an event for:
- distributorGas = gas (#2034)
Emit an event for critical parameter changes.
Additional information: link
DividendPayingToken.constructor(string,string,address)._payToken (#1385) lacks a zero-check on :
- payToken = _payToken (#1386)
Auth.transferOwnership(address).adr (#1291) lacks a zero-check on :
- owner = adr (#1292)
INFINITYLOTTO2.setFeeContract(address,address)._treasuryFeeReceiver (#2022) lacks a zero-check on :
- treasuryFeeReceiver = _treasuryFeeReceiver (#2023)
INFINITYLOTTO2.setFeeContract(address,address)._lotteryFeeReceiver (#2022) lacks a zero-check on :
- lotteryFeeReceiver = _lotteryFeeReceiver (#2024)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#1416-1434) has external calls inside a loop: success = IERC20(payToken).transfer(user,_withdrawableDividend) (#1423)
INFINITYLOTTO2.removeTeamDivWallet(address) (#2103-2116) has external calls inside a loop: distributor.setBalance(address(oldTeamDivWallet),0) (#2113)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in INFINITYLOTTO2.constructor(address) (#1692-1720):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#1696)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = MAX_INT (#1698)
- _balances[msg.sender] = _totalSupply (#1718)
- _setAutomatedMarketMakerPair(pair,true) (#1697)
- automatedMarketMakerPairs[_pair] = value (#1759)
- distributor = new XiLotto(RWRD) (#1700)
- isFeeExempt[msg.sender] = true (#1702)
- isFeeExempt[treasuryFeeReceiver] = true (#1703)
- isFeeExempt[lotteryFeeReceiver] = true (#1704)
- isMaxWalletExempt[address(this)] = true (#1712)
- isMaxWalletExempt[DEAD] = true (#1713)
- isMaxWalletExempt[pair] = true (#1714)
- isMaxWalletExempt[treasuryFeeReceiver] = true (#1715)
- isMaxWalletExempt[lotteryFeeReceiver] = true (#1716)
- isTimelockExempt[msg.sender] = true (#1708)
- isTimelockExempt[DEAD] = true (#1709)
- isTimelockExempt[address(this)] = true (#1710)
- isTxLimitExempt[msg.sender] = true (#1706)
Reentrancy in XiLotto.processAccount(address,bool) (#1598-1608):
External calls:
- amount = _withdrawDividendOfUser(account) (#1599)
- success = IERC20(payToken).transfer(user,_withdrawableDividend) (#1423)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1602)
Reentrancy in INFINITYLOTTO2.setStakeBalance(address) (#1839-1860):
External calls:
- (actualStake) = Pool(msg.sender).userInfo(staker) (#1844)
State variables written after the call(s):
- stakedAmount[staker] = 0 (#1853)
- i < stakingContracts.length (#1854)
- stakedAmount[staker] += userStakeAmounts[staker][stakingContracts[i]] (#1855)
- userStakeAmounts[staker][msg.sender] = actualStake (#1850)
Reentrancy in INFINITYLOTTO2.updateRouter(address) (#2079-2092):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#2086-2087)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(pair,true) (#2090)
- automatedMarketMakerPairs[_pair] = value (#1759)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in INFINITYLOTTO2._transferFrom(address,address,uint256) (#1795-1830):
External calls:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- distributor.distributeTokenDividends(amountBUSDReflection) (#1970-1972)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1915-1921)
- IBEP20(RWRD).transfer(address(distributor),amountBUSDReflection) (#1971)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
- distributor.setBalance(address(sender),balanceOf(sender)) (#1823)
- distributor.setBalance(address(recipient),balanceOf(recipient)) (#1824)
- distributor.process(distributorGas) (#1826)
External calls sending eth:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#1828)
Reentrancy in INFINITYLOTTO2._transferFrom(address,address,uint256) (#1795-1830):
External calls:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- distributor.distributeTokenDividends(amountBUSDReflection) (#1970-1972)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1915-1921)
- IBEP20(RWRD).transfer(address(distributor),amountBUSDReflection) (#1971)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
External calls sending eth:
- swapBack() (#1815)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1884)
- amountReceived = takeFee(sender,amount,(automatedMarketMakerPairs[recipient])) (#1819)
Reentrancy in INFINITYLOTTO2.constructor(address) (#1692-1720):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#1696)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(_pair,value) (#1761)
- _setAutomatedMarketMakerPair(pair,true) (#1697)
- Transfer(address(0),msg.sender,_totalSupply) (#1719)
Reentrancy in XiLotto.processAccount(address,bool) (#1598-1608):
External calls:
- amount = _withdrawDividendOfUser(account) (#1599)
- success = IERC20(payToken).transfer(user,_withdrawableDividend) (#1423)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1603)
Reentrancy in INFINITYLOTTO2.swapBack() (#1907-1953):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1915-1921)
- swapAndSendToDiv(amountBNBReflection) (#1933)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- distributor.distributeTokenDividends(amountBUSDReflection) (#1970-1972)
- IBEP20(RWRD).transfer(address(distributor),amountBUSDReflection) (#1971)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
External calls sending eth:
- swapAndSendToDiv(amountBNBReflection) (#1933)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path1,address(this),block.timestamp) (#1961-1966)
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#1943-1950)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1951)
Reentrancy in INFINITYLOTTO2.updateRouter(address) (#2079-2092):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#2086-2087)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(_pair,value) (#1761)
- _setAutomatedMarketMakerPair(pair,true) (#2090)
Apply the check-effects-interactions pattern.
Additional information: link
XiLotto.canAutoClaim(uint256) (#1526-1532) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1527)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1531)
INFINITYLOTTO2._transferFrom(address,address,uint256) (#1795-1830) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#1809)
Avoid relying on block.timestamp.
Additional information: link
INFINITYLOTTO2.updateRouter(address) (#2079-2092) compares to a boolean constant:
-automatedMarketMakerPairs[pair] != true (#2089)
Remove the equality to the boolean constant.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.7']
- ^0.8.0 (#19)
- ^0.8.0 (#104)
- ^0.8.0 (#134)
- ^0.8.0 (#161)
- ^0.8.0 (#546)
- ^0.8.0 (#624)
- ^0.8.0 (#854)
- ^0.8.0 (#925)
- ^0.8.7 (#1169)
- ^0.8.7 (#1239)
- ^0.8.7 (#1354)
- ^0.8.7 (#1489)
Use one Solidity version.
Additional information: link
INFINITYLOTTO2.removeBadStakingContract(address) (#1739-1749) has costly operations inside a loop:
- stakingContracts.pop() (#1745)
INFINITYLOTTO2.removeBadStakingContract(address) (#1739-1749) has costly operations inside a loop:
- delete isStakingContract[badStakingContract] (#1746)
INFINITYLOTTO2.removeTeamDivWallet(address) (#2103-2116) has costly operations inside a loop:
- teamDivWallets.pop() (#2109)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#151-153) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1453-1459) is never used and should be removed
DividendPayingToken.dividendOf(address) (#1436-1438) is never used and should be removed
DividendPayingToken.withdrawnDividendOf(address) (#1443-1445) is never used and should be removed
ERC20._transfer(address,address,uint256) (#382-402) is never used and should be removed
SafeCast.toInt128(int256) (#1073-1076) is never used and should be removed
SafeCast.toInt16(int256) (#1127-1130) is never used and should be removed
SafeCast.toInt32(int256) (#1109-1112) is never used and should be removed
SafeCast.toInt64(int256) (#1091-1094) is never used and should be removed
SafeCast.toInt8(int256) (#1145-1148) is never used and should be removed
SafeCast.toUint128(uint256) (#968-971) is never used and should be removed
SafeCast.toUint16(uint256) (#1028-1031) is never used and should be removed
SafeCast.toUint224(uint256) (#953-956) is never used and should be removed
SafeCast.toUint32(uint256) (#1013-1016) is never used and should be removed
SafeCast.toUint64(uint256) (#998-1001) is never used and should be removed
SafeCast.toUint8(uint256) (#1043-1046) is never used and should be removed
SafeCast.toUint96(uint256) (#983-986) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#811-820) is never used and should be removed
SafeMath.mod(uint256,uint256) (#771-773) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#837-846) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#642-648) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#684-689) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#696-701) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#667-677) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#655-660) is never used and should be removed
SignedSafeMath.div(int256,int256) (#887-889) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#873-875) is never used and should be removed
Remove unused functions.
Additional information: link
INFINITYLOTTO2._maxTxAmount (#1634) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(100)
INFINITYLOTTO2._maxWalletToken (#1635) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
INFINITYLOTTO2.totalFee (#1658) is set pre-construction with a non-constant function or state variable:
- treasuryFee + divFee + lotteryFee + liquidityFee
INFINITYLOTTO2.swapThreshold (#1685) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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 version^0.8.0 (#19) allows old versions
Pragma version^0.8.0 (#104) allows old versions
Pragma version^0.8.0 (#134) allows old versions
Pragma version^0.8.0 (#161) allows old versions
Pragma version^0.8.0 (#546) allows old versions
Pragma version^0.8.0 (#624) allows old versions
Pragma version^0.8.0 (#854) allows old versions
Pragma version^0.8.0 (#925) allows old versions
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 INFINITYLOTTO2.swapBack() (#1907-1953):
- (tmpSuccess) = address(treasuryFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1935)
- (tmpSuccess,None) = address(lotteryFeeReceiver).call{gas: 30000,value: amountBNBLottery}() (#1937)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#1307) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1436) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1440) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1443) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1448) is not in mixedCase
Constant DividendPayingToken.magnitude (#1362) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter INFINITYLOTTO2.setAutomatedMarketMakerPair(address,bool)._pair (#1751) is not in mixedCase
Function INFINITYLOTTO2.setMaxWalletPercent_base1000(uint256) (#1791-1793) is not in mixedCase
Parameter INFINITYLOTTO2.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1791) is not in mixedCase
Parameter INFINITYLOTTO2.tradingStatus(bool)._status (#1897) is not in mixedCase
Parameter INFINITYLOTTO2.cooldownEnabled(bool,uint8)._status (#1902) is not in mixedCase
Parameter INFINITYLOTTO2.cooldownEnabled(bool,uint8)._interval (#1902) is not in mixedCase
Function INFINITYLOTTO2.enable_blacklist(bool) (#1975-1977) is not in mixedCase
Parameter INFINITYLOTTO2.enable_blacklist(bool)._status (#1975) is not in mixedCase
Function INFINITYLOTTO2.manage_blacklist(address[],bool) (#1979-1983) is not in mixedCase
Parameter INFINITYLOTTO2.setGoldenModeTaxBuyIs0(bool)._GoldenTaxMode (#1989) is not in mixedCase
Parameter INFINITYLOTTO2.setIsMaxWalletExempt(address,bool)._address (#2001) is not in mixedCase
Parameter INFINITYLOTTO2.setSellMultiplier(uint256)._sellMultiplier (#2005) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._divFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._treasuryFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._lotteryFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._stakingFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setContractFees(uint256,uint256,uint256,uint256,uint256,uint256)._unstakingFee (#2010) is not in mixedCase
Parameter INFINITYLOTTO2.setFeeContract(address,address)._treasuryFeeReceiver (#2022) is not in mixedCase
Parameter INFINITYLOTTO2.setFeeContract(address,address)._lotteryFeeReceiver (#2022) is not in mixedCase
Parameter INFINITYLOTTO2.setSwapBackSettings(bool,uint256)._enabled (#2027) is not in mixedCase
Parameter INFINITYLOTTO2.setSwapBackSettings(bool,uint256)._amount (#2027) is not in mixedCase
Function INFINITYLOTTO2.multiAirdrop_fixed(address,address[],uint256) (#2061-2072) is not in mixedCase
Parameter INFINITYLOTTO2.withdrawlToken(address,uint256)._tokenAddress (#2074) is not in mixedCase
Parameter INFINITYLOTTO2.withdrawlToken(address,uint256)._amount (#2074) is not in mixedCase
Variable INFINITYLOTTO2.WBNB (#1623) is not in mixedCase
Variable INFINITYLOTTO2.RWRD (#1624) is not in mixedCase
Variable INFINITYLOTTO2.DEAD (#1625) is not in mixedCase
Variable INFINITYLOTTO2.ZERO (#1626) is not in mixedCase
Constant INFINITYLOTTO2._name (#1628) is not in UPPER_CASE_WITH_UNDERSCORES
Constant INFINITYLOTTO2._symbol (#1629) is not in UPPER_CASE_WITH_UNDERSCORES
Constant INFINITYLOTTO2._decimals (#1630) is not in UPPER_CASE_WITH_UNDERSCORES
Variable INFINITYLOTTO2._totalSupply (#1632) is not in mixedCase
Variable INFINITYLOTTO2._maxTxAmount (#1634) is not in mixedCase
Variable INFINITYLOTTO2._maxWalletToken (#1635) is not in mixedCase
Variable INFINITYLOTTO2._balances (#1638) is not in mixedCase
Variable INFINITYLOTTO2._allowances (#1641) is not in mixedCase
Variable INFINITYLOTTO2.TradingOpen (#1673) is not in mixedCase
Variable INFINITYLOTTO2.GoldenTaxMode (#1675) is not in mixedCase
Variable INFINITYLOTTO2.MAX_INT (#1688) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1312) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1313)
Prevent variables from having similar names.
Additional information: link
INFINITYLOTTO2.slitherConstructorVariables() (#1620-2120) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#1625)
INFINITYLOTTO2.slitherConstructorVariables() (#1620-2120) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#1626)
INFINITYLOTTO2.slitherConstructorVariables() (#1620-2120) uses literals with too many digits:
- distributorGas = 500000 (#1678)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
INFINITYLOTTO2.DEAD (#1625) should be constant
INFINITYLOTTO2.MAX_INT (#1688) should be constant
INFINITYLOTTO2.RWRD (#1624) should be constant
INFINITYLOTTO2.ZERO (#1626) should be constant
INFINITYLOTTO2._totalSupply (#1632) should be constant
INFINITYLOTTO2.feeDenominator (#1659) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (#218-220)
symbol() should be declared external:
- ERC20.symbol() (#226-228)
decimals() should be declared external:
- ERC20.decimals() (#243-245)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#269-273)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#292-296)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#314-323)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#337-341)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#357-366)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#595-597)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#603-606)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1187-1189)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1191-1196)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1198-1200)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1204-1206)
authorize(address) should be declared external:
- Auth.authorize(address) (#1275-1277)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#1279-1281)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#1291-1295)
distributeTokenDividends(uint256) should be declared external:
- DividendPayingToken.distributeTokenDividends(uint256) (#1395-1406)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1410-1412)
- XiLotto.withdrawDividend() (#1512-1514)
process(uint256) should be declared external:
- XiLotto.process(uint256) (#1550-1596)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- INFINITYLOTTO2.setAutomatedMarketMakerPair(address,bool) (#1751-1755)
tradingStatus(bool) should be declared external:
- INFINITYLOTTO2.tradingStatus(bool) (#1897-1899)
cooldownEnabled(bool,uint8) should be declared external:
- INFINITYLOTTO2.cooldownEnabled(bool,uint8) (#1902-1905)
enable_blacklist(bool) should be declared external:
- INFINITYLOTTO2.enable_blacklist(bool) (#1975-1977)
manage_blacklist(address[],bool) should be declared external:
- INFINITYLOTTO2.manage_blacklist(address[],bool) (#1979-1983)
getCirculatingSupply() should be declared external:
- INFINITYLOTTO2.getCirculatingSupply() (#2037-2039)
addTeamDivWallet(address) should be declared external:
- INFINITYLOTTO2.addTeamDivWallet(address) (#2094-2101)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d number of PancakeSwap swaps 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
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit 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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account
Unable to find Discord account