Quantum Works was founded in 2021 when Fraser Gordon saw a unique opportunity and a gap in the global market place for a AAA gaming title and studio, where fairness and customer satisfaction lead the way, but, with one key twist.
Quantum Works is funded solely from its own cryptocurrency token, a BEP20 token utilising a smart contract on the Binance Block Chain network. This cryptocurrency is the money which will drive the economy in Quantum Works first AAA title to be published, Project Quantum (working title), and future titles to come.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Ownable._lockTime (#443) is never initialized. It is used in:
- Ownable.geUnlockTime() (#493-495)
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
Reentrancy in Quantum._transfer(address,address,uint256) (#919-972):
External calls:
- swapAndLiquify(contractTokenBalance) (#959)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#959)
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _liquidityFee = _previousLiquidityFee (#1172)
- _liquidityFee = 0 (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _previousLiquidityFee = _liquidityFee (#1164)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _previousTaxFee = _taxFee (#1163)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1054)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1044)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1045)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1077)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1066)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1056)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1067)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1079)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _rTotal = _rTotal.sub(rFee) (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1134)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1076)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1065)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1055)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1078)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _taxFee = _previousTaxFee (#1171)
- _taxFee = 0 (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- previousSale[sender] = block.timestamp (#1048)
- previousSale[sender] = block.timestamp (#1059)
- previousSale[sender] = block.timestamp (#1070)
- previousSale[sender] = block.timestamp (#1082)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Quantum.allowance(address,address).owner (#830) shadows:
- Ownable.owner() (#459-461) (function)
Quantum._approve(address,address,uint256).owner (#911) shadows:
- Ownable.owner() (#459-461) (function)
Rename the local variables that shadow another component.
Additional information: link
Quantum.setStudioWallet(address)._address (#1187) lacks a zero-check on :
- _studioWallet = _address (#1188)
Quantum.setGameWallet(address)._address (#1191) lacks a zero-check on :
- _gameWallet = _address (#1192)
Check that the address is not zero.
Additional information: link
Reentrancy in Quantum._transfer(address,address,uint256) (#919-972):
External calls:
- swapAndLiquify(contractTokenBalance) (#959)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#959)
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1088)
Reentrancy in Quantum.constructor() (#780-802):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
State variables written after the call(s):
- _gameWallet = msg.sender (#799)
- _isExcludedFromFee[owner()] = true (#793)
- _isExcludedFromFee[address(this)] = true (#794)
- _studioWallet = msg.sender (#798)
- startDate = block.timestamp + 20700 (#796)
- uniswapV2Router = _uniswapV2Router (#790)
Reentrancy in Quantum.swapAndLiquify(uint256) (#974-1001):
External calls:
- swapTokensForEth(half) (#986)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- removeAllFee() (#993)
- _liquidityFee = 0 (#1167)
- restoreAllFee() (#998)
- _liquidityFee = _previousLiquidityFee (#1172)
- removeAllFee() (#993)
- _previousLiquidityFee = _liquidityFee (#1164)
- removeAllFee() (#993)
- _previousTaxFee = _taxFee (#1163)
- _rOwned[address(this)] = _rOwned[address(this)].sub(rAmount) (#995)
- _rOwned[_gameWallet] = _rOwned[_gameWallet].add(rTransferAmount) (#996)
- removeAllFee() (#993)
- _taxFee = 0 (#1166)
- restoreAllFee() (#998)
- _taxFee = _previousTaxFee (#1171)
Reentrancy in Quantum.transferFrom(address,address,uint256) (#839-843):
External calls:
- _transfer(sender,recipient,amount) (#840)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- _transfer(sender,recipient,amount) (#840)
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#841)
- _allowances[owner][spender] = amount (#915)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Quantum._transfer(address,address,uint256) (#919-972):
External calls:
- swapAndLiquify(contractTokenBalance) (#959)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#959)
- address(_studioWallet).transfer(newBalance) (#991)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1049)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1071)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#971)
Reentrancy in Quantum.constructor() (#780-802):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#801)
Reentrancy in Quantum.swapAndLiquify(uint256) (#974-1001):
External calls:
- swapTokensForEth(half) (#986)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- address(_studioWallet).transfer(newBalance) (#991)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#1000)
- Transfer(address(this),_gameWallet,tTransferAmount) (#997)
Reentrancy in Quantum.transferFrom(address,address,uint256) (#839-843):
External calls:
- _transfer(sender,recipient,amount) (#840)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1012-1018)
External calls sending eth:
- _transfer(sender,recipient,amount) (#840)
- address(_studioWallet).transfer(newBalance) (#991)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#916)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#841)
Apply the check-effects-interactions pattern.
Additional information: link
Quantum.tokenFromReflection(uint256) (#882-886) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(rAmount <= _rTotal,Amount must be less than total reflections) (#883)
Quantum._transfer(address,address,uint256) (#919-972) uses timestamp for comparisons
Dangerous comparisons:
- fromBalance > threshold (#939)
- require(bool,string)(amount < fromBalance / (5),For your protection, max sell is 20% if you hold 0.5% or more of supply.) (#941)
- require(bool,string)(_now - (previousSale[from]) > 86400,You must wait a full 24 hours before you may sell again.) (#942)
- overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap (#952)
- overMinTokenBalance && ! inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled (#954-957)
Quantum._getCurrentSupply() (#1117-1127) uses timestamp for comparisons
Dangerous comparisons:
- _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply (#1121)
- rSupply < _rTotal.div(_tTotal) (#1125)
Quantum.calculateTaxFee(uint256,address) (#1137-1152) uses timestamp for comparisons
Dangerous comparisons:
- startDate > block.timestamp || _taxFee == 0 || to != address(uniswapV2Pair) (#1138)
- dayCount < 31 (#1144)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#311-320) uses assembly
- INLINE ASM (#318)
Address._functionCallWithValue(address,bytes,uint256,string) (#404-425) uses assembly
- INLINE ASM (#417-420)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#404-425) is never used and should be removed
Address.functionCall(address,bytes) (#364-366) is never used and should be removed
Address.functionCall(address,bytes,string) (#374-376) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#389-391) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#399-402) is never used and should be removed
Address.isContract(address) (#311-320) is never used and should be removed
Address.sendValue(address,uint256) (#338-344) is never used and should be removed
Context._msgData() (#51-54) is never used and should be removed
SafeMath.mod(uint256,uint256) (#268-270) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#284-287) is never used and should be removed
Remove unused functions.
Additional information: link
Quantum._tTotal (#733) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
Quantum._rTotal (#734) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Quantum._previousTaxFee (#742) is set pre-construction with a non-constant function or state variable:
- _taxFee
Quantum._previousLiquidityFee (#746) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Quantum.minTokensBeforeSwap (#758) is set pre-construction with a non-constant function or state variable:
- 30000000 * 10 ** _decimals
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
Low level call in Address.sendValue(address,uint256) (#338-344):
- (success) = recipient.call{value: amount}() (#342)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#404-425):
- (success,returndata) = target.call{value: weiValue}(data) (#408)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#534) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#535) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#552) is not in mixedCase
Function IUniswapV2Router01.WETH() (#574) is not in mixedCase
Parameter Quantum.calculateTaxFee(uint256,address)._amount (#1137) is not in mixedCase
Parameter Quantum.calculateLiquidityFee(uint256)._amount (#1154) is not in mixedCase
Parameter Quantum.setStudioWallet(address)._address (#1187) is not in mixedCase
Parameter Quantum.setGameWallet(address)._address (#1191) is not in mixedCase
Parameter Quantum.setSwapAndLiquifyEnabled(bool)._enabled (#1195) is not in mixedCase
Variable Quantum._studioWallet (#727) is not in mixedCase
Variable Quantum._gameWallet (#728) is not in mixedCase
Variable Quantum._taxFee (#741) is not in mixedCase
Variable Quantum._liquidityFee (#745) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#52)" inContext (#46-55)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Quantum._transfer(address,address,uint256) (#919-972):
External calls:
- swapAndLiquify(contractTokenBalance) (#959)
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _liquidityFee = _previousLiquidityFee (#1172)
- _liquidityFee = 0 (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _previousLiquidityFee = _liquidityFee (#1164)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _previousTaxFee = _taxFee (#1163)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1054)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1044)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1045)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1077)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1066)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1056)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1067)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1079)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _rTotal = _rTotal.sub(rFee) (#1087)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1134)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1076)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1065)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1055)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1078)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- _taxFee = _previousTaxFee (#1171)
- _taxFee = 0 (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- previousSale[sender] = block.timestamp (#1048)
- previousSale[sender] = block.timestamp (#1059)
- previousSale[sender] = block.timestamp (#1070)
- previousSale[sender] = block.timestamp (#1082)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1049)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1071)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1060)
- _tokenTransfer(from,to,amount,takeFee) (#971)
- Transfer(sender,recipient,tTransferAmount) (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#971)
Reentrancy in Quantum.swapAndLiquify(uint256) (#974-1001):
External calls:
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- removeAllFee() (#993)
- _liquidityFee = 0 (#1167)
- restoreAllFee() (#998)
- _liquidityFee = _previousLiquidityFee (#1172)
- removeAllFee() (#993)
- _previousLiquidityFee = _liquidityFee (#1164)
- removeAllFee() (#993)
- _previousTaxFee = _taxFee (#1163)
- _rOwned[address(this)] = _rOwned[address(this)].sub(rAmount) (#995)
- _rOwned[_gameWallet] = _rOwned[_gameWallet].add(rTransferAmount) (#996)
- removeAllFee() (#993)
- _taxFee = 0 (#1166)
- restoreAllFee() (#998)
- _taxFee = _previousTaxFee (#1171)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#1000)
- Transfer(address(this),_gameWallet,tTransferAmount) (#997)
Reentrancy in Quantum.transferFrom(address,address,uint256) (#839-843):
External calls:
- _transfer(sender,recipient,amount) (#840)
- address(_studioWallet).transfer(newBalance) (#991)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#841)
- _allowances[owner][spender] = amount (#915)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#916)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#841)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#579) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#580)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._getTValues(uint256,address).tTransferAmount (#1100)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._transferFromExcluded(address,address,uint256).tTransferAmount (#1064)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._transferBothExcluded(address,address,uint256).tTransferAmount (#1075)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._transferStandard(address,address,uint256).tTransferAmount (#1043)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum.swapAndLiquify(uint256).rTransferAmount (#994) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum._transferToExcluded(address,address,uint256).rTransferAmount (#1053) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._transferFromExcluded(address,address,uint256).rTransferAmount (#1064) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum._transferStandard(address,address,uint256).rTransferAmount (#1043) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum.reflectionFromToken(uint256,bool,address).rTransferAmount (#877) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum._transferToExcluded(address,address,uint256).tTransferAmount (#1053)
Variable Quantum._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1108) is too similar to Quantum.swapAndLiquify(uint256).tTransferAmount (#994)
Variable Quantum._transferBothExcluded(address,address,uint256).rTransferAmount (#1075) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Variable Quantum._getValues(uint256,address).rTransferAmount (#1093) is too similar to Quantum._getValues(uint256,address).tTransferAmount (#1092)
Prevent variables from having similar names.
Additional information: link
Quantum.slitherConstructorVariables() (#712-1203) uses literals with too many digits:
- _burnPool = 0x0000000000000000000000000000000000000000 (#725)
Quantum.slitherConstructorVariables() (#712-1203) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#733)
Quantum.slitherConstructorVariables() (#712-1203) uses literals with too many digits:
- minTokensBeforeSwap = 30000000 * 10 ** _decimals (#758)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#442) is never used in Quantum (#712-1203)
Quantum._burnPool (#725) is never used in Quantum (#712-1203)
Remove unused state variables.
Additional information: link
Ownable._lockTime (#443) should be constant
Ownable._previousOwner (#442) should be constant
Quantum._burnPool (#725) should be constant
Quantum._decimals (#730) should be constant
Quantum._name (#737) should be constant
Quantum._symbol (#738) should be constant
Quantum.totalLiquidityProviderRewards (#748) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#478-481)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#487-491)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#493-495)
name() should be declared external:
- Quantum.name() (#804-806)
symbol() should be declared external:
- Quantum.symbol() (#808-810)
decimals() should be declared external:
- Quantum.decimals() (#812-814)
transfer(address,uint256) should be declared external:
- Quantum.transfer(address,uint256) (#825-828)
allowance(address,address) should be declared external:
- Quantum.allowance(address,address) (#830-832)
approve(address,uint256) should be declared external:
- Quantum.approve(address,uint256) (#834-837)
transferFrom(address,address,uint256) should be declared external:
- Quantum.transferFrom(address,address,uint256) (#839-843)
increaseAllowance(address,uint256) should be declared external:
- Quantum.increaseAllowance(address,uint256) (#845-848)
decreaseAllowance(address,uint256) should be declared external:
- Quantum.decreaseAllowance(address,uint256) (#850-853)
isExcludedFromReward(address) should be declared external:
- Quantum.isExcludedFromReward(address) (#855-857)
totalFees() should be declared external:
- Quantum.totalFees() (#859-861)
startNukingTheWhales() should be declared external:
- Quantum.startNukingTheWhales() (#863-865)
enableFees() should be declared external:
- Quantum.enableFees() (#867-869)
reflectionFromToken(uint256,bool,address) should be declared external:
- Quantum.reflectionFromToken(uint256,bool,address) (#871-880)
excludeFromReward(address) should be declared external:
- Quantum.excludeFromReward(address) (#888-896)
isExcludedFromFee(address) should be declared external:
- Quantum.isExcludedFromFee(address) (#1175-1177)
excludeFromFee(address) should be declared external:
- Quantum.excludeFromFee(address) (#1179-1181)
includeInFee(address) should be declared external:
- Quantum.includeInFee(address) (#1183-1185)
setStudioWallet(address) should be declared external:
- Quantum.setStudioWallet(address) (#1187-1189)
setGameWallet(address) should be declared external:
- Quantum.setGameWallet(address) (#1191-1193)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Quantum.setSwapAndLiquifyEnabled(bool) (#1195-1198)
Use the external attribute for functions never called from the contract.
Additional information: link
Quantum.includeInReward(address) (#898-909) has costly operations inside a loop:
- _excluded.pop() (#905)
Use a local variable to hold the loop computation result.
Additional information: link
Unable to find token contract audit
Token is not listed at Mobula.Finance
Additional information: link
Unable to find audit link on the website
Young tokens have high risks of scam / price dump / death
Token has relatively low CoinGecko rank