GameBox Token Logo

GameBox Token

About GameBox

Listings

Token 2 years

GameBox is a defi+ comprehensive platform dedicated to integrating blockchain games, trading markets and providing comprehensive cryptocurrency services.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

Reentrancy in GameBox._transfer(address,address,uint256) (#1071-1121):
External calls:
- swapTokens(contractTokenBalance) (#1098)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1156-1162)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1098)
- recipient.transfer(amount) (#1245)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1116)
- _liquidityFee = _previousLiquidityFee (#1055)
- _liquidityFee = 0 (#1050)
- _tokenTransfer(from,to,amount,takeFee) (#1116)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1011)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1204)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1213)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1224)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1205)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#898)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1215)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1225)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#1116)
- _rTotal = _rTotal.sub(rFee) (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1116)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1013)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#897)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1223)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1214)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#899)
Apply the check-effects-interactions pattern.

Additional information: link

GameBox.swapTokens(uint256) (#1231-1242) performs a multiplication on the result of a division:
-transferToAddressETH(devAddress,transferredBalance.div(_liquidityFee).mul(devDivisor)) (#1240)
Consider ordering multiplication before division.

Additional information: link

GameBox.addLiquidity(uint256,uint256) (#1166-1179) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1171-1178)
Ensure that all the return values of the function calls are used.

Additional information: link

GameBox._approve(address,address,uint256).owner (#1063) shadows:
- Ownable.owner() (#407-409) (function)
Rename the local variables that shadow another component.

Additional information: link

GameBox.setDevDivisor(uint256) (#952-954) should emit an event for:
- devDivisor = _devDivisor (#953)
Emit an event for critical parameter changes.

Additional information: link

GameBox.setDevAddress(address)._devAddress (#942) lacks a zero-check on :
- devAddress = address(_devAddress) (#943)
Check that the address is not zero.

Additional information: link

Reentrancy in GameBox.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1156-1162)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- recipient.transfer(amount) (#1245)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#1067)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GameBox.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1156-1162)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- recipient.transfer(amount) (#1245)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1068)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#442-447) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#444)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

GameBox._previousLiquidityFee (#735) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

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 Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable GameBox._maxTxAmount (#750) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-241)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in GameBox.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- recipient.transfer(amount) (#1245)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#1067)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1068)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.

Additional information: link

Variable GameBox._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#987) is too similar to GameBox._getValues(uint256).tTransferAmount (#971)
Prevent variables from having similar names.

Additional information: link

GameBox.slitherConstructorVariables() (#707-1258) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 2500000 * 10 ** 6 * 10 ** 9 (#751)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GameBox._tTotal (#723) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferForeignToken(address,address) should be declared external:
- GameBox.transferForeignToken(address,address) (#1248-1251)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


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 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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for GameBox