Breakout Token Logo

Break [Breakout] Token

ALERT: unclassified scam

About Break

Listings

Token 4 years
CoinGecko 4 years
white paper

Breakout is a project made in conjunction with the opinion of the community, which is why we are working to restructure the game and bring out a quality product for everyone, because they deserve it. We as developers are always going to look for the best option for you, that's why we have decided to reformulate the gameplay of Breakout. The goal of the project, which is: To be a game that allows you to have fun and generate income by doing so

The official governance token is the "" BREAK"". This will be used to mint NFTs, trade in the marketplace, bet in the arcade or receive earnings through the conversion of medals.

Social

Laser Scorebeta Last Audit: 28 April 2022

report
Token seems to be a scam (type: unclassified scam).

Anti-Scam

Links

Breakout._owner (#417) shadows:
- Ownable._owner (#71)
Remove the state variable shadowing.

Additional information: link

Breakout.Remit(address,uint256,address) (#552-558) ignores return value by IBEP20(token).transfer(_wallet,amount) (#556)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Contract creator or owner is blacklisted for past scams


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


Contract ownership is not renounced (belongs to a wallet)

Address.isContract(address) (#150-156) is never used and should be removed
SafeBEP20.callOptionalReturn(IBEP20,bytes) (#177-188) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (#171-176) is never used and should be removed
SafeBEP20.safeTransfer(IBEP20,address,uint256) (#163-165) is never used and should be removed
SafeBEP20.safeTransferFrom(IBEP20,address,address,uint256) (#167-169) is never used and should be removed
SafeMath.div(uint256,uint256) (#49-51) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#52-58) is never used and should be removed
SafeMath.mul(uint256,uint256) (#39-48) is never used and should be removed
SafeMath.sub(uint256,uint256) (#30-32) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.11 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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 SafeBEP20.callOptionalReturn(IBEP20,bytes) (#177-188):
- (success,returndata) = address(token).call(data) (#181)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Breakout.press(uint256) (#467-470) should emit an event for:
- sellTimeLimit = _time (#469)
Emit an event for critical parameter changes.

Additional information: link

Breakout.Remit(address,uint256,address)._wallet (#552) lacks a zero-check on :
- address(_wallet).transfer(amount) (#554)
Check that the address is not zero.

Additional information: link

Reentrancy in Breakout.constructor() (#419-434):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#427-428)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#431)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Breakout.constructor() (#419-434):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#427-428)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#433)
Apply the check-effects-interactions pattern.

Additional information: link

Breakout._transfer(address,address,uint256) (#500-537) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= lastSellTime[sender] + sellTimeLimit,Sell time has not reached) (#514)
- require(bool,string)(block.timestamp >= lastSellTime[sender] + sellTimeLimit,Sell time has not reached) (#529)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#150-156) uses assembly
- INLINE ASM (#154)
Do not use evm assembly.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#223) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#224) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#241) is not in mixedCase
Function IUniswapV2Router01.WETH() (#263) is not in mixedCase
Parameter Breakout.press(uint256)._time (#467) is not in mixedCase
Function Breakout._lastSellTime(address) (#472-475) is not in mixedCase
Parameter Breakout.checkExitsAddress(address)._pairAdd (#487) is not in mixedCase
Parameter Breakout.addPairs(address)._pair (#547) is not in mixedCase
Function Breakout.Remit(address,uint256,address) (#552-558) is not in mixedCase
Parameter Breakout.Remit(address,uint256,address)._wallet (#552) is not in mixedCase
Variable Breakout._owner (#417) is not in mixedCase
Variable Breakout._balances (#408) is not in mixedCase
Variable Breakout._allowances (#409) is not in mixedCase
Variable Breakout._pairs (#412) is not in mixedCase
Variable Breakout._totalSupply (#413) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#268) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#269)
Prevent variables from having similar names.

Additional information: link

Breakout.constructor() (#419-434) uses literals with too many digits:
- _totalSupply = 10000000000 * (10 ** 18) (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

owner() should be declared external:
- Ownable.owner() (#87-89)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#106-109)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#115-119)
name() should be declared external:
- BEP20Detailed.name() (#136-138)
symbol() should be declared external:
- BEP20Detailed.symbol() (#139-141)
decimals() should be declared external:
- BEP20Detailed.decimals() (#142-144)
totalSupply() should be declared external:
- Breakout.totalSupply() (#436-438)
balanceOf(address) should be declared external:
- Breakout.balanceOf(address) (#439-441)
transfer(address,uint256) should be declared external:
- Breakout.transfer(address,uint256) (#442-445)
allowance(address,address) should be declared external:
- Breakout.allowance(address,address) (#446-448)
approve(address,uint256) should be declared external:
- Breakout.approve(address,uint256) (#449-452)
transferFrom(address,address,uint256) should be declared external:
- Breakout.transferFrom(address,address,uint256) (#453-457)
increaseAllowance(address,uint256) should be declared external:
- Breakout.increaseAllowance(address,uint256) (#458-461)
decreaseAllowance(address,uint256) should be declared external:
- Breakout.decreaseAllowance(address,uint256) (#462-465)
addPairs(address) should be declared external:
- Breakout.addPairs(address) (#547-550)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find Telegram 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 is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Young tokens have high risks of scam / 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 CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Break

News for Break