DEXIT is bringing the fastest, most secure DEX to multiple high-performance blockchains. DEXIT is currently Researching on Ethereum and Binance Smart Chain, with Polkadot and others to follow.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in DEXIT._transfer(address,address,uint256) (#1119-1163):
External calls:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1058)
- _rOwned[_charityWalletAddress] = _rOwned[_charityWalletAddress].add(rCharity) (#1066)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1254)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1244)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1245)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#967)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1266)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1267)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1256)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _rTotal = _rTotal.sub(rFee) (#1011)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1060)
- _tOwned[_charityWalletAddress] = _tOwned[_charityWalletAddress].add(tCharity) (#1068)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1265)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#966)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1255)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#968)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Low level call in Address.sendValue(address,uint256) (#381-387):
- (success) = recipient.call{value: amount}() (#385)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#442-449):
- (success,returndata) = target.call{value: value}(data) (#447)
Low level call in Address.functionStaticCall(address,bytes,string) (#467-473):
- (success,returndata) = target.staticcall(data) (#471)
Low level call in Address.functionDelegateCall(address,bytes,string) (#491-497):
- (success,returndata) = target.delegatecall(data) (#495)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
DEXIT.addLiquidity(uint256,uint256) (#1206-1219) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
Ensure that all the return values of the function calls are used.
Additional information: link
DEXIT.allowance(address,address).owner (#883) shadows:
- Ownable.owner() (#547-549) (function)
DEXIT._approve(address,address,uint256).owner (#1111) shadows:
- Ownable.owner() (#547-549) (function)
Rename the local variables that shadow another component.
Additional information: link
DEXIT.setTaxFeePercent(uint256) (#984-986) should emit an event for:
- _taxFee = taxFee (#985)
DEXIT.setCharityFeePercent(uint256) (#988-990) should emit an event for:
- _charityFee = charityFee (#989)
DEXIT.setLiquidityFeePercent(uint256) (#992-994) should emit an event for:
- _liquidityFee = liquidityFee (#993)
DEXIT.setMaxTxPercent(uint256) (#996-1000) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#997-999)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DEXIT._transfer(address,address,uint256) (#1119-1163):
External calls:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _charityFee = _previousCharityFee (#1103)
- _charityFee = 0 (#1097)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _liquidityFee = _previousLiquidityFee (#1104)
- _liquidityFee = 0 (#1098)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _previousCharityFee = _charityFee (#1093)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _previousLiquidityFee = _liquidityFee (#1094)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _previousTaxFee = _taxFee (#1092)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1012)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- _taxFee = _previousTaxFee (#1102)
- _taxFee = 0 (#1096)
Reentrancy in DEXIT.constructor() (#839-855):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#844-845)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#851)
- _isExcludedFromFee[address(this)] = true (#852)
- uniswapV2Router = _uniswapV2Router (#848)
Reentrancy in DEXIT.swapAndLiquify(uint256) (#1165-1186):
External calls:
- swapTokensForEth(half) (#1177)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
- addLiquidity(otherHalf,newBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1183)
- _allowances[owner][spender] = amount (#1115)
Reentrancy in DEXIT.transferFrom(address,address,uint256) (#892-896):
External calls:
- _transfer(sender,recipient,amount) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
External calls sending eth:
- _transfer(sender,recipient,amount) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#894)
- _allowances[owner][spender] = amount (#1115)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DEXIT._transfer(address,address,uint256) (#1119-1163):
External calls:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1249)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- Transfer(sender,recipient,tTransferAmount) (#1260)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- Transfer(sender,recipient,tTransferAmount) (#1271)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
- Transfer(sender,recipient,tTransferAmount) (#973)
- _tokenTransfer(from,to,amount,takeFee) (#1162)
Reentrancy in DEXIT.constructor() (#839-855):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#844-845)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#854)
Reentrancy in DEXIT.swapAndLiquify(uint256) (#1165-1186):
External calls:
- swapTokensForEth(half) (#1177)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
- addLiquidity(otherHalf,newBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1116)
- addLiquidity(otherHalf,newBalance) (#1183)
- SwapAndLiquify(half,newBalance,otherHalf) (#1185)
Reentrancy in DEXIT.transferFrom(address,address,uint256) (#892-896):
External calls:
- _transfer(sender,recipient,amount) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1197-1203)
External calls sending eth:
- _transfer(sender,recipient,amount) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1211-1218)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1116)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#894)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#354-363) uses assembly
- INLINE ASM (#361)
Address._verifyCallResult(bool,bytes,string) (#499-516) uses assembly
- INLINE ASM (#508-511)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#499-516) is never used and should be removed
Address.functionCall(address,bytes) (#407-409) is never used and should be removed
Address.functionCall(address,bytes,string) (#417-419) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#432-434) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#442-449) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#481-483) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#491-497) is never used and should be removed
Address.functionStaticCall(address,bytes) (#457-459) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#467-473) is never used and should be removed
Address.isContract(address) (#354-363) is never used and should be removed
Address.sendValue(address,uint256) (#381-387) is never used and should be removed
Context._msgData() (#327-330) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#282-287) is never used and should be removed
SafeMath.mod(uint256,uint256) (#242-244) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#304-309) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#113-119) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#155-160) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#167-172) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#138-148) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#126-131) is never used and should be removed
Remove unused functions.
Additional information: link
DEXIT._rTotal (#801) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DEXIT._previousTaxFee (#809) is set pre-construction with a non-constant function or state variable:
- _taxFee
DEXIT._previousCharityFee (#812) is set pre-construction with a non-constant function or state variable:
- _charityFee
DEXIT._previousLiquidityFee (#814) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.3 (#21) 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 IUniswapV2Pair.DOMAIN_SEPARATOR() (#613) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#614) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#631) is not in mixedCase
Function IUniswapV2Router01.WETH() (#651) is not in mixedCase
Parameter DEXIT.setSwapAndLiquifyEnabled(bool)._enabled (#1002) is not in mixedCase
Parameter DEXIT.calculateTaxFee(uint256)._amount (#1071) is not in mixedCase
Parameter DEXIT.calculateCharityFee(uint256)._amount (#1077) is not in mixedCase
Parameter DEXIT.calculateLiquidityFee(uint256)._amount (#1083) is not in mixedCase
Variable DEXIT._taxFee (#808) is not in mixedCase
Variable DEXIT._charityFee (#811) is not in mixedCase
Variable DEXIT._liquidityFee (#813) is not in mixedCase
Variable DEXIT._maxTxAmount (#822) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#328)" inContext (#322-331)
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 (#656) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#657)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._transferToExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._getValues(uint256).rTransferAmount (#1017) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._transferStandard(address,address,uint256).tTransferAmount (#1243)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT._transferBothExcluded(address,address,uint256).rTransferAmount (#965) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT.reflectionFromToken(uint256,bool).rTransferAmount (#931) is too similar to DEXIT._transferFromExcluded(address,address,uint256).tTransferAmount (#1264)
Variable DEXIT._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1034) is too similar to DEXIT._getValues(uint256).tTransferAmount (#1016)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._transferBothExcluded(address,address,uint256).tTransferAmount (#965)
Variable DEXIT._transferStandard(address,address,uint256).rTransferAmount (#1243) is too similar to DEXIT._getTValues(uint256).tTransferAmount (#1025)
Variable DEXIT._transferFromExcluded(address,address,uint256).rTransferAmount (#1264) is too similar to DEXIT._transferToExcluded(address,address,uint256).tTransferAmount (#1253)
Prevent variables from having similar names.
Additional information: link
DEXIT.slitherConstructorVariables() (#784-1275) uses literals with too many digits:
- _maxTxAmount = 9000000 * 10 ** 6 (#822)
DEXIT.slitherConstructorVariables() (#784-1275) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 8000000 * 10 ** 6 (#823)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DEXIT._charityWalletAddress (#797) should be constant
DEXIT._decimals (#806) should be constant
DEXIT._name (#804) should be constant
DEXIT._symbol (#805) should be constant
DEXIT._tTotal (#800) should be constant
DEXIT.numTokensSellToAddToLiquidity (#823) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#566-569)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#575-579)
name() should be declared external:
- DEXIT.name() (#857-859)
symbol() should be declared external:
- DEXIT.symbol() (#861-863)
decimals() should be declared external:
- DEXIT.decimals() (#865-867)
totalSupply() should be declared external:
- DEXIT.totalSupply() (#869-871)
transfer(address,uint256) should be declared external:
- DEXIT.transfer(address,uint256) (#878-881)
allowance(address,address) should be declared external:
- DEXIT.allowance(address,address) (#883-885)
approve(address,uint256) should be declared external:
- DEXIT.approve(address,uint256) (#887-890)
transferFrom(address,address,uint256) should be declared external:
- DEXIT.transferFrom(address,address,uint256) (#892-896)
increaseAllowance(address,uint256) should be declared external:
- DEXIT.increaseAllowance(address,uint256) (#898-901)
decreaseAllowance(address,uint256) should be declared external:
- DEXIT.decreaseAllowance(address,uint256) (#903-906)
isExcludedFromReward(address) should be declared external:
- DEXIT.isExcludedFromReward(address) (#908-910)
totalFees() should be declared external:
- DEXIT.totalFees() (#912-914)
deliver(uint256) should be declared external:
- DEXIT.deliver(uint256) (#916-923)
reflectionFromToken(uint256,bool) should be declared external:
- DEXIT.reflectionFromToken(uint256,bool) (#925-934)
excludeFromReward(address) should be declared external:
- DEXIT.excludeFromReward(address) (#942-950)
excludeFromFee(address) should be declared external:
- DEXIT.excludeFromFee(address) (#976-978)
includeInFee(address) should be declared external:
- DEXIT.includeInFee(address) (#980-982)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DEXIT.setSwapAndLiquifyEnabled(bool) (#1002-1005)
isExcludedFromFee(address) should be declared external:
- DEXIT.isExcludedFromFee(address) (#1107-1109)
Use the external attribute for functions never called from the contract.
Additional information: link
DEXIT.includeInReward(address) (#952-963) has costly operations inside a loop:
- _excluded.pop() (#959)
Use a local variable to hold the loop computation result.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Token is not listed at Mobula.Finance
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Discord account