The goals of Neptune are clearly defined, it is about creating the best possible experience between investor and developer. Neptune aims to create an ECO system in which exactly that is possible through, for example, the first utility: an Audit & KYC platform to protect investors and developers. This platform is already close to release and will be fully functional by the end of 2021. Another great aspect of Neptune are the ""Moonlandings"" which you can find on the website.
Here with every milestone new exciting things are unlocked for investors. For example, at 500 holders the Golden Hour for 0% tax for one hour. With this we ensure that the project remains interesting for investors even in the longevity that we foresee for it, because you never know what is hidden behind the next ""door"". So the ecosystem of Neptune is mainly focused on the user experience of investors as well as project managers and developers and we will continue to strengthen our market in this direction by trying to expand our ecosystem every quarter and strengthen it in the existing niches.
The tokenomics of the token are as follows : 100% of the Supply into liquidity, which means there are no team tokens or anything like that. Here the total Supply is 1,000,000,000 NPTUN (Neptune). The Tax of the project: 15% Buy & 20% Sell These result from 10% Liquidity Protocol, 3% Marketing & 2% Team. The remaining 5% that is added to the Sell will be divided according to size and percentage of the 3 above mentioned items.
Neptune.swapBack() (#576-621) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Neptune._transferFrom(address,address,uint256) (#477-521):
External calls:
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#504)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#507)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#506)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#543)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#308-319) ignores return value by bnb.transfer(shareholder,amount) (#314)
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 verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Neptune.swapBack().tmpSuccess (#605) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
Neptune.swapBack().tmpSuccess (#605) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
tmpSuccess = false (#608)
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.
DividendDistributor.WBNB (#197) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#210) should be constant
Neptune.DEAD (#357) should be constant
Neptune.WBNB (#356) should be constant
Neptune.ZERO (#358) should be constant
Neptune._totalSupply (#364) should be constant
Neptune.bnb (#355) should be constant
Neptune.launchedAt (#397) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#308-319):
External calls:
- bnb.transfer(shareholder,amount) (#314)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#316)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#317)
Reentrancy in DividendDistributor.process(uint256) (#277-301):
External calls:
- distributeDividend(shareholders[currentIndex]) (#293)
- bnb.transfer(shareholder,amount) (#314)
State variables written after the call(s):
- currentIndex ++ (#298)
Reentrancy in DividendDistributor.setShare(address,uint256) (#241-255):
External calls:
- distributeDividend(shareholder) (#243)
- bnb.transfer(shareholder,amount) (#314)
State variables written after the call(s):
- shares[shareholder].amount = amount (#253)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#254)
Apply the check-effects-interactions pattern.
Additional information: link
Neptune.swapBack() (#576-621) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#236-239) should emit an event for:
- minPeriod = _minPeriod (#237)
- minDistribution = _minDistribution (#238)
Neptune.set_sell_multiplier(uint256) (#561-563) should emit an event for:
- sellMultiplier = Multiplier (#562)
Neptune.setTxLimit(uint256) (#624-626) should emit an event for:
- _maxTxAmount = amount (#625)
Neptune.setFees(uint256,uint256,uint256,uint256,uint256) (#650-658) should emit an event for:
- liquidityFee = _liquidityFee (#651)
- reflectionFee = _reflectionFee (#652)
- marketingFee = _marketingFee (#653)
- teamFee = _teamFee (#654)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_teamFee) (#655)
- feeDenominator = _feeDenominator (#656)
Neptune.setSwapBackSettings(bool,uint256) (#666-669) should emit an event for:
- swapThreshold = _amount (#668)
Neptune.setTargetLiquidity(uint256,uint256) (#671-674) should emit an event for:
- targetLiquidity = _target (#672)
- targetLiquidityDenominator = _denominator (#673)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#117) lacks a zero-check on :
- owner = adr (#118)
Neptune.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#660) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#661)
Neptune.setFeeReceivers(address,address,address)._marketingFeeReceiver (#660) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#662)
Neptune.setFeeReceivers(address,address,address)._teamFeeReceiver (#660) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#663)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#308-319) has external calls inside a loop: bnb.transfer(shareholder,amount) (#314)
Neptune.airdrop(address,address[],uint256[]) (#701-723) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#716)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in Neptune.constructor() (#413-438):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#415)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#416)
- _balances[msg.sender] = _totalSupply (#436)
- autoLiquidityReceiver = msg.sender (#432)
- distributor = new DividendDistributor(address(router)) (#418)
- isDividendExempt[pair] = true (#428)
- isDividendExempt[address(this)] = true (#429)
- isDividendExempt[DEAD] = true (#430)
- isFeeExempt[msg.sender] = true (#420)
- isTimelockExempt[msg.sender] = true (#423)
- isTimelockExempt[DEAD] = true (#424)
- isTimelockExempt[address(this)] = true (#425)
- isTxLimitExempt[msg.sender] = true (#421)
- marketingFeeReceiver = msg.sender (#433)
- teamFeeReceiver = msg.sender (#434)
Reentrancy in DividendDistributor.deposit() (#257-275):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#264-269)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#274)
- totalDividends = totalDividends.add(amount) (#273)
Reentrancy in DividendDistributor.distributeDividend(address) (#308-319):
External calls:
- bnb.transfer(shareholder,amount) (#314)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#315)
Reentrancy in DividendDistributor.setShare(address,uint256) (#241-255):
External calls:
- distributeDividend(shareholder) (#243)
- bnb.transfer(shareholder,amount) (#314)
State variables written after the call(s):
- addShareholder(shareholder) (#247)
- shareholderIndexes[shareholder] = shareholders.length (#341)
- removeShareholder(shareholder) (#249)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#347)
- addShareholder(shareholder) (#247)
- shareholders.push(shareholder) (#342)
- removeShareholder(shareholder) (#249)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#346)
- shareholders.pop() (#348)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#252)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Neptune._transferFrom(address,address,uint256) (#477-521):
External calls:
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
- distributor.setShare(sender,_balances[sender]) (#510)
- distributor.setShare(recipient,_balances[recipient]) (#514)
- distributor.process(distributorGas) (#517)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#519)
Reentrancy in Neptune._transferFrom(address,address,uint256) (#477-521):
External calls:
- swapBack() (#502)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- swapBack() (#502)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#544)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#506)
Reentrancy in Neptune.constructor() (#413-438):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#415)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#437)
Reentrancy in Neptune.swapBack() (#576-621):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#604)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#619)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#303-306) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#304-305)
Neptune._transferFrom(address,address,uint256) (#477-521) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1 minute between 2 buys) (#495)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#277-301) has costly operations inside a loop:
- currentIndex = 0 (#289)
DividendDistributor.distributeDividend(address) (#308-319) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#313)
DividendDistributor.process(uint256) (#277-301) has costly operations inside a loop:
- currentIndex ++ (#298)
Use a local variable to hold the loop computation result.
Additional information: link
Neptune._maxTxAmount (#365) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 5 / 100
Neptune._maxWalletToken (#368) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 100
Neptune.swapThreshold (#409) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 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
Pragma version^0.7.4 (#18) 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 Neptune.swapBack() (#576-621):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#605)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#606)
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() (#132) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#236) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#236) is not in mixedCase
Variable DividendDistributor._token (#188) is not in mixedCase
Variable DividendDistributor.WBNB (#197) is not in mixedCase
Function Neptune.set_sell_multiplier(uint256) (#561-563) is not in mixedCase
Parameter Neptune.set_sell_multiplier(uint256).Multiplier (#561) is not in mixedCase
Parameter Neptune.tradingStatus(bool)._status (#565) is not in mixedCase
Parameter Neptune.cooldownEnabled(bool,uint8)._status (#569) is not in mixedCase
Parameter Neptune.cooldownEnabled(bool,uint8)._interval (#569) is not in mixedCase
Parameter Neptune.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#650) is not in mixedCase
Parameter Neptune.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#650) is not in mixedCase
Parameter Neptune.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#650) is not in mixedCase
Parameter Neptune.setFees(uint256,uint256,uint256,uint256,uint256)._teamFee (#650) is not in mixedCase
Parameter Neptune.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#650) is not in mixedCase
Parameter Neptune.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#660) is not in mixedCase
Parameter Neptune.setFeeReceivers(address,address,address)._marketingFeeReceiver (#660) is not in mixedCase
Parameter Neptune.setFeeReceivers(address,address,address)._teamFeeReceiver (#660) is not in mixedCase
Parameter Neptune.setSwapBackSettings(bool,uint256)._enabled (#666) is not in mixedCase
Parameter Neptune.setSwapBackSettings(bool,uint256)._amount (#666) is not in mixedCase
Parameter Neptune.setTargetLiquidity(uint256,uint256)._target (#671) is not in mixedCase
Parameter Neptune.setTargetLiquidity(uint256,uint256)._denominator (#671) is not in mixedCase
Parameter Neptune.setDistributionCriteria(uint256,uint256)._minPeriod (#676) is not in mixedCase
Parameter Neptune.setDistributionCriteria(uint256,uint256)._minDistribution (#676) is not in mixedCase
Variable Neptune.WBNB (#356) is not in mixedCase
Variable Neptune.DEAD (#357) is not in mixedCase
Variable Neptune.ZERO (#358) is not in mixedCase
Constant Neptune._name (#360) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Neptune._symbol (#361) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Neptune._decimals (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Neptune._totalSupply (#364) is not in mixedCase
Variable Neptune._maxTxAmount (#365) is not in mixedCase
Variable Neptune._maxWalletToken (#368) is not in mixedCase
Variable Neptune._balances (#370) is not in mixedCase
Variable Neptune._allowances (#371) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#137) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#138)
Prevent variables from having similar names.
Additional information: link
Neptune.slitherConstructorVariables() (#352-727) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#357)
Neptune.slitherConstructorVariables() (#352-727) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#358)
Neptune.slitherConstructorVariables() (#352-727) uses literals with too many digits:
- distributorGas = 500000 (#401)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Neptune.bnb (#355) is never used in Neptune (#352-727)
Remove unused state variables.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#97-99)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#102-104)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#117-121)
tradingStatus(bool) should be declared external:
- Neptune.tradingStatus(bool) (#565-567)
cooldownEnabled(bool,uint8) should be declared external:
- Neptune.cooldownEnabled(bool,uint8) (#569-572)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume 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
Token has only one trading pair
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
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
Token has relatively low CoinGecko rank
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account