Cryptovio.io Token Logo

VIO [Cryptovio.io] Token

About VIO

Listings

Not Found
Token 2 years

If you have
Telegram
, you can contact
@cryptovioofficial
right away.

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

Tokenomics._getFeeStruct(uint256) (#426-432) contains a tautology or contradiction:
- require(bool,string)(index >= 0 && index < fees.length,FeesSettings._getFeeStruct: Fee index out of bounds) (#427-430)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Contract name (Cryptovio.io) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

AntiBot._getBotFee() (#1226-1234) uses timestamp for comparisons
Dangerous comparisons:
- antiBotEnabled && antiBotTime > block.timestamp (#1228)
AntiBot.checkAntiBotStatus() (#1236-1246) uses timestamp for comparisons
Dangerous comparisons:
- antiBotEnabled && antiBotTime > block.timestamp (#1239)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#99-105) uses assembly
- INLINE ASM (#101-103)
Address._verifyCallResult(bool,bytes,string) (#210-227) uses assembly
- INLINE ASM (#219-222)
Do not use evm assembly.

Additional information: link

Redundant expression "this (#60)" inContext (#54-63)
Remove redundant statements if they congest code but offer no value.

Additional information: link

BaseRfiToken.includeInReward(address) (#725-736) has costly operations inside a loop:
- _excluded.pop() (#732)
Use a local variable to hold the loop computation result.

Additional information: link

BaseRfiToken._getValues(uint256,uint256) (#907-932) performs a multiplication on the result of a division:
-tTotalFees = tAmount.mul(feesSum).div(FEES_DIVISOR) (#918)
-rTotalFees = tTotalFees.mul(currentRate) (#922)
BaseRfiToken._redistribute(uint256,uint256,uint256,uint256) (#987-998) performs a multiplication on the result of a division:
-tFee = amount.mul(fee).div(FEES_DIVISOR) (#993)
-rFee = tFee.mul(currentRate) (#994)
SafeToken._burn(uint256,uint256,uint256,uint256) (#1309-1320) performs a multiplication on the result of a division:
-tBurn = amount.mul(fee).div(FEES_DIVISOR) (#1315)
-rBurn = tBurn.mul(currentRate) (#1316)
SafeToken._takeFee(uint256,uint256,uint256,address,uint256) (#1322-1339) performs a multiplication on the result of a division:
-tAmount = amount.mul(fee).div(FEES_DIVISOR) (#1329)
-rAmount = tAmount.mul(currentRate) (#1330)
Consider ordering multiplication before division.

Additional information: link

BaseRfiToken.allowance(address,address).owner (#525) shadows:
- Ownable.owner() (#245-247) (function)
BaseRfiToken._approve(address,address,uint256).owner (#750) shadows:
- Ownable.owner() (#245-247) (function)
BaseRfiToken._transferTokens(address,address,uint256,bool).sumOfFees (#861) shadows:
- Tokenomics.sumOfFees (#390) (state variable)
BaseRfiToken._takeFees(uint256,uint256,uint256).sumOfFees (#900) shadows:
- Tokenomics.sumOfFees (#390) (state variable)
Liquifier._approveDelegate(address,address,uint256).owner (#1208) shadows:
- Ownable.owner() (#245-247) (function)
SafeToken.constructor(Liquifier.Env)._env (#1253) shadows:
- Liquifier._env (#1017) (state variable)
SafeToken._takeTransactionFees(uint256,uint256).name (#1295) shadows:
- BaseRfiToken.name() (#493-495) (function)
- IERC20Metadata.name() (#47) (function)
SafeToken._approveDelegate(address,address,uint256).owner (#1342) shadows:
- Ownable.owner() (#245-247) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#1172-1201):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
State variables written after the call(s):
- withdrawableBalance = address(this).balance (#1199)
Reentrancy in Liquifier._setRouterAddress(address) (#1108-1116):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
State variables written after the call(s):
- _router = _newPancakeRouter (#1114)
Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1118-1150):
External calls:
- _swapTokensForEth(half) (#1133)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1161-1169)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
State variables written after the call(s):
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- withdrawableBalance = address(this).balance (#1199)
Reentrancy in SafeToken.constructor(Liquifier.Env) (#1253-1264):
External calls:
- initializeLiquiditySwapper(_env,maxTransactionAmount,numberOfTokensToSwapToLiquidity) (#1254-1258)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
State variables written after the call(s):
- _exclude(_pair) (#1262)
- _balances[account] = tokenFromReflection(_reflectedBalances[account]) (#717-719)
- _exclude(burnAddress) (#1263)
- _balances[account] = tokenFromReflection(_reflectedBalances[account]) (#717-719)
- _exclude(_pair) (#1262)
- _excluded.push(account) (#722)
- _exclude(burnAddress) (#1263)
- _excluded.push(account) (#722)
- _exclude(_pair) (#1262)
- _isExcludedFromRewards[account] = true (#721)
- _exclude(burnAddress) (#1263)
- _isExcludedFromRewards[account] = true (#721)
Reentrancy in CRYPTOVIO.constructor() (#1351-1354):
External calls:
- SafeToken(Env.Mainnet) (#1351)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
State variables written after the call(s):
- _approve(owner(),address(_router),~ uint256(0)) (#1353)
- _allowances[owner][spender] = amount (#763)
Reentrancy in Liquifier.initializeLiquiditySwapper(Liquifier.Env,uint256,uint256) (#1056-1070):
External calls:
- _setRouterAddress(_mainnetRouterV2Address) (#1063)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
- _setRouterAddress(_testnetRouterAddress) (#1065)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
State variables written after the call(s):
- maxTransactionAmount = maxTx (#1068)
- numberOfTokensToSwapToLiquidity = liquifyAmount (#1069)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Liquifier._addLiquidity(uint256,uint256) (#1172-1201):
External calls:
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#1200)
Reentrancy in Liquifier._setRouterAddress(address) (#1108-1116):
External calls:
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
Event emitted after the call(s):
- RouterSet(router) (#1115)
Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1118-1150):
External calls:
- _swapTokensForEth(half) (#1133)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1161-1169)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
Event emitted after the call(s):
- LiquidityAdded(tokenAmountSent,ethAmountSent,liquidity) (#1200)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1118-1150):
External calls:
- _swapTokensForEth(half) (#1133)
- _router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1161-1169)
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
- marketingPayable.transfer(theOtherHalfBalance) (#1147)
Event emitted after the call(s):
- SwapAndLiquify(half,halfNewBalance,otherHalf.div(2)) (#1149)
Reentrancy in CRYPTOVIO.constructor() (#1351-1354):
External calls:
- SafeToken(Env.Mainnet) (#1351)
- _pair = IPancakeV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1110-1113)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#764)
- _approve(owner(),address(_router),~ uint256(0)) (#1353)
Apply the check-effects-interactions pattern.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#210-227) is never used and should be removed
Address.functionCall(address,bytes) (#119-124) is never used and should be removed
Address.functionCall(address,bytes,string) (#126-132) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#134-146) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#148-163) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#188-198) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#200-208) is never used and should be removed
Address.functionStaticCall(address,bytes) (#165-176) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#178-186) is never used and should be removed
Address.isContract(address) (#99-105) is never used and should be removed
Address.sendValue(address,uint256) (#107-117) is never used and should be removed
BaseRfiToken._beforeTokenTransfer(address,address,uint256,bool) (#964-969) is never used and should be removed
BaseRfiToken._getFeesWithBotImpact() (#971) is never used and should be removed
BaseRfiToken._isV2Pair(address) (#976) is never used and should be removed
BaseRfiToken._takeTransactionFees(uint256,uint256) (#1003-1005) is never used and should be removed
Context._msgData() (#59-62) is never used and should be removed
Liquifier._approveDelegate(address,address,uint256) (#1207-1211) is never used and should be removed
SafeMath.mod(uint256,uint256) (#82-84) is never used and should be removed
Tokenomics._addFee(Tokenomics.FeeType,uint256,address) (#396-403) is never used and should be removed
Tokenomics._addFees() (#405-420) is never used and should be removed
Tokenomics.getCollectedFeeTotal(uint256) (#454-461) is never used and should be removed
Remove unused functions.

Additional information: link

AntiBot.antiBotTime (#1223) is set pre-construction with a non-constant function or state variable:
- block.timestamp.add(antiBotDuration)
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

Pragma version^0.8.9 (#14) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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.sendValue(address,uint256) (#107-117):
- (success) = recipient.call{value: amount}() (#112)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#148-163):
- (success,returndata) = target.call{value: value}(data) (#159-161)
Low level call in Address.functionStaticCall(address,bytes,string) (#178-186):
- (success,returndata) = target.staticcall(data) (#184)
Low level call in Address.functionDelegateCall(address,bytes,string) (#200-208):
- (success,returndata) = target.delegatecall(data) (#206)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._deployer (#232) is not in mixedCase
Function IPancakeV2Router.WETH() (#285) is not in mixedCase
Variable Tokenomics._reflectedSupply (#326) is not in mixedCase
Constant Tokenomics.maxTransactionAmount (#336) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.maxWalletBalance (#348) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Tokenomics.numberOfTokensToSwapToLiquidity (#363-364) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BaseRfiToken._reflectedBalances (#468) is not in mixedCase
Variable BaseRfiToken._balances (#469) is not in mixedCase
Variable BaseRfiToken._allowances (#470) is not in mixedCase
Variable BaseRfiToken._isExcludedFromFee (#472) is not in mixedCase
Variable BaseRfiToken._isExcludedFromRewards (#473) is not in mixedCase
Variable Liquifier._router (#1026) is not in mixedCase
Variable Liquifier._pair (#1027) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in Liquifier._swapAndLiquify(uint256,address) (#1118-1150):
External calls:
- marketingPayable.transfer(theOtherHalfBalance) (#1147)
External calls sending eth:
- _addLiquidity(otherHalf.div(2),halfNewBalance) (#1145)
- (tokenAmountSent,ethAmountSent,liquidity) = _router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_deployer,block.timestamp) (#1177-1189)
- marketingPayable.transfer(theOtherHalfBalance) (#1147)
Event emitted after the call(s):
- SwapAndLiquify(half,halfNewBalance,otherHalf.div(2)) (#1149)
Apply the check-effects-interactions pattern.

Additional information: link

Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#923) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#870)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#868) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#870)
Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#686) is too similar to BaseRfiToken._transferTokens(address,address,uint256,bool).tTransferAmount (#870)
Variable BaseRfiToken.reflectionFromToken(uint256,bool).rTransferAmount (#686) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#919)
Variable BaseRfiToken._getValues(uint256,uint256).rTransferAmount (#923) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#919)
Variable BaseRfiToken._transferTokens(address,address,uint256,bool).rTransferAmount (#868) is too similar to BaseRfiToken._getValues(uint256,uint256).tTransferAmount (#919)
Prevent variables from having similar names.

Additional information: link

CRYPTOVIO.slitherConstructorVariables() (#1350-1356) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#374)
CRYPTOVIO.slitherConstructorConstantVariables() (#1350-1356) uses literals with too many digits:
- TOTAL_SUPPLY = 1000000000000 * ZEROES (#325)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

AntiBot.antiBotDuration (#1222) should be constant
Liquifier._mainnetRouterV2Address (#1020-1021) should be constant
Liquifier._testnetRouterAddress (#1023-1024) should be constant
Liquifier.swapAndLiquifyEnabled (#1030) should be constant
Tokenomics.burnAddress (#374) should be constant
Tokenomics.marketingAddress (#372-373) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#254-257)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#259-266)
increaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.increaseAllowance(address,uint256) (#635-646)
decreaseAllowance(address,uint256) should be declared external:
- BaseRfiToken.decreaseAllowance(address,uint256) (#648-662)
isExcludedFromFee(address) should be declared external:
- BaseRfiToken.isExcludedFromFee(address) (#745-747)
checkAntiBotStatus() should be declared external:
- AntiBot.checkAntiBotStatus() (#1236-1246)
disableAntiBot() should be declared external:
- SafeToken.disableAntiBot() (#1266-1268)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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.


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for VIO