Velorex (VEX) is a decentralized finance token built on the BEP-20 platform. At Velorex we aim to facilitate global adoption of our cryptocurrency by introducing Debit Cards and Smart Wallets that dynamically interact with a variety of web3.0 and related programs within our block-chain from 2022 onward.
Currently, our primary focus is geared towards the implementation of the VEX token into a real world application in the form of essential innovative decentralized services. This will be realized by the ‘VEXchange’ which is being developed concurrently and will enable our users to experience low cost, high speed purchasing of products & procurement of services throughout the global online marketplace while providing a decentralized payment gateway, transfer protocol and asset storage capability for VEX token.
Reentrancy in Velorex._transfer(address,address,uint256) (Velorex.sol#246-287):
External calls:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
External calls sending eth:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _rOwned[to] = _rOwned[to].add(rAmount) (Velorex.sol#443)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#349)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#377)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#350)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#363)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#392)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#379)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#393)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#365)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (Velorex.sol#400)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tOwned[to] = _tOwned[to].add(tAmount) (Velorex.sol#445)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (Velorex.sol#391)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (Velorex.sol#362)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (Velorex.sol#378)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (Velorex.sol#364)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tTotal = _tTotal.sub(tBurn) (Velorex.sol#403)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is semi-renounced (passed to a contract)
Velorex.allowance(address,address).owner (Velorex.sol#110) shadows:
- Ownable.owner() (util.sol#92-94) (function)
Velorex._approve(address,address,uint256).owner (Velorex.sol#117) shadows:
- Ownable.owner() (util.sol#92-94) (function)
Rename the local variables that shadow another component.
Additional information: link
Velorex.reflectionFromToken(uint256,bool).tBurn_scope_2 (Velorex.sol#162) is a local variable never initialized
Velorex.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (Velorex.sol#162) is a local variable never initialized
Velorex.reflectionFromToken(uint256,bool).tFee_scope_0 (Velorex.sol#162) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Velorex.setTaxFeePercent(uint256) (Velorex.sol#209-211) should emit an event for:
- _taxFee = taxFee (Velorex.sol#210)
Velorex.setLiquidityFeePercent(uint256) (Velorex.sol#212-214) should emit an event for:
- _liquidityFee = liquidityFee (Velorex.sol#213)
Velorex.setBurnFeePercent(uint256) (Velorex.sol#215-217) should emit an event for:
- _burnFee = burnFee (Velorex.sol#216)
Velorex.setMaxTxPercent(uint256) (Velorex.sol#218-220) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (Velorex.sol#219)
Velorex.setMinLiquidityPercent(uint256) (Velorex.sol#221-223) should emit an event for:
- _numTokensSellToAddToLiquidity = _tTotal.mul(minLiquidityPercent).div(1000) (Velorex.sol#222)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor(address).initialOwner (util.sol#87) lacks a zero-check on :
- _owner = initialOwner (util.sol#88)
Velorex.constructor(address,address).charityWallet (Velorex.sol#66) lacks a zero-check on :
- _charityWallet = charityWallet (Velorex.sol#67)
Velorex.setUniswapPair(address).p (Velorex.sol#241) lacks a zero-check on :
- _uniswapV2Pair = p (Velorex.sol#242)
Check that the address is not zero.
Additional information: link
Variable 'Velorex.reflectionFromToken(uint256,bool).tBurn (Velorex.sol#155)' in Velorex.reflectionFromToken(uint256,bool) (Velorex.sol#151-168) potentially used before declaration: (tFee,tLiquidity,tBurn) = _getTValues(tAmount) (Velorex.sol#162)
Variable 'Velorex.reflectionFromToken(uint256,bool).tLiquidity (Velorex.sol#155)' in Velorex.reflectionFromToken(uint256,bool) (Velorex.sol#151-168) potentially used before declaration: (tFee,tLiquidity,tBurn) = _getTValues(tAmount) (Velorex.sol#162)
Variable 'Velorex.reflectionFromToken(uint256,bool).tFee (Velorex.sol#155)' in Velorex.reflectionFromToken(uint256,bool) (Velorex.sol#151-168) potentially used before declaration: (tFee,tLiquidity,tBurn) = _getTValues(tAmount) (Velorex.sol#162)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in Velorex._transfer(address,address,uint256) (Velorex.sol#246-287):
External calls:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
External calls sending eth:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _burnFee = 0 (Velorex.sol#318)
- _burnFee = previousBurnFee (Velorex.sol#340)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _liquidityFee = 0 (Velorex.sol#317)
- _liquidityFee = previousLiquidityFee (Velorex.sol#339)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tBurnTotal = _tBurnTotal.add(tBurn) (Velorex.sol#402)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tFeeTotal = _tFeeTotal.add(tFee) (Velorex.sol#401)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _taxFee = 0 (Velorex.sol#316)
- _taxFee = previousTaxFee (Velorex.sol#338)
Reentrancy in Velorex.constructor(address,address) (Velorex.sol#66-85):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (Velorex.sol#73)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (Velorex.sol#77)
- _isExcludedFromFee[address(this)] = true (Velorex.sol#78)
- _isExcludedFromFee[_charityWallet] = true (Velorex.sol#79)
- _isExcludedFromSwapAndLiquify[_uniswapV2Pair] = true (Velorex.sol#81)
- _isExcludedFromSwapAndLiquify[address(_uniswapV2Router)] = true (Velorex.sol#82)
- _uniswapV2Router = uniswapV2Router (Velorex.sol#74)
Reentrancy in Velorex.transferFrom(address,address,uint256) (Velorex.sol#124-128):
External calls:
- _transfer(sender,recipient,amount) (Velorex.sol#125)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
External calls sending eth:
- _transfer(sender,recipient,amount) (Velorex.sol#125)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (Velorex.sol#126)
- _allowances[owner][spender] = amount (Velorex.sol#121)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Velorex._transfer(address,address,uint256) (Velorex.sol#246-287):
External calls:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
External calls sending eth:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#354)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#397)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#383)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#369)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
Reentrancy in Velorex.constructor(address,address) (Velorex.sol#66-85):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (Velorex.sol#73)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (Velorex.sol#84)
Reentrancy in Velorex.swapAndLiquify(uint256) (Velorex.sol#288-294):
External calls:
- swapTokensForBnb(tokenAmount) (Velorex.sol#289)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
Event emitted after the call(s):
- CharitySent(_charityWallet,address(this).balance) (Velorex.sol#291)
Reentrancy in Velorex.transferFrom(address,address,uint256) (Velorex.sol#124-128):
External calls:
- _transfer(sender,recipient,amount) (Velorex.sol#125)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Velorex.sol#301-307)
External calls sending eth:
- _transfer(sender,recipient,amount) (Velorex.sol#125)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
Event emitted after the call(s):
- Approval(owner,spender,amount) (Velorex.sol#122)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (Velorex.sol#126)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (util.sol#123-128) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (util.sol#125)
Avoid relying on block.timestamp.
Additional information: link
Velorex.includeInReward(address) (Velorex.sol#184-196) has costly operations inside a loop:
- _excluded.pop() (Velorex.sol#192)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (util.sol#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (util.sol#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (util.sol#71-74) is never used and should be removed
Remove unused functions.
Additional information: link
Velorex._rTotal (Velorex.sol#32) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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 Velorex._isExcludedFromSwapAndLiquify (Velorex.sol#25) is not in mixedCase
Variable Velorex._charityWallet (Velorex.sol#28) is not in mixedCase
Constant Velorex._name (Velorex.sol#37) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Velorex._symbol (Velorex.sol#38) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Velorex._decimals (Velorex.sol#39) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Velorex._taxFee (Velorex.sol#41) is not in mixedCase
Variable Velorex._liquidityFee (Velorex.sol#42) is not in mixedCase
Variable Velorex._burnFee (Velorex.sol#43) is not in mixedCase
Variable Velorex._maxTxAmount (Velorex.sol#45) is not in mixedCase
Variable Velorex._numTokensSellToAddToLiquidity (Velorex.sol#46) is not in mixedCase
Variable Velorex._swapAndLiquifyEnabled (Velorex.sol#49) is not in mixedCase
Variable Velorex._uniswapV2Router (Velorex.sol#51) is not in mixedCase
Variable Velorex._uniswapV2Pair (Velorex.sol#52) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (util.sol#162) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (util.sol#163) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (util.sol#180) is not in mixedCase
Function IUniswapV2Router01.WETH() (util.sol#200) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (util.sol#11)" inContext (util.sol#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Velorex._transfer(address,address,uint256) (Velorex.sol#246-287):
External calls:
- swapAndLiquify(_numTokensSellToAddToLiquidity) (Velorex.sol#279)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _burnFee = 0 (Velorex.sol#318)
- _burnFee = previousBurnFee (Velorex.sol#340)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _liquidityFee = 0 (Velorex.sol#317)
- _liquidityFee = previousLiquidityFee (Velorex.sol#339)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _rOwned[to] = _rOwned[to].add(rAmount) (Velorex.sol#443)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#349)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#377)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#350)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#363)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (Velorex.sol#392)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#379)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#393)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (Velorex.sol#365)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _rTotal = _rTotal.sub(rFee).sub(rBurn) (Velorex.sol#400)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tBurnTotal = _tBurnTotal.add(tBurn) (Velorex.sol#402)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tFeeTotal = _tFeeTotal.add(tFee) (Velorex.sol#401)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tOwned[to] = _tOwned[to].add(tAmount) (Velorex.sol#445)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (Velorex.sol#391)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (Velorex.sol#362)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (Velorex.sol#378)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (Velorex.sol#364)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _tTotal = _tTotal.sub(tBurn) (Velorex.sol#403)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- _taxFee = 0 (Velorex.sol#316)
- _taxFee = previousTaxFee (Velorex.sol#338)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#354)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#397)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#383)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
- Transfer(sender,recipient,tTransferAmount) (Velorex.sol#369)
- _tokenTransfer(from,to,amount,takeFee) (Velorex.sol#286)
Reentrancy in Velorex.transferFrom(address,address,uint256) (Velorex.sol#124-128):
External calls:
- _transfer(sender,recipient,amount) (Velorex.sol#125)
- address(_charityWallet).transfer(address(this).balance) (Velorex.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (Velorex.sol#126)
- _allowances[owner][spender] = amount (Velorex.sol#121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (Velorex.sol#122)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (Velorex.sol#126)
Apply the check-effects-interactions pattern.
Additional information: link
Variable Velorex._transferStandard(address,address,uint256).rTransferAmount (Velorex.sol#346) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (Velorex.sol#419) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._transferFromExcluded(address,address,uint256).rTransferAmount (Velorex.sol#388) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex._transferBothExcluded(address,address,uint256).rTransferAmount (Velorex.sol#359) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex.reflectionFromToken(uint256,bool).rTransferAmount (Velorex.sol#164) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex.reflectionFromToken(uint256,bool).rTransferAmount (Velorex.sol#164) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex._transferStandard(address,address,uint256).rTransferAmount (Velorex.sol#346) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex.reflectionFromToken(uint256,bool).rTransferAmount (Velorex.sol#164) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (Velorex.sol#419) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex._transferFromExcluded(address,address,uint256).rTransferAmount (Velorex.sol#388) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex._transferFromExcluded(address,address,uint256).rTransferAmount (Velorex.sol#388) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex._transferToExcluded(address,address,uint256).rTransferAmount (Velorex.sol#374) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex._transferFromExcluded(address,address,uint256).rTransferAmount (Velorex.sol#388) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._transferStandard(address,address,uint256).rTransferAmount (Velorex.sol#346) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex._transferStandard(address,address,uint256).rTransferAmount (Velorex.sol#346) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex.reflectionFromToken(uint256,bool).rTransferAmount (Velorex.sol#164) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (Velorex.sol#419) is too similar to Velorex._transferStandard(address,address,uint256).tTransferAmount (Velorex.sol#344)
Variable Velorex._transferStandard(address,address,uint256).rTransferAmount (Velorex.sol#346) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable Velorex._transferBothExcluded(address,address,uint256).rTransferAmount (Velorex.sol#359) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._transferBothExcluded(address,address,uint256).rTransferAmount (Velorex.sol#359) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable Velorex._transferToExcluded(address,address,uint256).rTransferAmount (Velorex.sol#374) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (Velorex.sol#419) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex._transferBothExcluded(address,address,uint256).rTransferAmount (Velorex.sol#359) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex._transferToExcluded(address,address,uint256).rTransferAmount (Velorex.sol#374) is too similar to Velorex._transferBothExcluded(address,address,uint256).tTransferAmount (Velorex.sol#357)
Variable Velorex._transferFromExcluded(address,address,uint256).rTransferAmount (Velorex.sol#388) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable Velorex._transferToExcluded(address,address,uint256).rTransferAmount (Velorex.sol#374) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable Velorex._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (Velorex.sol#419) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable Velorex._transferToExcluded(address,address,uint256).rTransferAmount (Velorex.sol#374) is too similar to Velorex._transferToExcluded(address,address,uint256).tTransferAmount (Velorex.sol#372)
Variable Velorex._transferBothExcluded(address,address,uint256).rTransferAmount (Velorex.sol#359) is too similar to Velorex._getTValues(uint256).tTransferAmount (Velorex.sol#409)
Variable Velorex.reflectionFromToken(uint256,bool).rTransferAmount (Velorex.sol#164) is too similar to Velorex._transferFromExcluded(address,address,uint256).tTransferAmount (Velorex.sol#386)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (util.sol#205) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (util.sol#206)
Prevent variables from having similar names.
Additional information: link
Velorex.slitherConstructorVariables() (Velorex.sol#17-449) uses literals with too many digits:
- _tTotal = 500000000 * 10 ** 9 (Velorex.sol#31)
Velorex.slitherConstructorVariables() (Velorex.sol#17-449) uses literals with too many digits:
- _maxTxAmount = 500000000 * 10 ** 9 (Velorex.sol#45)
Velorex.slitherConstructorVariables() (Velorex.sol#17-449) uses literals with too many digits:
- _numTokensSellToAddToLiquidity = 100000 * 10 ** 9 (Velorex.sol#46)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- Velorex.name() (Velorex.sol#90-92)
symbol() should be declared external:
- Velorex.symbol() (Velorex.sol#93-95)
decimals() should be declared external:
- Velorex.decimals() (Velorex.sol#96-98)
totalSupply() should be declared external:
- Velorex.totalSupply() (Velorex.sol#99-101)
transfer(address,uint256) should be declared external:
- Velorex.transfer(address,uint256) (Velorex.sol#106-109)
allowance(address,address) should be declared external:
- Velorex.allowance(address,address) (Velorex.sol#110-112)
approve(address,uint256) should be declared external:
- Velorex.approve(address,uint256) (Velorex.sol#113-116)
transferFrom(address,address,uint256) should be declared external:
- Velorex.transferFrom(address,address,uint256) (Velorex.sol#124-128)
increaseAllowance(address,uint256) should be declared external:
- Velorex.increaseAllowance(address,uint256) (Velorex.sol#129-132)
decreaseAllowance(address,uint256) should be declared external:
- Velorex.decreaseAllowance(address,uint256) (Velorex.sol#133-136)
deliver(uint256) should be declared external:
- Velorex.deliver(uint256) (Velorex.sol#139-150)
reflectionFromToken(uint256,bool) should be declared external:
- Velorex.reflectionFromToken(uint256,bool) (Velorex.sol#151-168)
excludeFromReward(address) should be declared external:
- Velorex.excludeFromReward(address) (Velorex.sol#175-183)
totalFees() should be declared external:
- Velorex.totalFees() (Velorex.sol#197-199)
totalBurn() should be declared external:
- Velorex.totalBurn() (Velorex.sol#200-202)
excludeFromFee(address) should be declared external:
- Velorex.excludeFromFee(address) (Velorex.sol#203-205)
includeInFee(address) should be declared external:
- Velorex.includeInFee(address) (Velorex.sol#206-208)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Velorex.setSwapAndLiquifyEnabled(bool) (Velorex.sol#224-227)
isExcludedFromFee(address) should be declared external:
- Velorex.isExcludedFromFee(address) (Velorex.sol#228-230)
isExcludedFromReward(address) should be declared external:
- Velorex.isExcludedFromReward(address) (Velorex.sol#231-233)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (util.sol#101-104)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (util.sol#106-110)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (util.sol#112-114)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (util.sol#116-121)
unlock() should be declared external:
- Ownable.unlock() (util.sol#123-128)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Twitter link on the website
Token is not listed at Mobula.Finance
Additional information: link
Token has relatively low CoinGecko rank
Unable to find Youtube account