Innovation in Real Estate using Blockchain Technology
$RTech’s position in the blockchain ecosystem is now an Enabler, which will enable everyone in the world to create valuable transactions as big or small parts of future collaborative ecosystems
RTech.airdrop(address) (#1033-1046) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1042)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in RTech._transfer(address,address,uint256) (#582-631):
External calls:
- swapTokens(contractTokenBalance) (#602)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
External calls sending eth:
- swapTokens(contractTokenBalance) (#602)
- recipient.transfer(amount) (#955)
State variables written after the call(s):
- removeAllFee() (#613)
- _liquidityFee = 0 (#837)
- _liquidityFee = _buyLiquidityFee (#615)
- removeAllFee() (#620)
- _liquidityFee = 0 (#837)
- _liquidityFee = _sellLiquidityFee (#622)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _liquidityFee = _previousLiquidityFee (#843)
- _liquidityFee = 0 (#837)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#749)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#750)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#727)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#728)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#729)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _rTotal = _rTotal.sub(rFee) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#815)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#748)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#758)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#739)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#760)
Apply the check-effects-interactions pattern.
Additional information: link
RTech.swapTokenForTokens(address,address,uint256) (#682-685) ignores return value by tokenC.transfer(account,amount) (#684)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Redundant expression "this (#29)" inContext (#22-32)
Remove redundant statements if they congest code but offer no value.
Additional information: link
RTech._authNum (#981) is never used in RTech (#383-1048)
RTech._auth (#979) is never used in RTech (#383-1048)
Ownable._previousOwner (#155) is never used in RTech (#383-1048)
Ownable._lockTime (#156) is never used in RTech (#383-1048)
RTech._auth2 (#980) is never used in RTech (#383-1048)
Remove unused state variables.
Additional information: link
RTech.addLiquidity(uint256,uint256) (#687-700) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
Ensure that all the return values of the function calls are used.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#107-113):
- (success) = recipient.call{value: amount}() (#111)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#133-150):
- (success,returndata) = target.call{value: weiValue}(data) (#136)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
RTech._approve(address,address,uint256).owner (#574) shadows:
- Ownable.owner() (#167-169) (function)
RTech.allowance(address,address).owner (#485) shadows:
- Ownable.owner() (#167-169) (function)
Rename the local variables that shadow another component.
Additional information: link
RTech.swapTokens(uint256) (#633-642) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#639)
RTech._transferStandard(address,address,uint256) (#720-734) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#723)
RTech.swapTokens(uint256) (#633-642) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#638)
Consider ordering multiplication before division.
Additional information: link
RTech.setBuyLiquidityFeePercent(uint256) (#875-877) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#876)
RTech.setBuyTaxFeePercent(uint256) (#871-873) should emit an event for:
- _buyTaxFee = buyTaxFee (#872)
RTech.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#907-917) should emit an event for:
- charityDivisor = charity (#908)
- marketingDivisor = marketting (#909)
- _burnFee = burnTaxFee (#910)
- _sellLiquidityFee = sellLiquidityFee (#911)
- _sellTaxFee = sellTaxFee (#912)
- _buyLiquidityFee = buyLiquidityFee (#913)
- _buyTaxFee = buyTaxFee (#914)
- _liquidityFee = liquidityFee (#915)
- _taxFee = taxFee (#916)
RTech.setSellLiquidityFeePercent(uint256) (#883-885) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#884)
RTech.setNumTokensSellToAddToLiquidity(uint256) (#903-905) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#904)
RTech.setSellTaxFeePercent(uint256) (#879-881) should emit an event for:
- _sellTaxFee = sellTaxFee (#880)
Emit an event for critical parameter changes.
Additional information: link
RTech.setCharityAddress(address)._newaddress (#924) lacks a zero-check on :
- charityAddress = address(_newaddress) (#925)
RTech.setMarketingAddress(address)._marketingAddress (#919) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#920)
Check that the address is not zero.
Additional information: link
Reentrancy in RTech.transferFrom(address,address,uint256) (#495-499):
External calls:
- _transfer(sender,recipient,amount) (#496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
External calls sending eth:
- _transfer(sender,recipient,amount) (#496)
- recipient.transfer(amount) (#955)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#497)
- _allowances[owner][spender] = amount (#578)
Reentrancy in RTech._transfer(address,address,uint256) (#582-631):
External calls:
- swapTokens(contractTokenBalance) (#602)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
External calls sending eth:
- swapTokens(contractTokenBalance) (#602)
- recipient.transfer(amount) (#955)
State variables written after the call(s):
- removeAllFee() (#613)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#616)
- removeAllFee() (#620)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#623)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _burnFee = _previousBurnFee (#844)
- _burnFee = 0 (#838)
- removeAllFee() (#613)
- _previousBurnFee = _burnFee (#835)
- removeAllFee() (#620)
- _previousBurnFee = _burnFee (#835)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousBurnFee = _burnFee (#835)
- removeAllFee() (#613)
- _previousLiquidityFee = _liquidityFee (#834)
- removeAllFee() (#620)
- _previousLiquidityFee = _liquidityFee (#834)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousLiquidityFee = _liquidityFee (#834)
- removeAllFee() (#613)
- _previousTaxFee = _taxFee (#833)
- removeAllFee() (#620)
- _previousTaxFee = _taxFee (#833)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousTaxFee = _taxFee (#833)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _tFeeTotal = _tFeeTotal.add(tFee) (#769)
- removeAllFee() (#613)
- _taxFee = 0 (#836)
- _taxFee = _buyTaxFee (#614)
- removeAllFee() (#620)
- _taxFee = 0 (#836)
- _taxFee = _sellTaxFee (#621)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#836)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in RTech.swapTokensForEth(uint256) (#645-663):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#662)
Reentrancy in RTech.swapETHForTokens(uint256) (#665-680):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#672-677)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#679)
Reentrancy in RTech._transfer(address,address,uint256) (#582-631):
External calls:
- swapTokens(contractTokenBalance) (#602)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
External calls sending eth:
- swapTokens(contractTokenBalance) (#602)
- recipient.transfer(amount) (#955)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#764)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,deadAddress,tBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#630)
Reentrancy in RTech.transferFrom(address,address,uint256) (#495-499):
External calls:
- _transfer(sender,recipient,amount) (#496)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#654-660)
External calls sending eth:
- _transfer(sender,recipient,amount) (#496)
- recipient.transfer(amount) (#955)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#579)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#497)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#95-104) uses assembly
- INLINE ASM (#102)
Address._functionCallWithValue(address,bytes,uint256,string) (#133-150) uses assembly
- INLINE ASM (#142-145)
Do not use evm assembly.
Additional information: link
RTech.includeInReward(address) (#561-572) has costly operations inside a loop:
- _excluded.pop() (#568)
Use a local variable to hold the loop computation result.
Additional information: link
RTech.addLiquidity(uint256,uint256) (#687-700) is never used and should be removed
Address.sendValue(address,uint256) (#107-113) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#124-126) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#87-90) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#128-131) is never used and should be removed
Context._msgData() (#28-31) is never used and should be removed
SafeMath.mod(uint256,uint256) (#83-85) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#133-150) is never used and should be removed
Address.isContract(address) (#95-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#120-122) is never used and should be removed
RTech.swapETHForTokens(uint256) (#665-680) is never used and should be removed
Address.functionCall(address,bytes) (#116-118) is never used and should be removed
Remove unused functions.
Additional information: link
RTech._sellTaxFee (#419) is set pre-construction with a non-constant function or state variable:
- _taxFee
RTech._previousTaxFee (#411) is set pre-construction with a non-constant function or state variable:
- _taxFee
RTech._sellLiquidityFee (#420) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RTech._buyTaxFee (#416) is set pre-construction with a non-constant function or state variable:
- _taxFee
RTech._previousBurnFee (#423) is set pre-construction with a non-constant function or state variable:
- _burnFee
RTech._previousLiquidityFee (#414) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RTech._rTotal (#402) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
RTech._buyLiquidityFee (#417) 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
Function RTech.AIRDROPEND(bool) (#994-997) is not in mixedCase
Variable RTech._taxFee (#410) is not in mixedCase
Variable RTech._buyTaxFee (#416) is not in mixedCase
Parameter RTech.setCharityAddress(address)._newaddress (#924) is not in mixedCase
Parameter RTech.calculateTaxFee(uint256)._amount (#818) is not in mixedCase
Parameter RTech.AIRDROPEND(bool)._status (#994) is not in mixedCase
Parameter RTech.setSwapAndLiquifyEnabled(bool)._enabled (#928) is not in mixedCase
Variable RTech._liquidityFee (#413) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#217) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#226) is not in mixedCase
Variable RTech._sellLiquidityFee (#420) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#216) is not in mixedCase
Variable RTech._sellTaxFee (#419) is not in mixedCase
Parameter RTech.setMarketingAddress(address)._marketingAddress (#919) is not in mixedCase
Parameter RTech.airdrop(address)._refer (#1033) is not in mixedCase
Variable RTech._maxTxAmount (#430) is not in mixedCase
Variable Ownable._swAuth (#157) is not in mixedCase
Variable RTech._buyLiquidityFee (#417) is not in mixedCase
Parameter RTech.calculateLiquidityFee(uint256)._amount (#824) is not in mixedCase
Parameter RTech.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#903) is not in mixedCase
Function IUniswapV2Router01.WETH() (#246) is not in mixedCase
Variable RTech._burnFee (#422) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in RTech.transferFrom(address,address,uint256) (#495-499):
External calls:
- _transfer(sender,recipient,amount) (#496)
- recipient.transfer(amount) (#955)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#497)
- _allowances[owner][spender] = amount (#578)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#579)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#497)
Reentrancy in RTech._transfer(address,address,uint256) (#582-631):
External calls:
- swapTokens(contractTokenBalance) (#602)
- recipient.transfer(amount) (#955)
State variables written after the call(s):
- removeAllFee() (#613)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#616)
- removeAllFee() (#620)
- _burnFee = 0 (#838)
- _burnFee = _previousBurnFee (#623)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _burnFee = _previousBurnFee (#844)
- _burnFee = 0 (#838)
- removeAllFee() (#613)
- _liquidityFee = 0 (#837)
- _liquidityFee = _buyLiquidityFee (#615)
- removeAllFee() (#620)
- _liquidityFee = 0 (#837)
- _liquidityFee = _sellLiquidityFee (#622)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _liquidityFee = _previousLiquidityFee (#843)
- _liquidityFee = 0 (#837)
- removeAllFee() (#613)
- _previousBurnFee = _burnFee (#835)
- removeAllFee() (#620)
- _previousBurnFee = _burnFee (#835)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousBurnFee = _burnFee (#835)
- removeAllFee() (#613)
- _previousLiquidityFee = _liquidityFee (#834)
- removeAllFee() (#620)
- _previousLiquidityFee = _liquidityFee (#834)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousLiquidityFee = _liquidityFee (#834)
- removeAllFee() (#613)
- _previousTaxFee = _taxFee (#833)
- removeAllFee() (#620)
- _previousTaxFee = _taxFee (#833)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _previousTaxFee = _taxFee (#833)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#813)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#749)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#750)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#727)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#728)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#729)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _rTotal = _rTotal.sub(rFee) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _tFeeTotal = _tFeeTotal.add(tFee) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#815)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#748)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#758)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#739)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#760)
- removeAllFee() (#613)
- _taxFee = 0 (#836)
- _taxFee = _buyTaxFee (#614)
- removeAllFee() (#620)
- _taxFee = 0 (#836)
- _taxFee = _sellTaxFee (#621)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- _taxFee = _previousTaxFee (#842)
- _taxFee = 0 (#836)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#743)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#753)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#764)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,recipient,tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#630)
- Transfer(sender,deadAddress,tBurnAmount) (#733)
- _tokenTransfer(from,to,amount,takeFee) (#630)
Apply the check-effects-interactions pattern.
Additional information: link
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._transferToExcluded(address,address,uint256).rTransferAmount (#737) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#251) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#252)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._transferStandard(address,address,uint256).rBurnAmount (#724) is too similar to RTech._transferStandard(address,address,uint256).tBurnAmount (#723)
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._getTValues(uint256).tTransferAmount (#781)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#789) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._transferFromExcluded(address,address,uint256).rTransferAmount (#747) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._transferBothExcluded(address,address,uint256).tTransferAmount (#757)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._getValues(uint256).tTransferAmount (#773)
Variable RTech._transferBothExcluded(address,address,uint256).rTransferAmount (#757) is too similar to RTech._transferToExcluded(address,address,uint256).tTransferAmount (#737)
Variable RTech.reflectionFromToken(uint256,bool).rTransferAmount (#540) is too similar to RTech._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable RTech._getValues(uint256).rTransferAmount (#774) is too similar to RTech._transferFromExcluded(address,address,uint256).tTransferAmount (#747)
Prevent variables from having similar names.
Additional information: link
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#401)
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- _airdropToken = 1000000000000000000000 (#978)
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000000000000000000 * 10 ** 18 (#431)
RTech.prepareForPreSale() (#934-941) uses literals with too many digits:
- _maxTxAmount = 10000000000000000000 * 10 ** 18 (#940)
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- _maxTxAmount = 100000000000000000000000 * 10 ** 18 (#430)
RTech.afterPreSale() (#943-950) uses literals with too many digits:
- _maxTxAmount = 1000000000000000000000 * 10 ** 18 (#949)
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#977)
RTech.slitherConstructorVariables() (#383-1048) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#390)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#155) should be constant
RTech._auth (#979) should be constant
RTech._authNum (#981) should be constant
RTech._tTotal (#401) should be constant
RTech._decimals (#407) should be constant
Ownable._lockTime (#156) should be constant
RTech._name (#405) should be constant
RTech._symbol (#406) should be constant
RTech._auth2 (#980) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
doManualSwapTokens(uint256) should be declared external:
- RTech.doManualSwapTokens(uint256) (#963-966)
minimumTokensBeforeSwapAmount() should be declared external:
- RTech.minimumTokensBeforeSwapAmount() (#519-521)
decimals() should be declared external:
- RTech.decimals() (#467-469)
name() should be declared external:
- RTech.name() (#459-461)
transfer(address,uint256) should be declared external:
- RTech.transfer(address,uint256) (#480-483)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#176-179)
airdrop(address) should be declared external:
- RTech.airdrop(address) (#1033-1046)
totalFees() should be declared external:
- RTech.totalFees() (#515-517)
increaseAllowance(address,uint256) should be declared external:
- RTech.increaseAllowance(address,uint256) (#501-504)
excludeFromFee(address) should be declared external:
- RTech.excludeFromFee(address) (#851-854)
totalSupply() should be declared external:
- RTech.totalSupply() (#471-473)
isExcludedFromReward(address) should be declared external:
- RTech.isExcludedFromReward(address) (#511-513)
set(uint8,uint256) should be declared external:
- RTech.set(uint8,uint256) (#1001-1031)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#181-185)
AIRDROPEND(bool) should be declared external:
- RTech.AIRDROPEND(bool) (#994-997)
approve(address,uint256) should be declared external:
- RTech.approve(address,uint256) (#489-493)
excludeFromReward(address) should be declared external:
- RTech.excludeFromReward(address) (#551-559)
decreaseAllowance(address,uint256) should be declared external:
- RTech.decreaseAllowance(address,uint256) (#506-509)
deliver(uint256) should be declared external:
- RTech.deliver(uint256) (#524-531)
includeInFee(address) should be declared external:
- RTech.includeInFee(address) (#856-859)
transferFrom(address,address,uint256) should be declared external:
- RTech.transferFrom(address,address,uint256) (#495-499)
swapTokenForTokens(address,address,uint256) should be declared external:
- RTech.swapTokenForTokens(address,address,uint256) (#682-685)
symbol() should be declared external:
- RTech.symbol() (#463-465)
allowance(address,address) should be declared external:
- RTech.allowance(address,address) (#485-487)
reflectionFromToken(uint256,bool) should be declared external:
- RTech.reflectionFromToken(uint256,bool) (#534-543)
recoverBalance(uint256) should be declared external:
- RTech.recoverBalance(uint256) (#958-960)
isExcludedFromFee(address) should be declared external:
- RTech.isExcludedFromFee(address) (#847-849)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Contract has 0% buy tax and 100% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account