Crypto TV Network Token Logo

CTV [Crypto TV Network] Token

About CTV

Listings

Token 21 months

Website

Not Found

🖥📡 Crypto TV Broadcast Project Will be a Combination of Awesome Things in Crypto World: ✅ The First of Launchpad Subscription Format in PinkSale ✅ One of The First Crypto TV Networks in The World ✅ Launching in Monacosat Satellite by WNS Company in UAE ✅ Host of Crypto Conferences ✅ CTV DEX Aggregator ✅ Audited& KYC'ed and SAFU Badge by PinkSale Partner ✅ Liquidity Locked For 10 Years✅ Crypto R&D and Investment Funds ✅ Journal of Crypto Studies ✅Watch-TV-To-Earn and Read-News-To-Earn App

Social

Laser Scorebeta Last Audit: 4 August 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

CryptoTVNetwork.sendBNB(address,uint256) (#534-539) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: amount}() (#537)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CryptoTVNetwork._transfer(address,address,uint256) (#661-723):
External calls:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#722)
- _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity (#590)
- _rOwned[address(this)] = _rOwned[address(this)] + rMarketing (#600)
- _rOwned[DEAD] = _rOwned[DEAD] + rBurn (#612)
- _rOwned[sender] = _rOwned[sender] - rAmount (#829)
- _rOwned[sender] = _rOwned[sender] - rAmount (#818)
- _rOwned[sender] = _rOwned[sender] - rAmount (#842)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#819)
- _rOwned[sender] = _rOwned[sender] - rAmount (#854)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#843)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#831)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#856)
- _tokenTransfer(from,to,amount) (#722)
- _rTotal = _rTotal - rFee (#542)
- _tokenTransfer(from,to,amount) (#722)
- _tOwned[address(this)] = _tOwned[address(this)] + tMarketing (#602)
- _tOwned[address(this)] = _tOwned[address(this)] + tLiquidity (#592)
- _tOwned[sender] = _tOwned[sender] - tAmount (#853)
- _tOwned[sender] = _tOwned[sender] - tAmount (#841)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#830)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#855)
- inSwapAndLiquify = false (#718)
- _tokenTransfer(from,to,amount) (#722)
- liquidityFee = _previousLiquidityFee (#644)
- liquidityFee = 0 (#638)
- _tokenTransfer(from,to,amount) (#722)
- marketingFee = _previousMarketingFee (#645)
- marketingFee = 0 (#637)
Apply the check-effects-interactions pattern.

Additional information: link

CryptoTVNetwork.claimStuckTokens(address) (#509-518) ignores return value by ERC20token.transfer(msg.sender,balance) (#517)
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...)


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.


Contract ownership is not renounced (belongs to a wallet)

CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256) (#606-615) performs a multiplication on the result of a division:
-tBurn = (tAmount / 100) * burnFee (#608)
Consider ordering multiplication before division.

Additional information: link

CryptoTVNetwork.swapAndLiquify(uint256) (#725-754) ignores return value by uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
Ensure that all the return values of the function calls are used.

Additional information: link

CryptoTVNetwork.allowance(address,address).owner (#439) shadows:
- Ownable.owner() (#27-29) (function)
CryptoTVNetwork._approve(address,address,uint256).owner (#653) shadows:
- Ownable.owner() (#27-29) (function)
Rename the local variables that shadow another component.

Additional information: link

CryptoTVNetwork.setSwapTokensAtAmount(uint256) (#778-781) should emit an event for:
- swapTokensAtAmount = newAmount (#780)
CryptoTVNetwork.setTaxFeePercent(uint256) (#878-882) should emit an event for:
- taxFee = _taxFee (#879)
CryptoTVNetwork.setMarketingFeePercent(uint256) (#884-888) should emit an event for:
- marketingFee = _marketing (#885)
CryptoTVNetwork.setLiquidityFeePercent(uint256) (#890-894) should emit an event for:
- liquidityFee = _liquidityFee (#891)
CryptoTVNetwork.setBurnFeePercent(uint256) (#896-900) should emit an event for:
- burnFee = _burnFee (#897)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in CryptoTVNetwork._transfer(address,address,uint256) (#661-723):
External calls:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#722)
- _previousBurnFee = burnFee (#635)
- _tokenTransfer(from,to,amount) (#722)
- _previousLiquidityFee = liquidityFee (#633)
- _tokenTransfer(from,to,amount) (#722)
- _previousMarketingFee = marketingFee (#634)
- _tokenTransfer(from,to,amount) (#722)
- _previousTaxFee = taxFee (#632)
- _tokenTransfer(from,to,amount) (#722)
- _tFeeTotal = _tFeeTotal + tFee (#543)
- _tokenTransfer(from,to,amount) (#722)
- burnFee = _previousBurnFee (#646)
- burnFee = 0 (#639)
- _tokenTransfer(from,to,amount) (#722)
- taxFee = _previousTaxFee (#643)
- taxFee = 0 (#636)
Reentrancy in CryptoTVNetwork.constructor(address) (#381-411):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#387-388)
State variables written after the call(s):
- _approve(address(this),address(uniswapV2Router),MAX) (#391)
- _allowances[owner][spender] = amount (#657)
- _isExcludedFromFees[owner()] = true (#403)
- _isExcludedFromFees[marketingWallet] = true (#404)
- _isExcludedFromFees[address(this)] = true (#405)
- _isExcludedFromMaxTxLimit[owner()] = true (#393)
- _isExcludedFromMaxTxLimit[address(0)] = true (#394)
- _isExcludedFromMaxTxLimit[address(this)] = true (#395)
- _isExcludedFromMaxTxLimit[DEAD] = true (#396)
- _isExcludedFromMaxWalletLimit[owner()] = true (#398)
- _isExcludedFromMaxWalletLimit[address(0)] = true (#399)
- _isExcludedFromMaxWalletLimit[address(this)] = true (#400)
- _isExcludedFromMaxWalletLimit[DEAD] = true (#401)
- _isWhiteListedContract[address(this)] = true (#407)
- _rOwned[owner()] = _rTotal (#409)
- uniswapV2Router = _uniswapV2Router (#389)
Reentrancy in CryptoTVNetwork.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#450)
- _allowances[owner][spender] = amount (#657)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CryptoTVNetwork._transfer(address,address,uint256) (#661-723):
External calls:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#710)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
- swapAndSendMarketing(marketingTokens) (#715)
- (success) = recipient.call{value: amount}() (#537)
Event emitted after the call(s):
- SwapAndSendMarketing(tokenAmount,newBalance) (#775)
- swapAndSendMarketing(marketingTokens) (#715)
- Transfer(sender,DEAD,tBurn) (#613)
- _tokenTransfer(from,to,amount) (#722)
- Transfer(sender,recipient,tTransferAmount) (#823)
- _tokenTransfer(from,to,amount) (#722)
- Transfer(sender,recipient,tTransferAmount) (#835)
- _tokenTransfer(from,to,amount) (#722)
- Transfer(sender,recipient,tTransferAmount) (#847)
- _tokenTransfer(from,to,amount) (#722)
- Transfer(sender,recipient,tTransferAmount) (#860)
- _tokenTransfer(from,to,amount) (#722)
Reentrancy in CryptoTVNetwork.constructor(address) (#381-411):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#387-388)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#658)
- _approve(address(this),address(uniswapV2Router),MAX) (#391)
- Transfer(address(0),owner(),_tTotal) (#410)
Reentrancy in CryptoTVNetwork.swapAndLiquify(uint256) (#725-754):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
External calls sending eth:
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#753)
Reentrancy in CryptoTVNetwork.swapAndSendMarketing(uint256) (#757-776):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
- sendBNB(address(marketingWallet),newBalance) (#773)
- (success) = recipient.call{value: amount}() (#537)
External calls sending eth:
- sendBNB(address(marketingWallet),newBalance) (#773)
- (success) = recipient.call{value: amount}() (#537)
Event emitted after the call(s):
- SwapAndSendMarketing(tokenAmount,newBalance) (#775)
Reentrancy in CryptoTVNetwork.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-769)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#735-740)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- (success) = recipient.call{value: amount}() (#537)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#744-751)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#658)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#450)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#65-74) uses assembly
- INLINE ASM (#72)
Address._functionCallWithValue(address,bytes,uint256,string) (#101-122) uses assembly
- INLINE ASM (#114-117)
Do not use evm assembly.

Additional information: link

CryptoTVNetwork._transfer(address,address,uint256) (#661-723) compares to a boolean constant:
-_isExcludedFromMaxWalletLimit[from] == false && _isExcludedFromMaxWalletLimit[to] == false && to != uniswapV2Pair (#675-677)
CryptoTVNetwork._transfer(address,address,uint256) (#661-723) compares to a boolean constant:
-_isExcludedFromMaxTxLimit[from] == false && _isExcludedFromMaxTxLimit[to] == false (#685-686)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#101-122) is never used and should be removed
Address.functionCall(address,bytes) (#84-86) is never used and should be removed
Address.functionCall(address,bytes,string) (#88-90) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#92-94) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#96-99) is never used and should be removed
Address.isContract(address) (#65-74) is never used and should be removed
Address.sendValue(address,uint256) (#76-82) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
Remove unused functions.

Additional information: link

CryptoTVNetwork._tTotal (#342) is set pre-construction with a non-constant function or state variable:
- 5_000_000_000 * (10 ** _decimals)
CryptoTVNetwork._rTotal (#343) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CryptoTVNetwork._previousTaxFee (#347) is set pre-construction with a non-constant function or state variable:
- taxFee
CryptoTVNetwork._previousLiquidityFee (#350) is set pre-construction with a non-constant function or state variable:
- liquidityFee
CryptoTVNetwork._previousMarketingFee (#353) is set pre-construction with a non-constant function or state variable:
- marketingFee
CryptoTVNetwork._previousBurnFee (#356) is set pre-construction with a non-constant function or state variable:
- burnFee
CryptoTVNetwork.totalFees (#358) is set pre-construction with a non-constant function or state variable:
- taxFee + liquidityFee + marketingFee + burnFee
CryptoTVNetwork.swapTokensAtAmount (#371) is set pre-construction with a non-constant function or state variable:
- _tTotal / 5000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version0.8.14 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#76-82):
- (success) = recipient.call{value: amount}() (#80)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#101-122):
- (success,returndata) = target.call{value: weiValue}(data) (#105)
Low level call in CryptoTVNetwork.sendBNB(address,uint256) (#534-539):
- (success) = recipient.call{value: amount}() (#537)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#156) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#157) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#173) is not in mixedCase
Function IUniswapV2Router01.WETH() (#192) is not in mixedCase
Parameter CryptoTVNetwork.calculateTaxFee(uint256)._amount (#617) is not in mixedCase
Parameter CryptoTVNetwork.calculateLiquidityFee(uint256)._amount (#621) is not in mixedCase
Parameter CryptoTVNetwork.calculateMarketingFee(uint256)._amount (#625) is not in mixedCase
Parameter CryptoTVNetwork.setSwapEnabled(bool)._enabled (#783) is not in mixedCase
Parameter CryptoTVNetwork.changeMarketingWallet(address)._marketingWallet (#871) is not in mixedCase
Parameter CryptoTVNetwork.setTaxFeePercent(uint256)._taxFee (#878) is not in mixedCase
Parameter CryptoTVNetwork.setMarketingFeePercent(uint256)._marketing (#884) is not in mixedCase
Parameter CryptoTVNetwork.setLiquidityFeePercent(uint256)._liquidityFee (#890) is not in mixedCase
Parameter CryptoTVNetwork.setBurnFeePercent(uint256)._burnFee (#896) is not in mixedCase
Function CryptoTVNetwork.setMaxWalletRate_Denominator1000(uint256) (#930-934) is not in mixedCase
Parameter CryptoTVNetwork.setMaxWalletRate_Denominator1000(uint256)._val (#930) is not in mixedCase
Function CryptoTVNetwork.setMaxTransactionRates_Denominator1000(uint256,uint256) (#970-975) is not in mixedCase
Parameter CryptoTVNetwork.setMaxTransactionRates_Denominator1000(uint256,uint256)._maxTransactionRateBuy (#970) is not in mixedCase
Parameter CryptoTVNetwork.setMaxTransactionRates_Denominator1000(uint256,uint256)._maxTransactionRateSell (#970) is not in mixedCase
Variable CryptoTVNetwork._isWhiteListedContract (#334) is not in mixedCase
Variable CryptoTVNetwork.DEAD (#364) 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

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#197) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#198)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._transferStandard(address,address,uint256).tTransferAmount (#816)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#839) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._getValues(uint256).rTransferAmount (#548) is too similar to CryptoTVNetwork._getValues(uint256).tTransferAmount (#547)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).tTransferAmount (#606)
Variable CryptoTVNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#487) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#565) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#851) is too similar to CryptoTVNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#827)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Variable CryptoTVNetwork._takeBurn(address,uint256,uint256,uint256).rTransferAmount (#606) is too similar to CryptoTVNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#851)
Variable CryptoTVNetwork._transferStandard(address,address,uint256).rTransferAmount (#816) is too similar to CryptoTVNetwork._getTValues(uint256).tTransferAmount (#556)
Variable CryptoTVNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#827) is too similar to CryptoTVNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#839)
Prevent variables from having similar names.

Additional information: link

CryptoTVNetwork.setSwapTokensAtAmount(uint256) (#778-781) uses literals with too many digits:
- require(bool,string)(newAmount >= totalSupply() / 1000000,SwapTokensAtAmount must be greater than 0,0001% of total supply) (#779)
CryptoTVNetwork.slitherConstructorVariables() (#325-983) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#364)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CryptoTVNetwork.DEAD (#364) should be constant
CryptoTVNetwork._decimals (#339) should be constant
CryptoTVNetwork._name (#337) should be constant
CryptoTVNetwork._symbol (#338) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#36-39)
name() should be declared external:
- CryptoTVNetwork.name() (#413-415)
symbol() should be declared external:
- CryptoTVNetwork.symbol() (#417-419)
decimals() should be declared external:
- CryptoTVNetwork.decimals() (#421-423)
transfer(address,uint256) should be declared external:
- CryptoTVNetwork.transfer(address,uint256) (#434-437)
allowance(address,address) should be declared external:
- CryptoTVNetwork.allowance(address,address) (#439-441)
approve(address,uint256) should be declared external:
- CryptoTVNetwork.approve(address,uint256) (#443-446)
transferFrom(address,address,uint256) should be declared external:
- CryptoTVNetwork.transferFrom(address,address,uint256) (#448-452)
increaseAllowance(address,uint256) should be declared external:
- CryptoTVNetwork.increaseAllowance(address,uint256) (#454-457)
decreaseAllowance(address,uint256) should be declared external:
- CryptoTVNetwork.decreaseAllowance(address,uint256) (#459-462)
isExcludedFromReward(address) should be declared external:
- CryptoTVNetwork.isExcludedFromReward(address) (#464-466)
totalReflectionDistributed() should be declared external:
- CryptoTVNetwork.totalReflectionDistributed() (#468-470)
deliver(uint256) should be declared external:
- CryptoTVNetwork.deliver(uint256) (#472-479)
reflectionFromToken(uint256,bool) should be declared external:
- CryptoTVNetwork.reflectionFromToken(uint256,bool) (#481-490)
excludeFromReward(address) should be declared external:
- CryptoTVNetwork.excludeFromReward(address) (#498-505)
isExcludedFromFee(address) should be declared external:
- CryptoTVNetwork.isExcludedFromFee(address) (#649-651)
isExcludedFromMaxWalletLimit(address) should be declared external:
- CryptoTVNetwork.isExcludedFromMaxWalletLimit(address) (#922-924)
isExcludedFromMaxTransaction(address) should be declared external:
- CryptoTVNetwork.isExcludedFromMaxTransaction(address) (#958-960)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for CTV

News for CTV