Telegram Inu project launched on August 9, 2022 is the loved pet dog memecoin of the most widely used messenger app in crypto space. It is based Ecosystem of utilities all designed to generate additional token volume which will generate additional passive income for all the holders.
This will be a one of a kind suite of applications that will independently generate revenue from various activities such as buying and selling NFT's, coins and other utilities. 100% of the net profits generated by the utilities will be used for the $TINU BuyBack & Burn system.
Upcoming utilities
DAO
Instead of relying on a single individual or small collection of individuals to guide the direction of the entity, Telegram Inu intends to give every member a voice, vote, and opportunity to propose initiatives
Telegram Inu Swap
Trade token on $TINU, the fastest and the easiest swap, better, faster, and less expensive Defi Platform.
STAKING PLATFORM
Telegram Inu is a decentralized staking protocol backed by an Audited code and built for banking efficiency.
Market Place
A one of a kind NFT Market Place where one can mint, sell and buy NFTs from a variety of categories.
TelegramInu.addLiquidity(uint256,uint256) (#796-810) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
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 TelegramInu._transfer(address,address,uint256) (#686-748):
External calls:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _rOwned[to] = _rOwned[to] + rAmount (#657)
- _rOwned[sender] = _rOwned[sender] - rAmount (#849)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#854)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _rTotal = _rTotal - rFee (#615)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _tOwned[to] = _tOwned[to] + tAmount (#659)
- _tOwned[sender] = _tOwned[sender] - tAmount (#851)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#856)
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.
TelegramInu._approve(address,address,uint256).owner (#678) shadows:
- Ownable.owner() (#43-45) (function)
TelegramInu.allowance(address,address).owner (#458) shadows:
- Ownable.owner() (#43-45) (function)
Rename the local variables that shadow another component.
Additional information: link
TelegramInu.setMinTokenBalance(uint256) (#544-546) should emit an event for:
- _minTokenBalance = minTokenBalance (#545)
TelegramInu.cooldownEnabled(bool,uint8) (#579-582) should emit an event for:
- cooldownTimerInterval = _interval (#581)
TelegramInu.setSellFees(uint256,uint256) (#574-577) should emit an event for:
- _taxFeeSell = taxFee (#575)
- _liquidityFeeSell = liquidityFee (#576)
TelegramInu.setBuyFees(uint256,uint256) (#569-572) should emit an event for:
- _taxFeeBuy = taxFee (#570)
- _liquidityFeeBuy = liquidityFee (#571)
TelegramInu.setLiquidityPercentages(uint256,uint256) (#589-592) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#590)
- _percentageOfLiquidityForMarketing = marketingFee (#591)
TelegramInu.setFeesTransfer(uint256,uint256) (#564-567) should emit an event for:
- _taxFee = taxFee (#565)
- _liquidityFee = liquidityFee (#566)
Emit an event for critical parameter changes.
Additional information: link
Context._msgData() (#10-13) is never used and should be removed
Remove unused functions.
Additional information: link
TelegramInu._rTotal (#307) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TelegramInu._maxTxAmount (#329) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
TelegramInu._antiWhaleThreshold (#347) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
TelegramInu._minTokenBalance (#330) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
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
TelegramInu.swapAndLiquify(uint256) (#750-776) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#761)
TelegramInu.swapAndLiquify(uint256) (#750-776) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#760)
Consider ordering multiplication before division.
Additional information: link
TelegramInu.setUniswapPair(address).p (#606) lacks a zero-check on :
- uniswapV2Pair = p (#607)
TelegramInu.constructor(address,address,address,address)._lpFeeWallet (#373) lacks a zero-check on :
- _lpFeeReceiver = _lpFeeWallet (#379)
TelegramInu.constructor(address,address,address,address)._mwallet (#370) lacks a zero-check on :
- _TeamWallet = _mwallet (#377)
Ownable.constructor().msgSender (#36) lacks a zero-check on :
- _owner = msgSender (#37)
TelegramInu.constructor(address,address,address,address)._twallet (#371) lacks a zero-check on :
- _marketingWallet = _twallet (#378)
TelegramInu.setAddresses(address,address).marketingWallet (#584) lacks a zero-check on :
- _marketingWallet = marketingWallet (#586)
TelegramInu.setAddresses(address,address).teamWallet (#584) lacks a zero-check on :
- _TeamWallet = teamWallet (#585)
Check that the address is not zero.
Additional information: link
TelegramInu.swapAndLiquify(uint256) (#750-776) has external calls inside a loop: address(_TeamWallet).transfer(bnbForTeam) (#766)
TelegramInu.swapAndLiquify(uint256) (#750-776) has external calls inside a loop: address(_marketingWallet).transfer(bnbForMarketing) (#770)
TelegramInu.swapTokensForBnb(uint256) (#778-794) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#782)
TelegramInu.addLiquidity(uint256,uint256) (#796-810) has external calls inside a loop: (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
TelegramInu.swapTokensForBnb(uint256) (#778-794) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in TelegramInu.transferFrom(address,address,uint256) (#466-470):
External calls:
- _transfer(sender,recipient,amount) (#467)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- _transfer(sender,recipient,amount) (#467)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#468)
- _allowances[owner][spender] = amount (#682)
Reentrancy in TelegramInu._transfer(address,address,uint256) (#686-748):
External calls:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _liquidityFee = 0 (#825)
- _liquidityFee = _liquidityFeeBuy (#829)
- _liquidityFee = _liquidityFeeSell (#833)
- _liquidityFee = previousLiquidityFee (#840)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _tFeeTotal = _tFeeTotal + tFee (#616)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _taxFee = 0 (#824)
- _taxFee = _taxFeeBuy (#828)
- _taxFee = _taxFeeSell (#832)
- _taxFee = previousTaxFee (#839)
- cooldownTimer[to] = block.timestamp + cooldownTimerInterval (#739)
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- swapTokensForBnb(half) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
External calls sending eth:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- _allowances[owner][spender] = amount (#682)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- swapTokensForBnb(half) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
External calls sending eth:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#683)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#775)
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- swapTokensForBnb(half) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#769)
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- swapTokensForBnb(half) (#757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
Event emitted after the call(s):
- TeamSent(_TeamWallet,bnbForTeam) (#765)
Reentrancy in TelegramInu.transferFrom(address,address,uint256) (#466-470):
External calls:
- _transfer(sender,recipient,amount) (#467)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- _transfer(sender,recipient,amount) (#467)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#683)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#468)
Reentrancy in TelegramInu._transfer(address,address,uint256) (#686-748):
External calls:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#787-793)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#661)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- Transfer(sender,recipient,tTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#733)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#74-79) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#76)
TelegramInu._transfer(address,address,uint256) (#686-748) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[to] < block.timestamp,Please wait for 1min between two operations) (#738)
Avoid relying on block.timestamp.
Additional information: link
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _liquidityFee = _liquidityFeeSell (#833)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _liquidityFee = previousLiquidityFee (#840)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _liquidityFee = _liquidityFeeBuy (#829)
TelegramInu.includeInReward(address) (#526-538) has costly operations inside a loop:
- _excluded.pop() (#534)
TelegramInu._reflectFee(uint256,uint256) (#614-617) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#615)
TelegramInu.lockTheSwap() (#363-367) has costly operations inside a loop:
- inSwapAndLiquify = true (#364)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _taxFee = _taxFeeSell (#832)
TelegramInu.lockTheSwap() (#363-367) has costly operations inside a loop:
- inSwapAndLiquify = false (#366)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _taxFee = 0 (#824)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _taxFee = previousTaxFee (#839)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _taxFee = _taxFeeBuy (#828)
TelegramInu._tokenTransfer(address,address,uint256,bool) (#816-842) has costly operations inside a loop:
- _liquidityFee = 0 (#825)
TelegramInu._reflectFee(uint256,uint256) (#614-617) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#616)
Use a local variable to hold the loop computation result.
Additional information: link
Constant TelegramInu._symbol (#311) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TelegramInu.cooldownEnabled(bool,uint8)._interval (#579) is not in mixedCase
Variable TelegramInu._liquidityFee (#319) is not in mixedCase
Variable TelegramInu._isExcludedFromBuy (#292) is not in mixedCase
Constant TelegramInu._name (#310) is not in UPPER_CASE_WITH_UNDERSCORES
Function TelegramInu.EnableTrading() (#672-676) is not in mixedCase
Variable TelegramInu.launch_block (#355) is not in mixedCase
Parameter TelegramInu.setSwapAndLiquifyEnabled(bool)._enabled (#594) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#114) is not in mixedCase
Variable TelegramInu._isExcludedFromAntiWhale (#291) is not in mixedCase
Variable TelegramInu._taxFee (#318) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#131) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#113) is not in mixedCase
Constant TelegramInu._burnAddress (#303) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TelegramInu._liquidityFeeSell (#327) is not in mixedCase
Constant TelegramInu._decimals (#312) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TelegramInu._taxFeeBuy (#322) is not in mixedCase
Variable TelegramInu._isBlacklisted (#294) is not in mixedCase
Variable TelegramInu._antiWhaleThreshold (#347) is not in mixedCase
Variable TelegramInu._minTokenBalance (#330) is not in mixedCase
Variable TelegramInu._TeamWallet (#299) is not in mixedCase
Variable TelegramInu._isExcludedFromMaxTx (#293) is not in mixedCase
Variable TelegramInu._isExcludedFromAutoLiquidity (#290) is not in mixedCase
Parameter TelegramInu.cooldownEnabled(bool,uint8)._status (#579) is not in mixedCase
Function IUniswapV2Router01.WETH() (#151) is not in mixedCase
Variable TelegramInu._maxTxAmount (#329) is not in mixedCase
Variable TelegramInu._isAntiWhaleEnabled (#346) is not in mixedCase
Variable TelegramInu._taxFeeSell (#326) is not in mixedCase
Variable TelegramInu._liquidityFeeBuy (#323) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in TelegramInu.transferFrom(address,address,uint256) (#466-470):
External calls:
- _transfer(sender,recipient,amount) (#467)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
External calls sending eth:
- _transfer(sender,recipient,amount) (#467)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#468)
- _allowances[owner][spender] = amount (#682)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#683)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#468)
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#769)
Reentrancy in TelegramInu.swapAndLiquify(uint256) (#750-776):
External calls:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
External calls sending eth:
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- _allowances[owner][spender] = amount (#682)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#683)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#773)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#775)
Reentrancy in TelegramInu._transfer(address,address,uint256) (#686-748):
External calls:
- swapAndLiquify(contractTokenBalance) (#726)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#726)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(_lpFeeReceiver),block.timestamp) (#801-808)
- address(_TeamWallet).transfer(bnbForTeam) (#766)
- address(_marketingWallet).transfer(bnbForMarketing) (#770)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _liquidityFee = 0 (#825)
- _liquidityFee = _liquidityFeeBuy (#829)
- _liquidityFee = _liquidityFeeSell (#833)
- _liquidityFee = previousLiquidityFee (#840)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _rOwned[to] = _rOwned[to] + rAmount (#657)
- _rOwned[sender] = _rOwned[sender] - rAmount (#849)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#854)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _rTotal = _rTotal - rFee (#615)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _tFeeTotal = _tFeeTotal + tFee (#616)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _tOwned[to] = _tOwned[to] + tAmount (#659)
- _tOwned[sender] = _tOwned[sender] - tAmount (#851)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#856)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- _taxFee = 0 (#824)
- _taxFee = _taxFeeBuy (#828)
- _taxFee = _taxFeeSell (#832)
- _taxFee = previousTaxFee (#839)
- cooldownTimer[to] = block.timestamp + cooldownTimerInterval (#739)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#661)
- _tokenTransfer(from,to,amount,takeFee) (#733)
- Transfer(sender,recipient,tTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#733)
Apply the check-effects-interactions pattern.
Additional information: link
Variable TelegramInu._transferStandard(address,address,uint256).rTransferAmount (#847) is too similar to TelegramInu._transferStandard(address,address,uint256).tTransferAmount (#845)
Variable TelegramInu.reflectionFromToken(uint256,bool).rTransferAmount (#500) is too similar to TelegramInu._transferStandard(address,address,uint256).tTransferAmount (#845)
Variable TelegramInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#631) is too similar to TelegramInu._transferStandard(address,address,uint256).tTransferAmount (#845)
Variable TelegramInu._transferStandard(address,address,uint256).rTransferAmount (#847) is too similar to TelegramInu._getTValues(uint256).tTransferAmount (#622)
Variable TelegramInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#631) is too similar to TelegramInu._getTValues(uint256).tTransferAmount (#622)
Variable TelegramInu.reflectionFromToken(uint256,bool).rTransferAmount (#500) is too similar to TelegramInu._getTValues(uint256).tTransferAmount (#622)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#156) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#157)
Prevent variables from having similar names.
Additional information: link
TelegramInu.slitherConstructorConstantVariables() (#284-865) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#303)
TelegramInu.slitherConstructorVariables() (#284-865) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#306)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TelegramInu.launchtax (#357) is never used in TelegramInu (#284-865)
TelegramInu.deadline (#356) is never used in TelegramInu (#284-865)
Remove unused state variables.
Additional information: link
TelegramInu.deadline (#356) should be constant
TelegramInu._tTotal (#306) should be constant
TelegramInu.launchtax (#357) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
multiTransfer(address[],uint256[]) should be declared external:
- TelegramInu.multiTransfer(address[],uint256[]) (#444-449)
transfer(address,uint256) should be declared external:
- TelegramInu.transfer(address,uint256) (#439-442)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#52-55)
cooldownEnabled(bool,uint8) should be declared external:
- TelegramInu.cooldownEnabled(bool,uint8) (#579-582)
decimals() should be declared external:
- TelegramInu.decimals() (#423-425)
approve(address,uint256) should be declared external:
- TelegramInu.approve(address,uint256) (#462-465)
decreaseAllowance(address,uint256) should be declared external:
- TelegramInu.decreaseAllowance(address,uint256) (#477-480)
totalFees() should be declared external:
- TelegramInu.totalFees() (#486-488)
transferFrom(address,address,uint256) should be declared external:
- TelegramInu.transferFrom(address,address,uint256) (#466-470)
reflectionFromToken(uint256,bool) should be declared external:
- TelegramInu.reflectionFromToken(uint256,bool) (#490-503)
totalSupply() should be declared external:
- TelegramInu.totalSupply() (#427-432)
increaseAllowance(address,uint256) should be declared external:
- TelegramInu.increaseAllowance(address,uint256) (#472-475)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#57-61)
isExcludedFromFee(address) should be declared external:
- TelegramInu.isExcludedFromFee(address) (#668-670)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TelegramInu.setSwapAndLiquifyEnabled(bool) (#594-597)
symbol() should be declared external:
- TelegramInu.symbol() (#419-421)
unlock() should be declared external:
- Ownable.unlock() (#74-79)
isExcludedFromReward(address) should be declared external:
- TelegramInu.isExcludedFromReward(address) (#482-484)
excludeFromReward(address) should be declared external:
- TelegramInu.excludeFromReward(address) (#516-524)
name() should be declared external:
- TelegramInu.name() (#415-417)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#67-72)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#63-65)
allowance(address,address) should be declared external:
- TelegramInu.allowance(address,address) (#458-460)
Use the external attribute for functions never called from the contract.
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.
Token is deployed only at one blockchain
Contract has 5% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to verify token contract address on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Token has no active CoinGecko listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of scam / price dump / death
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account