Thunder Brawl P2E economy revolves around $THB, and Royalty NFTs card. Choose fun & simple ways to profit for yourself!
There are currently two games in the ecosystem: Dystopian and Thunder Roulette.
Players can earn a handsome income by just playing these games and completing the challenges.
We are struggling hard to introduce new games as early as possible to enhance the user experience of the platform.
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1161-1210):
External calls:
- swapForMarketingFee(contractTokenBalance) (#1189)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1221-1227)
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
External calls sending eth:
- swapForMarketingFee(contractTokenBalance) (#1189)
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1206)
- _balances[sender] = senderBalance - amount (#827)
- _balances[recipient] += amount (#829)
- super._transfer(from,to,amount) (#1209)
- _balances[sender] = senderBalance - amount (#827)
- _balances[recipient] += amount (#829)
- swapping = false (#1191)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Low level call in ERC20DividendToken.swapForMarketingFee(uint256) (#1230-1241):
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
ERC20DividendToken.constructor(string,string,uint256,address,address).marketingAddress_ (#1075) lacks a zero-check on :
- marketingAddress = marketingAddress_ (#1078)
ERC20DividendToken.setMarketingWallet(address).wallet (#1127) lacks a zero-check on :
- marketingAddress = wallet (#1128)
Check that the address is not zero.
Additional information: link
Reentrancy in ERC20DividendToken._updateUniswapV2Router(address) (#1099-1108):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1101-1102)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1105)
- automatedMarketMakerPairs[pair] = value (#1152)
- uniswapV2Pair = _uniswapV2Pair (#1104)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address) (#1075-1091):
External calls:
- _updateUniswapV2Router(routerV2_) (#1082)
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1101-1102)
State variables written after the call(s):
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1090)
- _balances[account] += amount (#851)
- excludeFromFees(owner(),true) (#1084)
- _isExcludedFromFees[account] = excluded (#1111)
- excludeFromFees(address(this),true) (#1085)
- _isExcludedFromFees[account] = excluded (#1111)
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1090)
- _totalSupply += amount (#850)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ERC20DividendToken._transfer(address,address,uint256) (#1161-1210):
External calls:
- swapForMarketingFee(contractTokenBalance) (#1189)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1221-1227)
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
External calls sending eth:
- swapForMarketingFee(contractTokenBalance) (#1189)
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#831)
- super._transfer(from,address(this),fees) (#1206)
- Transfer(sender,recipient,amount) (#831)
- super._transfer(from,to,amount) (#1209)
Reentrancy in ERC20DividendToken._updateUniswapV2Router(address) (#1099-1108):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1101-1102)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1154)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1105)
- UpdateUniswapV2Router(newAddress) (#1107)
Reentrancy in ERC20DividendToken.constructor(string,string,uint256,address,address) (#1075-1091):
External calls:
- _updateUniswapV2Router(routerV2_) (#1082)
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1101-1102)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1113)
- excludeFromFees(owner(),true) (#1084)
- ExcludeFromFees(account,excluded) (#1113)
- excludeFromFees(address(this),true) (#1085)
- Transfer(address(0),account,amount) (#852)
- _mint(owner(),totalSupply_ * (10 ** 18)) (#1090)
Reentrancy in ERC20DividendToken.swapForMarketingFee(uint256) (#1230-1241):
External calls:
- swapTokensForEth(tokens) (#1233)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1221-1227)
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
External calls sending eth:
- (success) = address(marketingAddress).call{value: dividends}() (#1236)
Event emitted after the call(s):
- SendDividendsToMarketing(tokens,dividends) (#1239)
Apply the check-effects-interactions pattern.
Additional information: link
Different versions of Solidity is used:
- Version used: ['=0.8.7', '>=0.5.0', '>=0.6.2', '^0.8.0']
- >=0.6.2 (#4)
- >=0.6.2 (#102)
- >=0.5.0 (#148)
- >=0.5.0 (#203)
- ^0.8.0 (#226)
- ^0.8.0 (#456)
- ^0.8.0 (#541)
- ^0.8.0 (#571)
- ^0.8.0 (#598)
- ^0.8.0 (#956)
- =0.8.7 (#1033)
Use one Solidity version.
Additional information: link
Context._msgData() (#588-590) is never used and should be removed
ERC20._burn(address,uint256) (#868-883) is never used and should be removed
SafeMath.add(uint256,uint256) (#315-317) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#413-422) is never used and should be removed
SafeMath.mod(uint256,uint256) (#373-375) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#439-448) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#390-399) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#244-250) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#286-291) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#298-303) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#269-279) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#257-262) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version>=0.6.2 (#4) allows old versions
Pragma version>=0.6.2 (#102) allows old versions
Pragma version>=0.5.0 (#148) allows old versions
Pragma version>=0.5.0 (#203) allows old versions
Pragma version^0.8.0 (#226) allows old versions
Pragma version^0.8.0 (#456) allows old versions
Pragma version^0.8.0 (#541) allows old versions
Pragma version^0.8.0 (#571) allows old versions
Pragma version^0.8.0 (#598) allows old versions
Pragma version^0.8.0 (#956) 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
Function IUniswapV2Router01.WETH() (#8) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#165) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#166) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#183) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#13) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#14)
Variable ERC20._totalSupply (#633) is too similar to ERC20DividendToken.constructor(string,string,uint256,address,address).totalSupply_ (#1075)
Variable Thunderbrawl._marketingAddress (#1256) is too similar to ERC20DividendToken.constructor(string,string,uint256,address,address).marketingAddress_ (#1075)
Prevent variables from having similar names.
Additional information: link
Thunderbrawl._marketingAddress (#1256) should be constant
Thunderbrawl._routerAddress (#1254) should be constant
Thunderbrawl._tokenSupply (#1246) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (#655-657)
symbol() should be declared external:
- ERC20.symbol() (#663-665)
decimals() should be declared external:
- ERC20.decimals() (#680-682)
totalSupply() should be declared external:
- ERC20.totalSupply() (#687-689)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#706-709)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#714-716)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#725-728)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#743-757)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#771-774)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#790-798)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1005-1007)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1013-1016)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- ERC20DividendToken.excludeMultipleAccountsFromFees(address[],bool) (#1116-1125)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- ERC20DividendToken.setAutomatedMarketMakerPair(address,bool) (#1135-1145)
isExcludedFromFees(address) should be declared external:
- ERC20DividendToken.isExcludedFromFees(address) (#1157-1159)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
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
Token is not listed at Mobula.Finance
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Unable to find Youtube account
Unable to find Discord account