Little PitJupiter aims to provide a safe, #$LittlePitJupiter ecosystem where anyone can make money from holding our token.
TG:https://t.co/WRU4VuV8lT
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
LittlePitJupiter.swapBack() (#599-647) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
DividendDistributor.distributeDividend(address) (#302-313) ignores return value by RWRD.transfer(shareholder,amount) (#308)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in LittlePitJupiter._transferFrom(address,address,uint256) (#483-531):
External calls:
- swapBack() (#510)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- swapBack() (#510)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#513)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#516)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#515)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#556)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#557)
Apply the check-effects-interactions pattern.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
LittlePitJupiter.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
LittlePitJupiter.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
(tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
LittlePitJupiter.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
tmpSuccess = false (#634)
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.
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.
LittlePitJupiter.takeFee(address,uint256,bool) (#548-565) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#551)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#553)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#302-313):
External calls:
- RWRD.transfer(shareholder,amount) (#308)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#310)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#311)
Reentrancy in DividendDistributor.process(uint256) (#271-295):
External calls:
- distributeDividend(shareholders[currentIndex]) (#287)
- RWRD.transfer(shareholder,amount) (#308)
State variables written after the call(s):
- currentIndex ++ (#292)
Reentrancy in DividendDistributor.setShare(address,uint256) (#235-249):
External calls:
- distributeDividend(shareholder) (#237)
- RWRD.transfer(shareholder,amount) (#308)
State variables written after the call(s):
- shares[shareholder].amount = amount (#247)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#248)
Apply the check-effects-interactions pattern.
Additional information: link
LittlePitJupiter.manage_blacklist(address[],bool).i (#665) 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
LittlePitJupiter.swapBack() (#599-647) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#230-233) should emit an event for:
- minPeriod = _minPeriod (#231)
- minDistribution = _minDistribution (#232)
LittlePitJupiter.setMaxTxPercent_base1000(uint256) (#474-476) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#475)
LittlePitJupiter.setTxLimit(uint256) (#478-480) should emit an event for:
- _maxTxAmount = amount (#479)
LittlePitJupiter.set_sell_multiplier(uint256) (#584-586) should emit an event for:
- sellMultiplier = Multiplier (#585)
LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#683-693) should emit an event for:
- liquidityFee = _liquidityFee (#684)
- reflectionFee = _reflectionFee (#685)
- marketingFee = _marketingFee (#686)
- teamFee = _teamFee (#687)
- villageFee = _villageFee (#688)
- burnFee = _burnFee (#689)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _villageFee (#690)
- feeDenominator = _feeDenominator (#691)
LittlePitJupiter.setSwapBackSettings(bool,uint256) (#703-706) should emit an event for:
- swapThreshold = _amount (#705)
LittlePitJupiter.setTargetLiquidity(uint256,uint256) (#708-711) should emit an event for:
- targetLiquidity = _target (#709)
- targetLiquidityDenominator = _denominator (#710)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#112) lacks a zero-check on :
- owner = adr (#113)
LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#695) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#696)
LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#695) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#697)
LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#695) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#698)
LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#695) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#699)
LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._villageFeeReceiver (#695) lacks a zero-check on :
- villageFeeReceiver = _villageFeeReceiver (#700)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#302-313) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#308)
LittlePitJupiter.multiTransfer(address,address[],uint256[]) (#737-761) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#753)
LittlePitJupiter.multiTransfer_fixed(address,address[],uint256) (#763-782) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#774)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in LittlePitJupiter.constructor() (#411-437):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#413)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#414)
- _balances[msg.sender] = _totalSupply (#435)
- autoLiquidityReceiver = 0x63c73d6Cd5058f953720C1938874Aa77D1160154 (#429)
- burnFeeReceiver = DEAD (#433)
- distributor = new DividendDistributor(address(router)) (#416)
- isDividendExempt[pair] = true (#425)
- isDividendExempt[address(this)] = true (#426)
- isDividendExempt[DEAD] = true (#427)
- isFeeExempt[msg.sender] = true (#418)
- isTimelockExempt[msg.sender] = true (#421)
- isTimelockExempt[DEAD] = true (#422)
- isTimelockExempt[address(this)] = true (#423)
- isTxLimitExempt[msg.sender] = true (#419)
- marketingFeeReceiver = 0x3B805FeC3FB9E2BD2B12707165b6Cb774528D60f (#430)
- teamFeeReceiver = 0x22aDAdC73AEF0ffc106535cAf104CC6c609cAC98 (#431)
- villageFeeReceiver = 0x17A8100b73C8e337F0F7B17A903C4fDfa9364BC3 (#432)
Reentrancy in DividendDistributor.deposit() (#251-269):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#258-263)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#268)
- totalDividends = totalDividends.add(amount) (#267)
Reentrancy in DividendDistributor.distributeDividend(address) (#302-313):
External calls:
- RWRD.transfer(shareholder,amount) (#308)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#309)
Reentrancy in DividendDistributor.setShare(address,uint256) (#235-249):
External calls:
- distributeDividend(shareholder) (#237)
- RWRD.transfer(shareholder,amount) (#308)
State variables written after the call(s):
- addShareholder(shareholder) (#241)
- shareholderIndexes[shareholder] = shareholders.length (#335)
- removeShareholder(shareholder) (#243)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#341)
- addShareholder(shareholder) (#241)
- shareholders.push(shareholder) (#336)
- removeShareholder(shareholder) (#243)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#340)
- shareholders.pop() (#342)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#246)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LittlePitJupiter._transferFrom(address,address,uint256) (#483-531):
External calls:
- swapBack() (#510)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
- distributor.setShare(sender,_balances[sender]) (#520)
- distributor.setShare(recipient,_balances[recipient]) (#524)
- distributor.process(distributorGas) (#527)
External calls sending eth:
- swapBack() (#510)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#529)
Reentrancy in LittlePitJupiter._transferFrom(address,address,uint256) (#483-531):
External calls:
- swapBack() (#510)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- swapBack() (#510)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#558)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#515)
- Transfer(sender,burnFeeReceiver,burnTokens) (#561)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#515)
Reentrancy in LittlePitJupiter.constructor() (#411-437):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#413)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#436)
Reentrancy in LittlePitJupiter.swapBack() (#599-647):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#645)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#297-300) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#298-299)
LittlePitJupiter._transferFrom(address,address,uint256) (#483-531) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#503)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#271-295) has costly operations inside a loop:
- currentIndex = 0 (#283)
DividendDistributor.distributeDividend(address) (#302-313) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#307)
DividendDistributor.process(uint256) (#271-295) has costly operations inside a loop:
- currentIndex ++ (#292)
Use a local variable to hold the loop computation result.
Additional information: link
LittlePitJupiter._maxTxAmount (#359) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 20 / 2000
LittlePitJupiter._maxWalletToken (#360) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 20 / 500
LittlePitJupiter.totalFee (#380) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + villageFee
LittlePitJupiter.swapThreshold (#407) 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.7.4 (#23) allows old versions
solc-0.7.4 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 LittlePitJupiter.swapBack() (#599-647):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#630)
- (tmpSuccess,None) = address(villageFeeReceiver).call{gas: 30000,value: amountBNBVillage}() (#631)
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() (#127) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#230) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#230) is not in mixedCase
Variable DividendDistributor._token (#183) is not in mixedCase
Variable DividendDistributor.RWRD (#191) is not in mixedCase
Variable DividendDistributor.WBNB (#192) is not in mixedCase
Function LittlePitJupiter.setMaxWalletPercent_base1000(uint256) (#471-473) is not in mixedCase
Parameter LittlePitJupiter.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#471) is not in mixedCase
Function LittlePitJupiter.setMaxTxPercent_base1000(uint256) (#474-476) is not in mixedCase
Parameter LittlePitJupiter.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#474) is not in mixedCase
Function LittlePitJupiter.clearStuckBalance_sender(uint256) (#579-582) is not in mixedCase
Function LittlePitJupiter.set_sell_multiplier(uint256) (#584-586) is not in mixedCase
Parameter LittlePitJupiter.set_sell_multiplier(uint256).Multiplier (#584) is not in mixedCase
Parameter LittlePitJupiter.tradingStatus(bool)._status (#589) is not in mixedCase
Parameter LittlePitJupiter.cooldownEnabled(bool,uint8)._status (#594) is not in mixedCase
Parameter LittlePitJupiter.cooldownEnabled(bool,uint8)._interval (#594) is not in mixedCase
Function LittlePitJupiter.enable_blacklist(bool) (#660-662) is not in mixedCase
Parameter LittlePitJupiter.enable_blacklist(bool)._status (#660) is not in mixedCase
Function LittlePitJupiter.manage_blacklist(address[],bool) (#664-668) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._villageFee (#683) is not in mixedCase
Parameter LittlePitJupiter.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#683) is not in mixedCase
Parameter LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#695) is not in mixedCase
Parameter LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#695) is not in mixedCase
Parameter LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#695) is not in mixedCase
Parameter LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#695) is not in mixedCase
Parameter LittlePitJupiter.setFeeReceivers(address,address,address,address,address)._villageFeeReceiver (#695) is not in mixedCase
Parameter LittlePitJupiter.setSwapBackSettings(bool,uint256)._enabled (#703) is not in mixedCase
Parameter LittlePitJupiter.setSwapBackSettings(bool,uint256)._amount (#703) is not in mixedCase
Parameter LittlePitJupiter.setTargetLiquidity(uint256,uint256)._target (#708) is not in mixedCase
Parameter LittlePitJupiter.setTargetLiquidity(uint256,uint256)._denominator (#708) is not in mixedCase
Parameter LittlePitJupiter.setDistributionCriteria(uint256,uint256)._minPeriod (#713) is not in mixedCase
Parameter LittlePitJupiter.setDistributionCriteria(uint256,uint256)._minDistribution (#713) is not in mixedCase
Function LittlePitJupiter.multiTransfer_fixed(address,address[],uint256) (#763-782) is not in mixedCase
Variable LittlePitJupiter.WBNB (#349) is not in mixedCase
Variable LittlePitJupiter.DEAD (#350) is not in mixedCase
Variable LittlePitJupiter.ZERO (#351) is not in mixedCase
Constant LittlePitJupiter._name (#353) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LittlePitJupiter._symbol (#354) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LittlePitJupiter._decimals (#355) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LittlePitJupiter._totalSupply (#357) is not in mixedCase
Variable LittlePitJupiter._maxTxAmount (#359) is not in mixedCase
Variable LittlePitJupiter._maxWalletToken (#360) is not in mixedCase
Variable LittlePitJupiter._balances (#362) is not in mixedCase
Variable LittlePitJupiter._allowances (#363) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#132) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#133)
Prevent variables from having similar names.
Additional information: link
LittlePitJupiter.slitherConstructorVariables() (#346-787) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#350)
LittlePitJupiter.slitherConstructorVariables() (#346-787) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#351)
LittlePitJupiter.slitherConstructorVariables() (#346-787) uses literals with too many digits:
- distributorGas = 500000 (#400)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.WBNB (#192) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#205) should be constant
LittlePitJupiter.DEAD (#350) should be constant
LittlePitJupiter.WBNB (#349) should be constant
LittlePitJupiter.ZERO (#351) should be constant
LittlePitJupiter._totalSupply (#357) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#96-98)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#100-102)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#112-116)
tradingStatus(bool) should be declared external:
- LittlePitJupiter.tradingStatus(bool) (#589-591)
cooldownEnabled(bool,uint8) should be declared external:
- LittlePitJupiter.cooldownEnabled(bool,uint8) (#594-597)
enable_blacklist(bool) should be declared external:
- LittlePitJupiter.enable_blacklist(bool) (#660-662)
manage_blacklist(address[],bool) should be declared external:
- LittlePitJupiter.manage_blacklist(address[],bool) (#664-668)
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.
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 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
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
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 audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of 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
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts