Shiba Astro (SHIBAA ) is a new BSC mem . It is aiming to benefit holders by providing them with $SHIB reflections on every transaction , their team members are located around the world and are connected through the community .
💠 Token Name: Shiba Astro
🔍 Symbol = $SHIBAA
✅ Total Supply: 1,000,000,000,000
🔐 Liquidity Locked 100% for 3 Months
💠 BSC Contract Verified.
📍 No Presales
📍 Slippage: 14%
⚖️ Tokenomics
💰 Total Supply: 5,000,000,000
❇️ 9 % Marketing
✅ 1 % Developers ( Token Locked for 12 Months )
❇️ 5 % Partnerships & Exchanges ( Token Locked for 3 Months )
💠 Marketing Plan :
🐦 Crypto Twiter Influencers
💩 Poocoin ads
❇️ Top CoinVote Website
Big Rewards
🏆 12% automatically Rewarded ( BNB-Pegged Shiba Inu )
🏆highest $SHIB reflection rewards on the BSC
🔗 Telegram : https://t.me/shibaastro
🐦 Twiter : https://twitter.com/shibaastrotoken
🌐 Website: https://shibaastro.com
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in ShibaAstro._transferTokens(address,address,uint256) (#479-515):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#549-555)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
External calls sending eth:
- swapBack() (#489)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
State variables written after the call(s):
- _balances[sender] = _balances[sender] - amount (#497)
- _balances[recipient] = _balances[recipient] + (finalAmount) (#500)
- finalAmount = takeFee(sender,recipient,amount) (#499)
- _balances[address(this)] = _balances[address(this)] + (feeAmount) (#529)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#196-207) ignores return value by RewardToken.transfer(shareholder,amount) (#202)
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.
DividendDistributor.setDistributionCriteria(uint256,uint256) (#125-128) should emit an event for:
- minPeriod = newMinPeriod (#126)
- minDistribution = newMinDistribution (#127)
ShibaAstro.changeFees(uint256,uint256,uint256) (#440-447) should emit an event for:
- liquidityFee = newLiqFee (#441)
- rewardsFee = newRewardFee (#442)
- extraFeeOnSell = newExtraSellFee (#443)
- totalFee = liquidityFee + (rewardsFee) (#445)
- totalFeeIfSelling = totalFee + (extraFeeOnSell) (#446)
Emit an event for critical parameter changes.
Additional information: link
Function IDEXRouter.WETH() (#27) is not in mixedCase
Variable DividendDistributor._token (#81) is not in mixedCase
Variable DividendDistributor.RewardToken (#91) is not in mixedCase
Constant ShibaAstro._name (#307) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaAstro._symbol (#308) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShibaAstro._decimals (#309) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ShibaAstro.DEAD (#311) is not in mixedCase
Variable ShibaAstro.ZERO (#312) is not in mixedCase
Variable ShibaAstro.RewardToken (#314) is not in mixedCase
Variable ShibaAstro.MAX_INT (#316) is not in mixedCase
Variable ShibaAstro._totalSupply (#318) is not in mixedCase
Variable ShibaAstro._maxTxAmount (#319) is not in mixedCase
Variable ShibaAstro._walletMax (#320) is not in mixedCase
Variable ShibaAstro._balances (#324) is not in mixedCase
Variable ShibaAstro._allowances (#325) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
ShibaAstro.RewardToken (#314) is never used in ShibaAstro (#305-583)
Remove unused state variables.
Additional information: link
DividendDistributor.distributeDividend(address) (#196-207) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#202)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#196-207):
External calls:
- RewardToken.transfer(shareholder,amount) (#202)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised + (amount) (#204)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#205)
Reentrancy in DividendDistributor.process(uint256) (#167-189):
External calls:
- distributeDividend(shareholders[currentIndex]) (#181)
- RewardToken.transfer(shareholder,amount) (#202)
State variables written after the call(s):
- currentIndex ++ (#186)
Reentrancy in DividendDistributor.setShare(address,uint256) (#130-145):
External calls:
- distributeDividend(shareholder) (#133)
- RewardToken.transfer(shareholder,amount) (#202)
State variables written after the call(s):
- shares[shareholder].amount = amount (#143)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#144)
Apply the check-effects-interactions pattern.
Additional information: link
ShibaAstro.swapBack() (#539-578) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Ensure that all the return values of the function calls are used.
Additional information: link
Auth.transferOwnership(address).adr (#296) lacks a zero-check on :
- owner = adr (#297)
ShibaAstro.changeFeeReceivers(address).newLiquidityReceiver (#449) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#450)
Check that the address is not zero.
Additional information: link
Reentrancy in ShibaAstro.constructor() (#359-382):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#362)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = MAX_INT (#363)
- _balances[msg.sender] = _totalSupply (#380)
- dividendDistributor = new DividendDistributor(address(router)) (#365)
- isDividendExempt[pair] = true (#374)
- isDividendExempt[msg.sender] = true (#375)
- isDividendExempt[address(this)] = true (#376)
- isDividendExempt[DEAD] = true (#377)
- isDividendExempt[ZERO] = true (#378)
- isFeeExempt[msg.sender] = true (#367)
- isFeeExempt[address(this)] = true (#368)
- isTxLimitExempt[msg.sender] = true (#370)
- isTxLimitExempt[pair] = true (#371)
- isTxLimitExempt[owner] = true (#372)
Reentrancy in DividendDistributor.deposit() (#147-165):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#155-160)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare + (dividendsPerShareAccuracyFactor * (amount) / (totalShares)) (#164)
- totalDividends = totalDividends + (amount) (#163)
Reentrancy in DividendDistributor.distributeDividend(address) (#196-207):
External calls:
- RewardToken.transfer(shareholder,amount) (#202)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#203)
Reentrancy in DividendDistributor.setShare(address,uint256) (#130-145):
External calls:
- distributeDividend(shareholder) (#133)
- RewardToken.transfer(shareholder,amount) (#202)
State variables written after the call(s):
- addShareholder(shareholder) (#137)
- shareholderIndexes[shareholder] = shareholders.length (#231)
- removeShareholder(shareholder) (#139)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#237)
- addShareholder(shareholder) (#137)
- shareholders.push(shareholder) (#232)
- removeShareholder(shareholder) (#139)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#236)
- shareholders.pop() (#238)
- totalShares = totalShares - (shares[shareholder].amount) + (amount) (#142)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ShibaAstro._transferTokens(address,address,uint256) (#479-515):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#549-555)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
- dividendDistributor.setShare(sender,_balances[sender]) (#504)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#508)
- dividendDistributor.process(distributorGas) (#511)
External calls sending eth:
- swapBack() (#489)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#513)
Reentrancy in ShibaAstro._transferTokens(address,address,uint256) (#479-515):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#549-555)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
External calls sending eth:
- swapBack() (#489)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#530)
- finalAmount = takeFee(sender,recipient,amount) (#499)
Reentrancy in ShibaAstro.constructor() (#359-382):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#362)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#381)
Reentrancy in ShibaAstro.swapBack() (#539-578):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#549-555)
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#564)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#568-575)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#576)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#191-194) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#192-193)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#167-189) has costly operations inside a loop:
- currentIndex = 0 (#178)
DividendDistributor.distributeDividend(address) (#196-207) has costly operations inside a loop:
- totalDistributed = totalDistributed + (amount) (#201)
DividendDistributor.process(uint256) (#167-189) has costly operations inside a loop:
- currentIndex ++ (#186)
Use a local variable to hold the loop computation result.
Additional information: link
ShibaAstro._maxTxAmount (#319) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 2 / 200
ShibaAstro._walletMax (#320) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 3 / 100
ShibaAstro.totalFee (#335) is set pre-construction with a non-constant function or state variable:
- liquidityFee + rewardsFee
ShibaAstro.totalFeeIfSelling (#336) is set pre-construction with a non-constant function or state variable:
- totalFee + extraFeeOnSell
ShibaAstro.swapThreshold (#351) 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 IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#32) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#33)
Prevent variables from having similar names.
Additional information: link
ShibaAstro.slitherConstructorVariables() (#305-583) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#311)
ShibaAstro.slitherConstructorVariables() (#305-583) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#312)
ShibaAstro.slitherConstructorVariables() (#305-583) uses literals with too many digits:
- distributorGas = 500000 (#346)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#102) should be constant
DividendDistributor.routerAddress (#90) should be constant
ShibaAstro.DEAD (#311) should be constant
ShibaAstro.MAX_INT (#316) should be constant
ShibaAstro.RewardToken (#314) should be constant
ShibaAstro.ZERO (#312) should be constant
ShibaAstro._totalSupply (#318) should be constant
ShibaAstro.routerAddress (#313) 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) (#268-270)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#275-277)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#296-300)
getCirculatingSupply() should be declared external:
- ShibaAstro.getCirculatingSupply() (#392-394)
tradingStatus(bool) should be declared external:
- ShibaAstro.tradingStatus(bool) (#535-537)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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
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
Telegram account has relatively few subscribers
Last post in Twitter was more than 30 days ago
Unable to find Discord account
Twitter account has few posts