Contract creator or owner is blacklisted for past scams
TelegramToken.transferToAddressETH(address,uint256) (#996-998) sends eth to arbitrary user
Dangerous calls:
- recipient.transfer(amount) (#997)
TelegramToken.airdrop(address) (#1069-1082) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1078)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
TelegramToken.swapTokenForTokens(address,address,uint256) (#730-733) ignores return value by tokenC.transfer(account,amount) (#732)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in TelegramToken._transfer(address,address,uint256) (#631-679):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#661)
- _liquidityFee = 0 (#885)
- _liquidityFee = _buyLiquidityFee (#663)
- removeAllFee() (#668)
- _liquidityFee = 0 (#885)
- _liquidityFee = _sellLiquidityFee (#670)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _liquidityFee = _previousLiquidityFee (#891)
- _liquidityFee = 0 (#885)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#861)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#797)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#809)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rTotal = _rTotal.sub(rFee) (#816)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#863)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#796)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#806)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#787)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#808)
Apply the check-effects-interactions pattern.
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.
TelegramToken.setMarketingAddress(address)._marketingAddress (#963) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#964)
TelegramToken.setCharityAddress(address)._newaddress (#968) lacks a zero-check on :
- charityAddress = address(_newaddress) (#969)
TelegramToken.transferToAddressETH(address,uint256).recipient (#996) lacks a zero-check on :
- recipient.transfer(amount) (#997)
Check that the address is not zero.
Additional information: link
TelegramToken.swapTokens(uint256) (#681-690) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#686)
TelegramToken.swapTokens(uint256) (#681-690) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#687)
TelegramToken._transferStandard(address,address,uint256) (#768-782) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#771)
Consider ordering multiplication before division.
Additional information: link
TelegramToken.addLiquidity(uint256,uint256) (#735-748) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#740-747)
Ensure that all the return values of the function calls are used.
Additional information: link
TelegramToken.allowance(address,address).owner (#535) shadows:
- Ownable.owner() (#190-192) (function)
TelegramToken._approve(address,address,uint256).owner (#623) shadows:
- Ownable.owner() (#190-192) (function)
Rename the local variables that shadow another component.
Additional information: link
TelegramToken.setTaxFeePercent(uint256) (#907-909) should emit an event for:
- _taxFee = taxFee (#908)
TelegramToken.setLiquidityFeePercent(uint256) (#911-913) should emit an event for:
- _liquidityFee = liquidityFee (#912)
TelegramToken.setBuyTaxFeePercent(uint256) (#915-917) should emit an event for:
- _buyTaxFee = buyTaxFee (#916)
TelegramToken.setBuyLiquidityFeePercent(uint256) (#919-921) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#920)
TelegramToken.setSellTaxFeePercent(uint256) (#923-925) should emit an event for:
- _sellTaxFee = sellTaxFee (#924)
TelegramToken.setSellLiquidityFeePercent(uint256) (#927-929) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#928)
TelegramToken.setBurnFeePercent(uint256) (#931-933) should emit an event for:
- _burnFee = burnTaxFee (#932)
TelegramToken.setMaxTxAmount(uint256) (#935-937) should emit an event for:
- _maxTxAmount = maxTxAmount (#936)
TelegramToken.setMarketingFeePercent(uint256) (#939-941) should emit an event for:
- marketingDivisor = divisor (#940)
TelegramToken.setCharityFeePercent(uint256) (#943-945) should emit an event for:
- charityDivisor = divisor (#944)
TelegramToken.setNumTokensSellToAddToLiquidity(uint256) (#947-949) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#948)
TelegramToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#951-961) should emit an event for:
- charityDivisor = charity (#952)
- marketingDivisor = marketting (#953)
- _burnFee = burnTaxFee (#954)
- _sellLiquidityFee = sellLiquidityFee (#955)
- _sellTaxFee = sellTaxFee (#956)
- _buyLiquidityFee = buyLiquidityFee (#957)
- _buyTaxFee = buyTaxFee (#958)
- _liquidityFee = liquidityFee (#959)
- _taxFee = taxFee (#960)
TelegramToken.set(uint8,uint256) (#1039-1067) should emit an event for:
- _referEth = value (#1047)
- _referToken = value (#1049)
- _airdropEth = value (#1051)
- _airdropToken = value (#1053)
- salePrice = value (#1057)
- _airdorpBnb = value (#1060)
- _buyBnb = value (#1062)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in TelegramToken._transfer(address,address,uint256) (#631-679):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#661)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#664)
- removeAllFee() (#668)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#671)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _burnFee = _previousBurnFee (#892)
- _burnFee = 0 (#886)
- removeAllFee() (#661)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#668)
- _previousBurnFee = _burnFee (#883)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#661)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#668)
- _previousLiquidityFee = _liquidityFee (#882)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#661)
- _previousTaxFee = _taxFee (#881)
- removeAllFee() (#668)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tFeeTotal = _tFeeTotal.add(tFee) (#817)
- removeAllFee() (#661)
- _taxFee = 0 (#884)
- _taxFee = _buyTaxFee (#662)
- removeAllFee() (#668)
- _taxFee = 0 (#884)
- _taxFee = _sellTaxFee (#669)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _taxFee = _previousTaxFee (#890)
- _taxFee = 0 (#884)
Reentrancy in TelegramToken.constructor() (#497-507):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#504)
- _isExcludedFromFee[address(this)] = true (#505)
- uniswapV2Router = _uniswapV2Router (#503)
Reentrancy in TelegramToken.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
- _allowances[owner][spender] = amount (#627)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TelegramToken._transfer(address,address,uint256) (#631-679):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#997)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,deadAddress,tBurnAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#678)
Reentrancy in TelegramToken.constructor() (#497-507):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#501-502)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#506)
Reentrancy in TelegramToken.swapETHForTokens(uint256) (#713-728):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#720-725)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#727)
Reentrancy in TelegramToken.swapTokensForEth(uint256) (#693-711):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#710)
Reentrancy in TelegramToken.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#997)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#628)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#231-236) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#233)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#119-128) uses assembly
- INLINE ASM (#126)
Address._functionCallWithValue(address,bytes,uint256,string) (#156-173) uses assembly
- INLINE ASM (#165-168)
Do not use evm assembly.
Additional information: link
TelegramToken.includeInReward(address) (#610-621) has costly operations inside a loop:
- _excluded.pop() (#617)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#156-173) is never used and should be removed
Address.functionCall(address,bytes) (#139-141) is never used and should be removed
Address.functionCall(address,bytes,string) (#143-145) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#147-149) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#151-154) is never used and should be removed
Address.isContract(address) (#119-128) is never used and should be removed
Address.sendValue(address,uint256) (#130-136) is never used and should be removed
Context._msgData() (#52-55) is never used and should be removed
SafeMath.mod(uint256,uint256) (#107-109) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#111-114) is never used and should be removed
TelegramToken.addLiquidity(uint256,uint256) (#735-748) is never used and should be removed
TelegramToken.swapETHForTokens(uint256) (#713-728) is never used and should be removed
Remove unused functions.
Additional information: link
TelegramToken._rTotal (#453) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TelegramToken._previousTaxFee (#462) is set pre-construction with a non-constant function or state variable:
- _taxFee
TelegramToken._previousLiquidityFee (#465) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TelegramToken._buyTaxFee (#467) is set pre-construction with a non-constant function or state variable:
- _taxFee
TelegramToken._buyLiquidityFee (#468) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TelegramToken._sellTaxFee (#470) is set pre-construction with a non-constant function or state variable:
- _taxFee
TelegramToken._sellLiquidityFee (#471) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TelegramToken._previousBurnFee (#474) is set pre-construction with a non-constant function or state variable:
- _burnFee
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
Low level call in Address.sendValue(address,uint256) (#130-136):
- (success) = recipient.call{value: amount}() (#134)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#156-173):
- (success,returndata) = target.call{value: weiValue}(data) (#159)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._swAuth (#180) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#267) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#268) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#277) is not in mixedCase
Function IUniswapV2Router01.WETH() (#297) is not in mixedCase
Parameter TelegramToken.calculateTaxFee(uint256)._amount (#866) is not in mixedCase
Parameter TelegramToken.calculateLiquidityFee(uint256)._amount (#872) is not in mixedCase
Parameter TelegramToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#947) is not in mixedCase
Parameter TelegramToken.setMarketingAddress(address)._marketingAddress (#963) is not in mixedCase
Parameter TelegramToken.setCharityAddress(address)._newaddress (#968) is not in mixedCase
Parameter TelegramToken.setSwapAndLiquifyEnabled(bool)._enabled (#972) is not in mixedCase
Parameter TelegramToken.airdrop(address)._refer (#1069) is not in mixedCase
Parameter TelegramToken.buy(address)._refer (#1084) is not in mixedCase
Variable TelegramToken._taxFee (#461) is not in mixedCase
Variable TelegramToken._liquidityFee (#464) is not in mixedCase
Variable TelegramToken._buyTaxFee (#467) is not in mixedCase
Variable TelegramToken._buyLiquidityFee (#468) is not in mixedCase
Variable TelegramToken._sellTaxFee (#470) is not in mixedCase
Variable TelegramToken._sellLiquidityFee (#471) is not in mixedCase
Variable TelegramToken._burnFee (#473) is not in mixedCase
Variable TelegramToken._maxTxAmount (#480) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#53)" inContext (#46-56)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in TelegramToken._transfer(address,address,uint256) (#631-679):
External calls:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#661)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#664)
- removeAllFee() (#668)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#671)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _burnFee = _previousBurnFee (#892)
- _burnFee = 0 (#886)
- removeAllFee() (#661)
- _liquidityFee = 0 (#885)
- _liquidityFee = _buyLiquidityFee (#663)
- removeAllFee() (#668)
- _liquidityFee = 0 (#885)
- _liquidityFee = _sellLiquidityFee (#670)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _liquidityFee = _previousLiquidityFee (#891)
- _liquidityFee = 0 (#885)
- removeAllFee() (#661)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#668)
- _previousBurnFee = _burnFee (#883)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#661)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#668)
- _previousLiquidityFee = _liquidityFee (#882)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#661)
- _previousTaxFee = _taxFee (#881)
- removeAllFee() (#668)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#861)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#797)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#807)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#798)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#809)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rTotal = _rTotal.sub(rFee) (#816)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tFeeTotal = _tFeeTotal.add(tFee) (#817)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#863)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#796)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#806)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#787)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#808)
- removeAllFee() (#661)
- _taxFee = 0 (#884)
- _taxFee = _buyTaxFee (#662)
- removeAllFee() (#668)
- _taxFee = 0 (#884)
- _taxFee = _sellTaxFee (#669)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _taxFee = _previousTaxFee (#890)
- _taxFee = 0 (#884)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#780)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,deadAddress,tBurnAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#678)
Reentrancy in TelegramToken.transferFrom(address,address,uint256) (#544-548):
External calls:
- _transfer(sender,recipient,amount) (#545)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
- _allowances[owner][spender] = amount (#627)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#628)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#546)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#302) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#303)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._getTValues(uint256).tTransferAmount (#829)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._transferBothExcluded(address,address,uint256).rTransferAmount (#805) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken._transferStandard(address,address,uint256).rBurnAmount (#772) is too similar to TelegramToken._transferStandard(address,address,uint256).tBurnAmount (#771)
Variable TelegramToken._transferFromExcluded(address,address,uint256).rTransferAmount (#795) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Variable TelegramToken._transferToExcluded(address,address,uint256).rTransferAmount (#785) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._getValues(uint256).tTransferAmount (#821)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._transferToExcluded(address,address,uint256).tTransferAmount (#785)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._getValues(uint256).rTransferAmount (#822) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken.reflectionFromToken(uint256,bool).rTransferAmount (#589) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#837) is too similar to TelegramToken._transferBothExcluded(address,address,uint256).tTransferAmount (#805)
Variable TelegramToken._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to TelegramToken._transferFromExcluded(address,address,uint256).tTransferAmount (#795)
Prevent variables from having similar names.
Additional information: link
TelegramToken.prepareForPreSale() (#978-984) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#983)
TelegramToken.afterPreSale() (#986-992) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#991)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#441)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#452)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#480)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#481)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1020)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- _airdropToken = 300000000000000000000000000 (#1021)
TelegramToken.slitherConstructorVariables() (#434-1103) uses literals with too many digits:
- salePrice = 1000000000000 (#1029)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TelegramToken._auth (#1022) is never used in TelegramToken (#434-1103)
TelegramToken._auth2 (#1023) is never used in TelegramToken (#434-1103)
TelegramToken._authNum (#1024) is never used in TelegramToken (#434-1103)
Remove unused state variables.
Additional information: link
TelegramToken._auth (#1022) should be constant
TelegramToken._auth2 (#1023) should be constant
TelegramToken._authNum (#1024) should be constant
TelegramToken._decimals (#458) should be constant
TelegramToken._name (#456) should be constant
TelegramToken._symbol (#457) should be constant
TelegramToken._tTotal (#452) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#199-202)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#204-208)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#210-214)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#216-218)
getTime() should be declared external:
- Ownable.getTime() (#220-222)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#224-229)
unlock() should be declared external:
- Ownable.unlock() (#231-236)
name() should be declared external:
- TelegramToken.name() (#509-511)
symbol() should be declared external:
- TelegramToken.symbol() (#513-515)
decimals() should be declared external:
- TelegramToken.decimals() (#517-519)
totalSupply() should be declared external:
- TelegramToken.totalSupply() (#521-523)
transfer(address,uint256) should be declared external:
- TelegramToken.transfer(address,uint256) (#530-533)
allowance(address,address) should be declared external:
- TelegramToken.allowance(address,address) (#535-537)
approve(address,uint256) should be declared external:
- TelegramToken.approve(address,uint256) (#539-542)
transferFrom(address,address,uint256) should be declared external:
- TelegramToken.transferFrom(address,address,uint256) (#544-548)
increaseAllowance(address,uint256) should be declared external:
- TelegramToken.increaseAllowance(address,uint256) (#550-553)
decreaseAllowance(address,uint256) should be declared external:
- TelegramToken.decreaseAllowance(address,uint256) (#555-558)
isExcludedFromReward(address) should be declared external:
- TelegramToken.isExcludedFromReward(address) (#560-562)
totalFees() should be declared external:
- TelegramToken.totalFees() (#564-566)
minimumTokensBeforeSwapAmount() should be declared external:
- TelegramToken.minimumTokensBeforeSwapAmount() (#568-570)
deliver(uint256) should be declared external:
- TelegramToken.deliver(uint256) (#573-580)
reflectionFromToken(uint256,bool) should be declared external:
- TelegramToken.reflectionFromToken(uint256,bool) (#583-592)
excludeFromReward(address) should be declared external:
- TelegramToken.excludeFromReward(address) (#600-608)
swapTokenForTokens(address,address,uint256) should be declared external:
- TelegramToken.swapTokenForTokens(address,address,uint256) (#730-733)
isExcludedFromFee(address) should be declared external:
- TelegramToken.isExcludedFromFee(address) (#895-897)
excludeFromFee(address) should be declared external:
- TelegramToken.excludeFromFee(address) (#899-901)
includeInFee(address) should be declared external:
- TelegramToken.includeInFee(address) (#903-905)
recoverBalance(uint256) should be declared external:
- TelegramToken.recoverBalance(uint256) (#1000-1002)
doManualSwapTokens(uint256) should be declared external:
- TelegramToken.doManualSwapTokens(uint256) (#1005-1008)
clearAllETH() should be declared external:
- TelegramToken.clearAllETH() (#1032-1035)
set(uint8,uint256) should be declared external:
- TelegramToken.set(uint8,uint256) (#1039-1067)
airdrop(address) should be declared external:
- TelegramToken.airdrop(address) (#1069-1082)
buy(address) should be declared external:
- TelegramToken.buy(address) (#1084-1100)
Use the external attribute for functions never called from the contract.
Additional information: link
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 no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Unable to find Telegram and Twitter accounts