Unitycom Token Logo

Unitycom Token

About Unitycom

Listings

Token 2 years
white paper

The main aim of UnityCom as its name suggests is to build Unity between the Unity Protocol ecosystem. UnityCom will act as a holding pillar between the team and the investors. By holding UnityCom you will be eligible to UnityPAD's exclusive IDO airdrops every month along with special community giveaways which will be held quaterly. UnityCom will also be used as a digitial e-commerce marketplace for the upcoming Metaverse Play To Earn Games launched on UnityPAD. This means that you will be able to purchase digital goods and services using your UnityCom balance in the near future on our official UnityCom DAPPs which will launch after the Metaficial World game is live. Goods And Services refers to all exclusive items within the Metaficial World Play To Earn Game, including items, properties, marketplaces and much more. Purchasing goods and services in the Metaficial World would also cost 0.1% UnityCom fees. Fees collected by each transaction will be donated amongst multiple charities whom will be chosen by the community beforehand. UnityCom will also act as a way to earn passive income by simply staking your UnityCom and Unity Protocol tokens in the near future to earn BUSD or UnityCom tokens in return. Exclusive IDOs will also be a choice to earn at a low APR before their launch. This would mean you will be able to enjoy exclusive IDO tokens before their launch simply by staking your UnityCom tokens.

Social

Laser Scorebeta Last Audit: 16 January 2022

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

