UnityVentures Token Logo

UV [UnityVentures] Token

About UV

Listings

Token 21 months
CoinMarketCap 19 months

$UV Token is the governance token for RYI Unity and a store of value for our blockchain business ventures. Buy it, win it, farm it, spend it, stake it... vote with it! Supply is limited and only decreasing!
$UV is the primary token of the UnityDefi platform. with a full Defi ecosystem of products such as Trading, staking, farming, UnityWrap, Governance, and a lot of other products in the line that will be launching soon.
UnityDefi has the most innovative and dedicated team of any decentralized platform
We are a registered crypto company with the highest level of dedication to our community.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

UnityVenturesToken.addLiquidity(uint256,uint256) (dist/UnityVenturesToken.sol#1315-1328) sends eth to arbitrary user
Dangerous calls:
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in UnityVenturesToken._transfer(address,address,uint256) (dist/UnityVenturesToken.sol#1231-1260):
External calls:
- swapAndLiquify() (dist/UnityVenturesToken.sol#1241)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
- uvSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (dist/UnityVenturesToken.sol#1305-1311)
External calls sending eth:
- swapAndLiquify() (dist/UnityVenturesToken.sol#1241)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (dist/UnityVenturesToken.sol#1245)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (dist/UnityVenturesToken.sol#1056)
- _balances[recipient] = _balances[recipient].add(amount) (dist/UnityVenturesToken.sol#1057)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (dist/UnityVenturesToken.sol#1255)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (dist/UnityVenturesToken.sol#1056)
- _balances[recipient] = _balances[recipient].add(amount) (dist/UnityVenturesToken.sol#1057)
- super._transfer(sender,address(this),liquidityAmount) (dist/UnityVenturesToken.sol#1256)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (dist/UnityVenturesToken.sol#1056)
- _balances[recipient] = _balances[recipient].add(amount) (dist/UnityVenturesToken.sol#1057)
- super._transfer(sender,recipient,sendAmount) (dist/UnityVenturesToken.sol#1257)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (dist/UnityVenturesToken.sol#1056)
- _balances[recipient] = _balances[recipient].add(amount) (dist/UnityVenturesToken.sol#1057)
Apply the check-effects-interactions pattern.

Additional information: link


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

UnityVenturesToken._writeCheckpoint(address,uint32,uint256,uint256) (dist/UnityVenturesToken.sol#1630-1648) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (dist/UnityVenturesToken.sol#1640)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

UnityVenturesToken._transfer(address,address,uint256) (dist/UnityVenturesToken.sol#1231-1260) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (dist/UnityVenturesToken.sol#1247)
-burnAmount = taxAmount.mul(burnRate).div(100) (dist/UnityVenturesToken.sol#1248)
Consider ordering multiplication before division.

Additional information: link

UnityVenturesToken.addLiquidity(uint256,uint256) (dist/UnityVenturesToken.sol#1315-1328) ignores return value by uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
Ensure that all the return values of the function calls are used.

Additional information: link

UnityVenturesToken.swapAndLiquify().maxTransferAmount (dist/UnityVenturesToken.sol#1265) shadows:
- UnityVenturesToken.maxTransferAmount() (dist/UnityVenturesToken.sol#1333-1335) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in UnityVenturesToken.swapAndLiquify() (dist/UnityVenturesToken.sol#1263-1293):
External calls:
- swapTokensForEth(half) (dist/UnityVenturesToken.sol#1283)
- uvSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (dist/UnityVenturesToken.sol#1305-1311)
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- _allowances[owner][spender] = amount (dist/UnityVenturesToken.sol#1118)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in UnityVenturesToken.swapAndLiquify() (dist/UnityVenturesToken.sol#1263-1293):
External calls:
- swapTokensForEth(half) (dist/UnityVenturesToken.sol#1283)
- uvSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (dist/UnityVenturesToken.sol#1305-1311)
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- uvSwapRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (dist/UnityVenturesToken.sol#1320-1327)
Event emitted after the call(s):
- Approval(owner,spender,amount) (dist/UnityVenturesToken.sol#1119)
- addLiquidity(otherHalf,newBalance) (dist/UnityVenturesToken.sol#1289)
- SwapAndLiquify(half,newBalance,otherHalf) (dist/UnityVenturesToken.sol#1291)
Apply the check-effects-interactions pattern.

Additional information: link

UnityVenturesToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (dist/UnityVenturesToken.sol#1496-1537) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,UV::delegateBySig: signature expired) (dist/UnityVenturesToken.sol#1535)
Avoid relying on block.timestamp.

Additional information: link

UnityVenturesToken.getChainId() (dist/UnityVenturesToken.sol#1655-1659) uses assembly
- INLINE ASM (dist/UnityVenturesToken.sol#1657)
Do not use evm assembly.

Additional information: link

UnityVenturesToken.antiWhale(address,address,uint256) (dist/UnityVenturesToken.sol#1186-1196) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (dist/UnityVenturesToken.sol#1189-1190)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.2<0.8.0']
- >=0.5.0 (dist/UnityVenturesToken.sol#5)
- >=0.5.0 (dist/UnityVenturesToken.sol#25)
- >=0.6.2 (dist/UnityVenturesToken.sol#80)
- >=0.6.2 (dist/UnityVenturesToken.sol#178)
- >=0.6.2<0.8.0 (dist/UnityVenturesToken.sol#224)
- >=0.6.0<0.8.0 (dist/UnityVenturesToken.sol#414)
- >=0.4.0 (dist/UnityVenturesToken.sol#629)
- >=0.6.0<0.8.0 (dist/UnityVenturesToken.sol#728)
- >=0.6.0<0.8.0 (dist/UnityVenturesToken.sol#753)
- >=0.4.0 (dist/UnityVenturesToken.sol#821)
- 0.6.12 (dist/UnityVenturesToken.sol#1140)
Use one Solidity version.

Additional information: link

UnityVenturesToken.swapTokensForEth(uint256) (dist/UnityVenturesToken.sol#1296-1312) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.4.0 (dist/UnityVenturesToken.sol#821) 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

Low level call in Address.functionDelegateCall(address,bytes,string) (dist/UnityVenturesToken.sol#384-390):
- (success,returndata) = target.delegatecall(data) (dist/UnityVenturesToken.sol#388)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable UnityVenturesToken._delegates (dist/UnityVenturesToken.sol#1438) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (dist/UnityVenturesToken.sol#746)" inContext (dist/UnityVenturesToken.sol#740-749)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (dist/UnityVenturesToken.sol#89) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (dist/UnityVenturesToken.sol#90)
Prevent variables from having similar names.

Additional information: link

UnityVenturesToken.slitherConstructorConstantVariables() (dist/UnityVenturesToken.sol#1143-1661) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (dist/UnityVenturesToken.sol#1151)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

transferOperator(address) should be declared external:
- UnityVenturesToken.transferOperator(address) (dist/UnityVenturesToken.sol#1425-1429)
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.


Twitter account link seems to be invalid


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for UV