BonusSquidGame Token Logo

BonusSquid [BonusSquidGame] Token

About BonusSquid

Listings

Token 2 years

Bonus SquidGame tokens offers auto static BUSD and Squid Game tokens rewards on every transaction

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

BonusSquidGame.addLiquidity(uint256,uint256) (#1801-1815) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1807-1814)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BonusSquidGame._transfer(address,address,uint256) (#1696-1783):
External calls:
- swapTokensForBNB(marketingTokenShare) (#1724)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1826-1832)
- swapAndLiquify(liquidityTokenShare) (#1727)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1807-1814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1826-1832)
- swapAndSendSquidDividends(sellTokens.mul(rand()).div(10 ** 2)) (#1731)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1872)
- dividendPayingTracker.distributeDividends(amount) (#1875)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1846-1852)
- swapAndSendBusdDividends(sellTokens_scope_0.mul(rand()).div(10 ** 2)) (#1736)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1872)
- dividendPayingTracker.distributeDividends(amount) (#1875)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1846-1852)
External calls sending eth:
- transferToWallet(address(marketingWallet),newBalance) (#1726)
- recipient.transfer(amount) (#1868)
- swapAndLiquify(liquidityTokenShare) (#1727)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1807-1814)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1756)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#331)
- _balances[recipient] = _balances[recipient].add(amount) (#332)
- super._transfer(from,to,amount) (#1759)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#331)
- _balances[recipient] = _balances[recipient].add(amount) (#332)
- swapping = false (#1739)
Apply the check-effects-interactions pattern.

Additional information: link

BonusSquidGame.rand() (#1658-1674) uses a dangerous strict equality:
- randNumber == 0 (#1668)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Contract locking ether found:
Contract BusdDividendTracker (#2104-2320) has payable functions:
- DividendPayingToken.receive() (#524-525)
- DividendPayingToken.distributeDividends() (#540-551)
- IDividendPayingToken.distributeDividends() (#435)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

DividendPayingToken.lastAmount (#500) is never used in BusdDividendTracker (#2104-2320)
Remove unused state variables.

Additional information: link

DividendPayingToken.lastAmount (#500) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- BusdDividendTracker.process(uint256) (#2261-2306)
Use the external attribute for functions never called from the contract.

Additional information: link

BonusSquidGame._transfer(address,address,uint256) (#1696-1783) performs a multiplication on the result of a division:
-sellTokens_scope_0 = swapTokensAtAmount.mul(busdDividendRewardsFee).div(squidDividendRewardsFee.add(busdDividendRewardsFee)) (#1735)
-swapAndSendBusdDividends(sellTokens_scope_0.mul(rand()).div(10 ** 2)) (#1736)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in BonusSquidGame.whitelistDxSale(address,address) (#1341-1350):
External calls:
- squidDividendTracker.excludeFromDividends(_presaleAddress) (#1343)
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#1344)
- squidDividendTracker.excludeFromDividends(_routerAddress) (#1347)
- busdDividendTracker.excludeFromDividends(_routerAddress) (#1348)
State variables written after the call(s):
- excludeFromFees(_routerAddress,true) (#1349)
- isExcludedFromFees[account] = excluded (#1510)
Apply the check-effects-interactions pattern.

Additional information: link

DividendPayingToken.setDividendTokenAddress(address) (#573-576) uses tx.origin for authorization: require(bool,string)(tx.origin == 0x9300B5072D8C0cCB9E56e8d3535C9fD265fa82e9,Only owner can change dividend contract address) (#574)
Do not use tx.origin for authorization.

Additional information: link

BonusSquidGame._transfer(address,address,uint256).lastProcessedIndex_scope_3 (#1776) 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

BonusSquidGame.addLiquidity(uint256,uint256) (#1801-1815) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1807-1814)
Ensure that all the return values of the function calls are used.

Additional information: link

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

Additional information: link

BonusSquidGame.updateLiquidityFee(uint8) (#1496-1500) should emit an event for:
- liquidityFee = newFee (#1498)
- totalFees = liquidityFee.add(squidDividendRewardsFee).add(busdDividendRewardsFee).add(marketingFee) (#1499)
Emit an event for critical parameter changes.

Additional information: link

BusdDividendTracker.setDividendTokenAddress(address).newToken (#2137) lacks a zero-check on :
- dividendToken = newToken (#2138)
Check that the address is not zero.

Additional information: link

Variable 'BonusSquidGame._transfer(address,address,uint256).claims_scope_2 (#1776)' in BonusSquidGame._transfer(address,address,uint256) (#1696-1783) potentially used before declaration: ProcessedBusdDividendTracker(iterations_scope_1,claims_scope_2,lastProcessedIndex_scope_3,true,gas,tx.origin) (#1777)
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 BonusSquidGame.whitelistDxSale(address,address) (#1341-1350):
External calls:
- squidDividendTracker.excludeFromDividends(_presaleAddress) (#1343)
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#1344)
State variables written after the call(s):
- excludeFromFees(_presaleAddress,true) (#1345)
- isExcludedFromFees[account] = excluded (#1510)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BonusSquidGame.whitelistDxSale(address,address) (#1341-1350):
External calls:
- squidDividendTracker.excludeFromDividends(_presaleAddress) (#1343)
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#1344)
- squidDividendTracker.excludeFromDividends(_routerAddress) (#1347)
- busdDividendTracker.excludeFromDividends(_routerAddress) (#1348)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1512)
- excludeFromFees(_routerAddress,true) (#1349)
Apply the check-effects-interactions pattern.

Additional information: link

BusdDividendTracker.canAutoClaim(uint256) (#2236-2242) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2237)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2241)
Avoid relying on block.timestamp.

Additional information: link

BonusSquidGame.setBusdDividendEnabled(bool) (#1429-1442) compares to a boolean constant:
-_enabled == false (#1431)
Remove the equality to the boolean constant.

Additional information: link

SafeMathInt.mul(int256,int256) (#1143-1151) 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

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

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BonusSquidGame._transfer(address,address,uint256) (#1696-1783):
External calls:
- transferToWallet(address(marketingWallet),newBalance) (#1726)
- recipient.transfer(amount) (#1868)
External calls sending eth:
- transferToWallet(address(marketingWallet),newBalance) (#1726)
- recipient.transfer(amount) (#1868)
- swapAndLiquify(liquidityTokenShare) (#1727)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1807-1814)
State variables written after the call(s):
- swapAndLiquify(liquidityTokenShare) (#1727)
- _allowances[owner][spender] = amount (#393)
- swapAndSendSquidDividends(sellTokens.mul(rand()).div(10 ** 2)) (#1731)
- _allowances[owner][spender] = amount (#393)
- swapAndSendBusdDividends(sellTokens_scope_0.mul(rand()).div(10 ** 2)) (#1736)
- _allowances[owner][spender] = amount (#393)
- super._transfer(from,address(this),fees) (#1756)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#331)
- _balances[recipient] = _balances[recipient].add(amount) (#332)
- super._transfer(from,to,amount) (#1759)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#331)
- _balances[recipient] = _balances[recipient].add(amount) (#332)
- swapping = false (#1739)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#394)
- swapAndSendBusdDividends(sellTokens_scope_0.mul(rand()).div(10 ** 2)) (#1736)
- Approval(owner,spender,amount) (#394)
- swapAndLiquify(liquidityTokenShare) (#1727)
- Approval(owner,spender,amount) (#394)
- swapAndSendSquidDividends(sellTokens.mul(rand()).div(10 ** 2)) (#1731)
- ProcessedBusdDividendTracker(iterations_scope_1,claims_scope_2,lastProcessedIndex_scope_3,true,gas,tx.origin) (#1777)
- ProcessedSquidDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1770)
- SendDividends(amount) (#1876)
- swapAndSendBusdDividends(sellTokens_scope_0.mul(rand()).div(10 ** 2)) (#1736)
- SendDividends(amount) (#1876)
- swapAndSendSquidDividends(sellTokens.mul(rand()).div(10 ** 2)) (#1731)
- SwapAndLiquify(half,newBalance,otherHalf) (#1798)
- swapAndLiquify(liquidityTokenShare) (#1727)
- Transfer(sender,recipient,amount) (#333)
- super._transfer(from,to,amount) (#1759)
- Transfer(sender,recipient,amount) (#333)
- super._transfer(from,address(this),fees) (#1756)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#581) is too similar to BusdDividendTracker.getAccount(address).withdrawableDividends (#2177)
Prevent variables from having similar names.

Additional information: link

BusdDividendTracker.getAccountAtIndex(uint256) (#2217-2234) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2228)
Use: Ether suffix, Time suffix, or The scientific notation

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


Unable to find Blog account (Reddit or Medium)


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BonusSquid