BullishApes Token Logo

BULLISH [BullishApes] Token

About BULLISH

Listings

Token 2 years
white paper

$BullishApes is the first token on BSC network with 26% BUSD rewards. Don't choose tokens with smaller dividends when you can get more. Here we have doxxed and active team, transparent actions, lifetime promotions from our partners and the BULLISH growth. Stay bullish with us.

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

BullishApes.swapBack() (#608-657) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BullishApes._transferFrom(address,address,uint256) (#543-584):
External calls:
- swapBack() (#553)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#618-624)
- dividendDistributor.deposit{value: amountBNBReflection}() (#634)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#647-654)
External calls sending eth:
- swapBack() (#553)
- dividendDistributor.deposit{value: amountBNBReflection}() (#634)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#647-654)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#561)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#569)
- finalAmount = takeFee(sender,recipient,amount) (#568)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#598)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#236-247) ignores return value by RewardToken.transfer(shareholder,amount) (#242)
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

BullishApes.swapBack().tmpSuccess1 (#640) is written in both
(tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
tmpSuccess1 = false (#644)
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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#170-185):
External calls:
- distributeDividend(shareholder) (#173)
- RewardToken.transfer(shareholder,amount) (#242)
State variables written after the call(s):
- shares[shareholder].amount = amount (#183)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#184)
Apply the check-effects-interactions pattern.

Additional information: link

BullishApes.swapBack() (#608-657) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#647-654)
Ensure that all the return values of the function calls are used.

Additional information: link

BullishApes.changeFees(uint256,uint256,uint256,uint256) (#500-508) should emit an event for:
- liquidityFee = newLiqFee (#501)
- rewardsFee = newRewardFee (#502)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#506)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#507)
Emit an event for critical parameter changes.

Additional information: link

BullishApes.changeFeeReceivers(address,address,address).newDevWallet (#510) lacks a zero-check on :
- devWallet = newDevWallet (#513)
Check that the address is not zero.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#170-185):
External calls:
- distributeDividend(shareholder) (#173)
- RewardToken.transfer(shareholder,amount) (#242)
State variables written after the call(s):
- addShareholder(shareholder) (#177)
- shareholderIndexes[shareholder] = shareholders.length (#271)
- removeShareholder(shareholder) (#179)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#277)
- addShareholder(shareholder) (#177)
- shareholders.push(shareholder) (#272)
- removeShareholder(shareholder) (#179)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#276)
- shareholders.pop() (#278)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#182)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BullishApes.swapBack() (#608-657):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#618-624)
- dividendDistributor.deposit{value: amountBNBReflection}() (#634)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#647-654)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#634)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#647-654)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#655)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#231-234) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#232-233)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#207-229) has costly operations inside a loop:
- currentIndex ++ (#226)
Use a local variable to hold the loop computation result.

Additional information: link

Pragma version^0.7.4 (#6) 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 BullishApes.swapBack() (#608-657):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#639)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#640)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable BullishApes._allowances (#365) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#70) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#71)
Prevent variables from having similar names.

Additional information: link

BullishApes.slitherConstructorVariables() (#345-662) uses literals with too many digits:
- distributorGas = 500000 (#390)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BullishApes.RewardToken (#356) is never used in BullishApes (#345-662)
Remove unused state variables.

Additional information: link

DividendDistributor.routerAddress (#130) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

tradingStatus(bool) should be declared external:
- BullishApes.tradingStatus(bool) (#604-606)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find whitepaper link on the website


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for BULLISH