Eagle Vision Token Logo

EVI [Eagle Vision] Token

About EVI

Listings

Token 2 years
white paper

Eagle Vision aims to build a robust ecosystem of DeFi applications on Binance Smart Chain with cross chain support to ADA network. EagleSwap was successfully launched and offers Staking pools, Farming, and more features.

Social

Laser Scorebeta Last Audit: 1 January 2022

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

Anti-Scam

Links


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

EviToken.addLiquidity(uint256,uint256) (#1284-1297) sends eth to arbitrary user
Dangerous calls:
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EviToken._transfer(address,address,uint256) (#1194-1229):
External calls:
- swapAndLiquify() (#1208)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
- eviRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1274-1280)
External calls sending eth:
- swapAndLiquify() (#1208)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (#1212)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (#1224)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,address(this),liquidityAmount) (#1225)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
- super._transfer(sender,recipient,sendAmount) (#1226)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#582)
- _balances[recipient] = _balances[recipient].add(amount) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

EviToken._writeCheckpoint(address,uint32,uint256,uint256) (#1599-1617) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1609)
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.

Redundant expression "this (#24)" inContext (#18-27)
Remove redundant statements if they congest code but offer no value.

Additional information: link

EviToken._transfer(address,address,uint256) (#1194-1229) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (#1215)
-burnAmount = taxAmount.mul(burnRate).div(100) (#1216)
Consider ordering multiplication before division.

Additional information: link

EviToken.addLiquidity(uint256,uint256) (#1284-1297) ignores return value by eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
Ensure that all the return values of the function calls are used.

Additional information: link

BEP20.constructor(string,string).name (#412) shadows:
- BEP20.name() (#428-430) (function)
- IBEP20.name() (#122) (function)
BEP20.constructor(string,string).symbol (#412) shadows:
- BEP20.symbol() (#436-438) (function)
- IBEP20.symbol() (#117) (function)
BEP20.allowance(address,address).owner (#477) shadows:
- Ownable.owner() (#64-66) (function)
BEP20._approve(address,address,uint256).owner (#636) shadows:
- Ownable.owner() (#64-66) (function)
EviToken.swapAndLiquify().maxTransferAmount (#1234) shadows:
- EviToken.maxTransferAmount() (#1302-1304) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in EviToken.swapAndLiquify() (#1232-1262):
External calls:
- swapTokensForEth(half) (#1252)
- eviRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1274-1280)
- addLiquidity(otherHalf,newBalance) (#1258)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1258)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1258)
- _allowances[owner][spender] = amount (#640)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EviToken._transfer(address,address,uint256) (#1194-1229):
External calls:
- swapAndLiquify() (#1208)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
- eviRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1274-1280)
External calls sending eth:
- swapAndLiquify() (#1208)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#584)
- super._transfer(sender,recipient,amount) (#1212)
- Transfer(sender,recipient,amount) (#584)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (#1224)
- Transfer(sender,recipient,amount) (#584)
- super._transfer(sender,recipient,sendAmount) (#1226)
- Transfer(sender,recipient,amount) (#584)
- super._transfer(sender,address(this),liquidityAmount) (#1225)
Reentrancy in EviToken.swapAndLiquify() (#1232-1262):
External calls:
- swapTokensForEth(half) (#1252)
- eviRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1274-1280)
- addLiquidity(otherHalf,newBalance) (#1258)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1258)
- eviRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (#1289-1296)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#641)
- addLiquidity(otherHalf,newBalance) (#1258)
- SwapAndLiquify(half,newBalance,otherHalf) (#1260)
Apply the check-effects-interactions pattern.

Additional information: link

EviToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#1465-1506) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,EVI::delegateBySig: signature expired) (#1504)
Avoid relying on block.timestamp.

Additional information: link

EviToken.getChainId() (#1624-1628) uses assembly
- INLINE ASM (#1626)
Do not use evm assembly.

Additional information: link

EviToken._transfer(address,address,uint256) (#1194-1229) compares to a boolean constant:
-swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(eviRouter) != address(0) && eviPair != address(0) && sender != eviPair && sender != owner() (#1201-1206)
EviToken.antiWhale(address,address,uint256) (#1147-1157) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (#1150-1151)
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.4']
- >=0.6.0<0.8.0 (#6)
- >=0.6.0<0.8.0 (#33)
- >=0.6.4 (#101)
- >=0.6.0<0.8.0 (#198)
- >=0.4.0 (#360)
- >=0.6.2 (#658)
- >=0.6.2 (#756)
- >=0.5.0 (#802)
- >=0.5.0 (#857)
- 0.6.12 (#877)
Use one Solidity version.

Additional information: link

BEP20._burn(address,uint256) (#615-621) is never used and should be removed
BEP20._burnFrom(address,uint256) (#650-653) is never used and should be removed
Context._msgData() (#23-26) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#1055-1057) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#1093-1095) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#1072-1074) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#1079-1081) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#1065-1067) is never used and should be removed
SafeMath.mod(uint256,uint256) (#334-336) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#350-353) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.0<0.8.0 (#6) is too complex
Pragma version>=0.6.0<0.8.0 (#33) is too complex
Pragma version>=0.6.4 (#101) allows old versions
Pragma version>=0.6.0<0.8.0 (#198) is too complex
Pragma version>=0.4.0 (#360) allows old versions
Pragma version>=0.6.2 (#658) allows old versions
Pragma version>=0.6.2 (#756) allows old versions
Pragma version>=0.5.0 (#802) allows old versions
Pragma version>=0.5.0 (#857) 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

Function IUniswapV2Router01.WETH() (#662) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#819) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#820) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#837) is not in mixedCase
Parameter EviToken.mint(address,uint256)._to (#1187) is not in mixedCase
Parameter EviToken.mint(address,uint256)._amount (#1187) is not in mixedCase
Parameter EviToken.isExcludedFromAntiWhale(address)._account (#1309) is not in mixedCase
Parameter EviToken.updateTransferTaxRate(uint16)._transferTaxRate (#1320) is not in mixedCase
Parameter EviToken.updateBurnRate(uint16)._burnRate (#1330) is not in mixedCase
Parameter EviToken.updateMaxTransferAmountRate(uint16)._maxTransferAmountRate (#1340) is not in mixedCase
Parameter EviToken.updateMinAmountToLiquify(uint256)._minAmount (#1350) is not in mixedCase
Parameter EviToken.setExcludedFromAntiWhale(address,bool)._account (#1359) is not in mixedCase
Parameter EviToken.setExcludedFromAntiWhale(address,bool)._excluded (#1359) is not in mixedCase
Parameter EviToken.updateSwapAndLiquifyEnabled(bool)._enabled (#1367) is not in mixedCase
Parameter EviToken.updateEviRouter(address)._router (#1376) is not in mixedCase
Parameter EviToken.addMinter(address)._addMinter (#1630) is not in mixedCase
Parameter EviToken.delMinter(address)._delMinter (#1635) is not in mixedCase
Parameter EviToken.getMinter(uint256)._index (#1648) is not in mixedCase
Parameter EviToken.addBlockAddr(address)._addBlockAddr (#1659) is not in mixedCase
Parameter EviToken.delBlockAddr(address)._delblockAddr (#1664) is not in mixedCase
Parameter EviToken.getBlockAddr(uint256)._index (#1677) is not in mixedCase
Variable EviToken._delegates (#1407) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#667) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#668)
Prevent variables from having similar names.

Additional information: link

EviToken.maxTransferAmount() (#1302-1304) uses literals with too many digits:
- totalSupply().mul(maxTransferAmountRate).div(10000000) (#1303)
EviToken.slitherConstructorConstantVariables() (#1099-1688) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#1108)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#83-86)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#92-96)
symbol() should be declared external:
- BEP20.symbol() (#436-438)
decimals() should be declared external:
- BEP20.decimals() (#443-445)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#469-472)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#477-479)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#488-491)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#505-513)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#527-530)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#546-549)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#559-562)
mint(address,uint256) should be declared external:
- EviToken.mint(address,uint256) (#1187-1191)
isExcludedFromAntiWhale(address) should be declared external:
- EviToken.isExcludedFromAntiWhale(address) (#1309-1311)
updateTransferTaxRate(uint16) should be declared external:
- EviToken.updateTransferTaxRate(uint16) (#1320-1324)
updateBurnRate(uint16) should be declared external:
- EviToken.updateBurnRate(uint16) (#1330-1334)
updateMaxTransferAmountRate(uint16) should be declared external:
- EviToken.updateMaxTransferAmountRate(uint16) (#1340-1344)
updateMinAmountToLiquify(uint256) should be declared external:
- EviToken.updateMinAmountToLiquify(uint256) (#1350-1353)
setExcludedFromAntiWhale(address,bool) should be declared external:
- EviToken.setExcludedFromAntiWhale(address,bool) (#1359-1361)
updateSwapAndLiquifyEnabled(bool) should be declared external:
- EviToken.updateSwapAndLiquifyEnabled(bool) (#1367-1370)
updateEviRouter(address) should be declared external:
- EviToken.updateEviRouter(address) (#1376-1381)
transferOperator(address) should be declared external:
- EviToken.transferOperator(address) (#1394-1398)
addMinter(address) should be declared external:
- EviToken.addMinter(address) (#1630-1633)
delMinter(address) should be declared external:
- EviToken.delMinter(address) (#1635-1638)
getMinter(uint256) should be declared external:
- EviToken.getMinter(uint256) (#1648-1651)
addBlockAddr(address) should be declared external:
- EviToken.addBlockAddr(address) (#1659-1662)
delBlockAddr(address) should be declared external:
- EviToken.delBlockAddr(address) (#1664-1667)
getBlockAddr(uint256) should be declared external:
- EviToken.getBlockAddr(uint256) (#1677-1680)
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 Youtube account


Unable to crawl data from the website


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

Additional information: link


Unable to find token contract audit


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for EVI

News for EVI