Batshit Crazy Token Logo

BSCrazy [Batshit Crazy] Token

About BSCrazy

Listings

Not Found
Token 18 months

Batshit Crazy is a rewards token that distributes HODL Rewards to holders in their choice Of token from a curated list of New Projects, Micro Caps, Mid Caps And Blue Chip Tokens selected by the colony!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

BatshitCrazyDividendTracker._reinvestDividendOfUser(address) (#2490-2544) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: _withdrawableDividend}(0,path,address(this),block.timestamp) (#2509-2531)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BatshitCrazy.forceSwapAndSendDividends(uint256) (#2094-2103):
External calls:
- swapAndSendDividends(tokens) (#2099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2047-2053)
- (success) = address(dividendTracker).call{value: dividends}() (#2125)
- (successOp1) = address(operations1Address).call{value: half}() (#2130)
- (successOp2) = address(operations2Address).call{value: otherHalf}() (#2132-2134)
External calls sending eth:
- swapAndSendDividends(tokens) (#2099)
- (success) = address(dividendTracker).call{value: dividends}() (#2125)
- (successOp1) = address(operations1Address).call{value: half}() (#2130)
- (successOp2) = address(operations2Address).call{value: otherHalf}() (#2132-2134)
State variables written after the call(s):
- buyAmount = buyAmount.sub(fromBuy) (#2101)
- sellAmount = sellAmount.sub(fromSell) (#2102)
Apply the check-effects-interactions pattern.

Additional information: link

BatshitCrazyDividendTracker._reinvestDividendOfUser(address) (#2490-2544) ignores return value by batshitCrazy.transfer(account,received) (#2525)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


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.

BatshitCrazy.swapAndSendDividends(uint256) (#2105-2141) performs a multiplication on the result of a division:
-dividendsFromSell = address(this).balance.mul(sellAmount).div(totalAmount).mul(BNBRewardsSellFee).div(BNBRewardsSellFee.add(operationsFees)) (#2116-2121)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in BatshitCrazy.updateDividendTracker(address) (#1641-1658):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1650)
- newDividendTracker.excludeFromDividends(address(this)) (#1651)
- newDividendTracker.excludeFromDividends(owner()) (#1652)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1653)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1657)
Apply the check-effects-interactions pattern.

Additional information: link

BatshitCrazy._transfer(address,address,uint256).lastProcessedIndex (#1987) 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

BatshitCrazy.addLiquidity(uint256,uint256) (#2079-2092) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2084-2091)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._symbol (#1231) shadows:
- ERC20._symbol (#336) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BatshitCrazy.forceSwapAndSendDividends(uint256) (#2094-2103) should emit an event for:
- buyAmount = buyAmount.sub(fromBuy) (#2101)
- sellAmount = sellAmount.sub(fromSell) (#2102)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#880) lacks a zero-check on :
- _owner = msgSender (#881)
Check that the address is not zero.

Additional information: link

Variable 'BatshitCrazy._transfer(address,address,uint256).lastProcessedIndex (#1987)' in BatshitCrazy._transfer(address,address,uint256) (#1879-2004) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1989-1996)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in BatshitCrazy.swapAndLiquify(uint256) (#2015-2036):
External calls:
- swapTokensForEth(half) (#2027)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2047-2053)
- addLiquidity(otherHalf,newBalance) (#2033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2084-2091)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#2033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#2084-2091)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#2033)
- _allowances[owner][spender] = amount (#633)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BatshitCrazy.updatePayoutToken(address) (#2056-2062):
External calls:
- dividendTracker.updatePayoutToken(msg.sender,token) (#2060)
Event emitted after the call(s):
- UpdatePayoutToken(msg.sender,token) (#2061)
Apply the check-effects-interactions pattern.

Additional information: link

BatshitCrazy._transfer(address,address,uint256) (#1879-2004) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(tradingEnabled || canTransferBeforeTradingIsEnabled[from] || block.timestamp >= forceStartTradingAt,Trading has not yet been enabled) (#1886-1889)
- require(bool,string)(stakingUntilDate[from] <= block.timestamp,Tokens are staked and locked!) (#1900-1903)
- stakingUntilDate[from] != 0 (#1904)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#933-940) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.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 BatshitCrazyDividendTracker._withdrawDividendOfUser(address) (#2546-2606):
- (success,None) = user.call{gas: 3000,value: _withdrawableDividend}() (#2566-2569)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BatshitCrazyDividendTracker.getAccount(address)._account (#2284) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable BatshitCrazyDividendTracker._withdrawDividendOfUser(address)._withdrawableDividend (#2551) is too similar to BatshitCrazyDividendTracker.getAccount(address).withdrawableDividends (#2291)
Prevent variables from having similar names.

Additional information: link

BatshitCrazyDividendTracker.getAccountAtIndex(uint256) (#2325-2351) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0) (#2338-2345)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#928) is never used in SafeMathInt (#926-983)
Remove unused state variables.

Additional information: link

BatshitCrazy.swapTokensAtAmount (#1441) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getAllowTokens(address) should be declared external:
- BatshitCrazyDividendTracker.getAllowTokens(address) (#2486-2488)
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.


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.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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 scam / 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

Price for BSCrazy