Reentrancy in Unitycom._transfer(address,address,uint256) (#984-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1010)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#934)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1144)
- _rOwned[devWallet] = _rOwned[devWallet].add(rDev) (#1136)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1155)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1146)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1156)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1106)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1107)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#877)
- _tokenTransfer(from,to,amount) (#1010)
- _rTotal = _rTotal.sub(rFee) (#889)
- _tokenTransfer(from,to,amount) (#1010)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#936)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1154)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1145)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#876)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Unitycom.includeInReward(address) (#859-870) has costly operations inside a loop:
- _excluded.pop() (#866)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#385-391):
- (success) = recipient.call{value: amount}() (#389)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#451-472):
- (success,returndata) = target.call{value: weiValue}(data) (#455)
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() (#511) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#512) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#528) is not in mixedCase
Function IUniswapV2Router01.WETH() (#549) is not in mixedCase
Parameter Unitycom.calculateTaxFee(uint256)._amount (#939) is not in mixedCase
Parameter Unitycom.calculateLiquidityFee(uint256)._amount (#945) is not in mixedCase
Parameter Unitycom.setSwapAndLiquifyEnabled(bool)._enabled (#1199) is not in mixedCase
Variable Unitycom._taxFee (#709) is not in mixedCase
Variable Unitycom._liquidityFee (#712) is not in mixedCase
Variable Unitycom._burnFee (#715) is not in mixedCase
Variable Unitycom._devFee (#719) is not in mixedCase
Variable Unitycom._maxTxAmount (#730) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#16)" inContext (#10-19)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Unitycom.takeBurn(address,uint256,uint256,uint256) (#1114-1125) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1118)
Unitycom.takeDev(address,uint256,uint256,uint256) (#1128-1139) performs a multiplication on the result of a division:
-tDev = tAmount.div(100).mul(_devFee) (#1132)
Consider ordering multiplication before division.

Additional information: link

Unitycom.addLiquidity(uint256,uint256) (#1054-1067) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Ensure that all the return values of the function calls are used.

Additional information: link

Unitycom.allowance(address,address).owner (#791) shadows:
- Ownable.owner() (#53-55) (function)
Unitycom._approve(address,address,uint256).owner (#976) shadows:
- Ownable.owner() (#53-55) (function)
Rename the local variables that shadow another component.

Additional information: link

Unitycom.setDevFeePercent(uint256) (#1174-1176) should emit an event for:
- _devFee = devFee (#1175)
Unitycom.setTaxFeePercent(uint256) (#1178-1180) should emit an event for:
- _taxFee = taxFee (#1179)
Unitycom.setLiquidityFeePercent(uint256) (#1182-1184) should emit an event for:
- _liquidityFee = liquidityFee (#1183)
Unitycom.setBurnFeePercent(uint256) (#1186-1188) should emit an event for:
- _burnFee = burnFee (#1187)
Unitycom.setNumTokensSellToAddToLiquidity(uint256) (#1190-1192) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** 6 (#1191)
Unitycom.setMaxTxAmount(uint256) (#1194-1197) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** 6 (#1196)
Emit an event for critical parameter changes.

Additional information: link

Unitycom.setDevWallet(address).newWallet (#1170) lacks a zero-check on :
- devWallet = newWallet (#1171)
Check that the address is not zero.

Additional information: link

Reentrancy in Unitycom._transfer(address,address,uint256) (#984-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1010)
- _burnFee = _previousBurnFee (#968)
- _burnFee = 0 (#962)
- _tokenTransfer(from,to,amount) (#1010)
- _devFee = _previousdevFee (#969)
- _devFee = 0 (#961)
- _tokenTransfer(from,to,amount) (#1010)
- _liquidityFee = _previousLiquidityFee (#967)
- _liquidityFee = 0 (#960)
- _tokenTransfer(from,to,amount) (#1010)
- _previousBurnFee = _burnFee (#956)
- _tokenTransfer(from,to,amount) (#1010)
- _previousLiquidityFee = _liquidityFee (#955)
- _tokenTransfer(from,to,amount) (#1010)
- _previousTaxFee = _taxFee (#954)
- _tokenTransfer(from,to,amount) (#1010)
- _previousdevFee = _devFee (#957)
- _tokenTransfer(from,to,amount) (#1010)
- _tFeeTotal = _tFeeTotal.add(tFee) (#890)
- _tokenTransfer(from,to,amount) (#1010)
- _taxFee = _previousTaxFee (#966)
- _taxFee = 0 (#959)
Reentrancy in Unitycom.constructor() (#746-763):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#758)
- _isExcludedFromFee[devWallet] = true (#759)
- _isExcludedFromFee[address(this)] = true (#760)
- uniswapV2Router = _uniswapV2Router (#755)
Reentrancy in Unitycom.swapAndLiquify(uint256) (#1013-1034):
External calls:
- swapTokensForEth(half) (#1025)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1031)
- _allowances[owner][spender] = amount (#980)
Reentrancy in Unitycom.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
- _allowances[owner][spender] = amount (#980)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Unitycom._transfer(address,address,uint256) (#984-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1006)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Transfer(sender,devWallet,tDev) (#1137)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,deadAddress,tBurn) (#1123)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1159)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1149)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1110)
- _tokenTransfer(from,to,amount) (#1010)
Reentrancy in Unitycom.constructor() (#746-763):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#762)
Reentrancy in Unitycom.swapAndLiquify(uint256) (#1013-1034):
External calls:
- swapTokensForEth(half) (#1025)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#981)
- addLiquidity(otherHalf,newBalance) (#1031)
- SwapAndLiquify(half,newBalance,otherHalf) (#1033)
Reentrancy in Unitycom.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1045-1051)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1059-1066)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#981)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#358-367) uses assembly
- INLINE ASM (#365)
Address._functionCallWithValue(address,bytes,uint256,string) (#451-472) uses assembly
- INLINE ASM (#464-467)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#451-472) is never used and should be removed
Address.functionCall(address,bytes) (#411-413) is never used and should be removed
Address.functionCall(address,bytes,string) (#421-423) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#436-438) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#446-449) is never used and should be removed
Address.isContract(address) (#358-367) is never used and should be removed
Address.sendValue(address,uint256) (#385-391) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
SafeMath.mod(uint256,uint256) (#315-317) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#331-334) is never used and should be removed
Remove unused functions.

Additional information: link

Unitycom._rTotal (#702) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Unitycom._previousTaxFee (#710) is set pre-construction with a non-constant function or state variable:
- _taxFee
Unitycom._previousLiquidityFee (#713) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Unitycom._previousBurnFee (#716) is set pre-construction with a non-constant function or state variable:
- _burnFee
Unitycom._previousdevFee (#721) is set pre-construction with a non-constant function or state variable:
- _devFee
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

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#554) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#555)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom._getValues(uint256).rTransferAmount (#895) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom._transferToExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._transferFromExcluded(address,address,uint256).tTransferAmount (#1153)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._transferStandard(address,address,uint256).tTransferAmount (#1103)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom._transferFromExcluded(address,address,uint256).rTransferAmount (#1153) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._transferStandard(address,address,uint256).rTransferAmount (#1103) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable Unitycom.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to Unitycom._transferToExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Variable Unitycom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#910) is too similar to Unitycom.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable Unitycom.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to Unitycom._getTValues(uint256).tTransferAmount (#902)
Variable Unitycom._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to Unitycom._getValues(uint256).tTransferAmount (#894)
Prevent variables from having similar names.

Additional information: link

Unitycom.slitherConstructorVariables() (#687-1205) uses literals with too many digits:
- _tTotal = 1000000000000 * (10 ** 6) (#701)
Unitycom.slitherConstructorVariables() (#687-1205) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#717)
Unitycom.slitherConstructorVariables() (#687-1205) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 6 (#729)
Unitycom.slitherConstructorVariables() (#687-1205) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 6 (#730)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Unitycom._decimals (#707) should be constant
Unitycom._name (#705) should be constant
Unitycom._symbol (#706) should be constant
Unitycom._tTotal (#701) should be constant
Unitycom.deadAddress (#717) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#72-75)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#81-85)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#87-89)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#92-97)
unlock() should be declared external:
- Ownable.unlock() (#100-105)
name() should be declared external:
- Unitycom.name() (#765-767)
symbol() should be declared external:
- Unitycom.symbol() (#769-771)
decimals() should be declared external:
- Unitycom.decimals() (#773-775)
totalSupply() should be declared external:
- Unitycom.totalSupply() (#777-779)
transfer(address,uint256) should be declared external:
- Unitycom.transfer(address,uint256) (#786-789)
allowance(address,address) should be declared external:
- Unitycom.allowance(address,address) (#791-793)
approve(address,uint256) should be declared external:
- Unitycom.approve(address,uint256) (#795-798)
transferFrom(address,address,uint256) should be declared external:
- Unitycom.transferFrom(address,address,uint256) (#800-804)
increaseAllowance(address,uint256) should be declared external:
- Unitycom.increaseAllowance(address,uint256) (#806-809)
decreaseAllowance(address,uint256) should be declared external:
- Unitycom.decreaseAllowance(address,uint256) (#811-814)
isExcludedFromReward(address) should be declared external:
- Unitycom.isExcludedFromReward(address) (#816-818)
totalFees() should be declared external:
- Unitycom.totalFees() (#820-822)
deliver(uint256) should be declared external:
- Unitycom.deliver(uint256) (#824-831)
reflectionFromToken(uint256,bool) should be declared external:
- Unitycom.reflectionFromToken(uint256,bool) (#833-842)
excludeFromReward(address) should be declared external:
- Unitycom.excludeFromReward(address) (#850-857)
isExcludedFromFee(address) should be declared external:
- Unitycom.isExcludedFromFee(address) (#972-974)
excludeFromFee(address) should be declared external:
- Unitycom.excludeFromFee(address) (#1162-1164)
includeInFee(address) should be declared external:
- Unitycom.includeInFee(address) (#1166-1168)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Unitycom.setSwapAndLiquifyEnabled(bool) (#1199-1202)
Use the external attribute for functions never called from the contract.

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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


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

Additional information: link


Unable to verify token contract address 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


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for Unitycom

News for Unitycom