SHIBA HEX PULSE is a passive income generating, community based DAO listed on the Binance Smart Chain (BSC). The token aims to provide an Advanced, sustainable and fully automated rewards system feeding off a portion of the transaction fees created by DEX trading volumes.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in SHIBAHEXPULSE2._transferFrom(address,address,uint256) (#550-591):
External calls:
- swapBack() (#560)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#625-631)
- dividendDistributor.deposit{value: amountBNBReflection}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#644-651)
External calls sending eth:
- swapBack() (#560)
- dividendDistributor.deposit{value: amountBNBReflection}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#644-651)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#568)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#576)
- finalAmount = takeFee(sender,recipient,amount) (#575)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#605)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#243-254) ignores return value by RewardToken.transfer(shareholder,amount) (#249)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Reentrancy in DividendDistributor.setShare(address,uint256) (#177-192):
External calls:
- distributeDividend(shareholder) (#180)
- RewardToken.transfer(shareholder,amount) (#249)
State variables written after the call(s):
- shares[shareholder].amount = amount (#190)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#191)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBAHEXPULSE2.swapBack() (#615-654) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#644-651)
Ensure that all the return values of the function calls are used.
Additional information: link
SHIBAHEXPULSE2.changeFees(uint256,uint256,uint256) (#504-511) should emit an event for:
- liquidityFee = newLiqFee (#505)
- rewardsFee = newRewardFee (#506)
- totalFee = liquidityFee.add(rewardsFee) (#509)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#510)
Emit an event for critical parameter changes.
Additional information: link
SHIBAHEXPULSE2.changeFeeReceivers(address).newLiquidityReceiver (#513) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#514)
Check that the address is not zero.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#177-192):
External calls:
- distributeDividend(shareholder) (#180)
- RewardToken.transfer(shareholder,amount) (#249)
State variables written after the call(s):
- addShareholder(shareholder) (#184)
- shareholderIndexes[shareholder] = shareholders.length (#278)
- removeShareholder(shareholder) (#186)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#284)
- addShareholder(shareholder) (#184)
- shareholders.push(shareholder) (#279)
- removeShareholder(shareholder) (#186)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#283)
- shareholders.pop() (#285)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#189)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SHIBAHEXPULSE2.swapBack() (#615-654):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#625-631)
- dividendDistributor.deposit{value: amountBNBReflection}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#644-651)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#644-651)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#652)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#238-241) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#239-240)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#214-236) has costly operations inside a loop:
- currentIndex ++ (#233)
Use a local variable to hold the loop computation result.
Additional information: link
SHIBAHEXPULSE2.swapThreshold (#400) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 5 / 4000
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
Variable SHIBAHEXPULSE2._allowances (#372) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#72) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#73)
Prevent variables from having similar names.
Additional information: link
SHIBAHEXPULSE2.slitherConstructorVariables() (#352-659) uses literals with too many digits:
- distributorGas = 500000 (#394)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SHIBAHEXPULSE2.RewardToken (#363) is never used in SHIBAHEXPULSE2 (#352-659)
Remove unused state variables.
Additional information: link
SHIBAHEXPULSE2.routerAddress (#362) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
tradingStatus(bool) should be declared external:
- SHIBAHEXPULSE2.tradingStatus(bool) (#611-613)
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
Token was delisted (assigned to inactive / untracked listing) from 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 verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter 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
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account