VIP Token is your special access pass to exclusive concerts, clubs, restaurants, celebrity meet and greets and more! Hold VIP Token and use the VIP app to achieve different tier levels based on the amount of tokens you own.
VIPTOKEN.addLiquidity(uint256,uint256) (#1060-1073) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in VIPTOKEN._transfer(address,address,uint256) (#985-1015):
External calls:
- swapAndLiquify(contractTokenBalance) (#1010)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1010)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1014)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#935)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1120)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1121)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#876)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1131)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#878)
- _tokenTransfer(from,to,amount) (#1014)
- _rTotal = _rTotal.sub(rFee) (#890)
- _tokenTransfer(from,to,amount) (#1014)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#937)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#875)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1139)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1130)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#877)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
VIPTOKEN.addLiquidity(uint256,uint256) (#1060-1073) ignores return value by uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Ensure that all the return values of the function calls are used.
Additional information: link
VIPTOKEN._approve(address,address,uint256).owner (#977) shadows:
- Ownable.owner() (#422-424) (function)
Rename the local variables that shadow another component.
Additional information: link
VIPTOKEN.setMinSell(uint256) (#1205-1207) should emit an event for:
- numTokensSellToAddToLiquidity = amount (#1206)
Emit an event for critical parameter changes.
Additional information: link
VIPTOKEN.setMarketingWallet(address,address,address,address).newWallet4 (#1182) lacks a zero-check on :
- marketingWallet4 = newWallet4 (#1186)
Check that the address is not zero.
Additional information: link
Reentrancy in VIPTOKEN.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
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 (#981)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in VIPTOKEN.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#982)
- _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() (#469-474) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#471)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#367-388) uses assembly
- INLINE ASM (#380-383)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#235-238) is never used and should be removed
Remove unused functions.
Additional information: link
VIPTOKEN._previousMarketingFee (#718) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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
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._functionCallWithValue(address,bytes,uint256,string) (#367-388):
- (success,returndata) = target.call{value: weiValue}(data) (#371)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable VIPTOKEN._marketingFee (#713) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#247)" inContext (#241-250)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable VIPTOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to VIPTOKEN._getValues(uint256).tTransferAmount (#895)
Prevent variables from having similar names.
Additional information: link
VIPTOKEN._tTotal (#696) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setSwapAndLiquifyEnabled(bool) should be declared external:
- VIPTOKEN.setSwapAndLiquifyEnabled(bool) (#1219-1222)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
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 scam / price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid
Unable to find Discord account