USDTV COIN Token Logo

USDTv [USDTV COIN] Token

About USDTv

Listings

Not Found
Token 20 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 August 2022

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


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in USDTVCOIN._transfer(address,address,uint256) (#637-667):
External calls:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#588)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#595)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#720)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#721)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#513)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#741)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#731)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#515)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _rTotal = _rTotal.sub(rFee) (#547)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#597)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#590)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#739)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#512)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#730)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#514)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

USDTVCOIN._rTotal (#381) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
USDTVCOIN._previousTaxFee (#387) is set pre-construction with a non-constant function or state variable:
- _taxFee
USDTVCOIN._previousDevelopmentFee (#389) is set pre-construction with a non-constant function or state variable:
- _developmentFee
USDTVCOIN._previousLiquidityFee (#391) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Redundant expression "this (#94)" inContext (#89-97)
Remove redundant statements if they congest code but offer no value.

Additional information: link

USDTVCOIN.addLiquidity(uint256,uint256) (#690-700) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
Ensure that all the return values of the function calls are used.

Additional information: link

USDTVCOIN.allowance(address,address).owner (#441) shadows:
- Ownable.owner() (#164-166) (function)
USDTVCOIN._approve(address,address,uint256).owner (#631) shadows:
- Ownable.owner() (#164-166) (function)
Rename the local variables that shadow another component.

Additional information: link

USDTVCOIN.setTaxFeePercent(uint256) (#527-529) should emit an event for:
- _taxFee = taxFee (#528)
USDTVCOIN.setDevelopmentFeePercent(uint256) (#530-532) should emit an event for:
- _developmentFee = developmentFee (#531)
USDTVCOIN.setLiquidityFeePercent(uint256) (#533-535) should emit an event for:
- _liquidityFee = liquidityFee (#534)
USDTVCOIN.setMaxTxPercent(uint256) (#536-540) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#537-539)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in USDTVCOIN._transfer(address,address,uint256) (#637-667):
External calls:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _developmentFee = _previousDevelopmentFee (#625)
- _developmentFee = 0 (#620)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _liquidityFee = _previousLiquidityFee (#626)
- _liquidityFee = 0 (#621)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _previousDevelopmentFee = _developmentFee (#617)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _previousLiquidityFee = _liquidityFee (#618)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _previousTaxFee = _taxFee (#616)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _tFeeTotal = _tFeeTotal.add(tFee) (#548)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- _taxFee = _previousTaxFee (#624)
- _taxFee = 0 (#619)
Reentrancy in USDTVCOIN.constructor() (#411-420):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#417)
- _isExcludedFromFee[address(this)] = true (#418)
- uniswapV2Router = _uniswapV2Router (#416)
Reentrancy in USDTVCOIN.swapAndLiquify(uint256) (#668-676):
External calls:
- swapTokensForEth(half) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
- addLiquidity(otherHalf,newBalance) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#674)
- _allowances[owner][spender] = amount (#634)
Reentrancy in USDTVCOIN.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
- _allowances[owner][spender] = amount (#634)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in USDTVCOIN._transfer(address,address,uint256) (#637-667):
External calls:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#725)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- Transfer(sender,recipient,tTransferAmount) (#745)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- Transfer(sender,recipient,tTransferAmount) (#735)
- _tokenTransfer(from,to,amount,takeFee) (#666)
- Transfer(sender,recipient,tTransferAmount) (#519)
- _tokenTransfer(from,to,amount,takeFee) (#666)
Reentrancy in USDTVCOIN.constructor() (#411-420):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#414-415)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#419)
Reentrancy in USDTVCOIN.swapAndLiquify(uint256) (#668-676):
External calls:
- swapTokensForEth(half) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
- addLiquidity(otherHalf,newBalance) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#674)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- addLiquidity(otherHalf,newBalance) (#674)
- SwapAndLiquify(half,newBalance,otherHalf) (#675)
Reentrancy in USDTVCOIN.transferFrom(address,address,uint256) (#448-452):
External calls:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#682-688)
External calls sending eth:
- _transfer(sender,recipient,amount) (#449)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#692-699)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#635)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#450)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#100-104) uses assembly
- INLINE ASM (#102)
Address._verifyCallResult(bool,bytes,string) (#141-154) uses assembly
- INLINE ASM (#146-149)
Do not use evm assembly.

Additional information: link

USDTVCOIN.includeInReward(address) (#498-509) has costly operations inside a loop:
- _excluded.pop() (#505)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#141-154) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Address.functionCall(address,bytes,string) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#119-124) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#133-135) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#136-140) is never used and should be removed
Address.functionStaticCall(address,bytes) (#125-127) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#128-132) is never used and should be removed
Address.isContract(address) (#100-104) is never used and should be removed
Address.sendValue(address,uint256) (#105-109) is never used and should be removed
Context._msgData() (#93-96) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#75-80) is never used and should be removed
SafeMath.mod(uint256,uint256) (#66-68) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#81-86) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#42-47) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#48-53) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#34-41) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#28-33) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#105-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#119-124):
- (success,returndata) = target.call{value: value}(data) (#122)
Low level call in Address.functionStaticCall(address,bytes,string) (#128-132):
- (success,returndata) = target.staticcall(data) (#130)
Low level call in Address.functionDelegateCall(address,bytes,string) (#136-140):
- (success,returndata) = target.delegatecall(data) (#138)
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() (#206) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#207) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#221) is not in mixedCase
Function IUniswapV2Router01.WETH() (#239) is not in mixedCase
Parameter USDTVCOIN.setSwapAndLiquifyEnabled(bool)._enabled (#541) is not in mixedCase
Parameter USDTVCOIN.calculateTaxFee(uint256)._amount (#599) is not in mixedCase
Parameter USDTVCOIN.calculateDevelopmentFee(uint256)._amount (#604) is not in mixedCase
Parameter USDTVCOIN.calculateLiquidityFee(uint256)._amount (#609) is not in mixedCase
Variable USDTVCOIN._taxFee (#386) is not in mixedCase
Variable USDTVCOIN._developmentFee (#388) is not in mixedCase
Variable USDTVCOIN._liquidityFee (#390) is not in mixedCase
Variable USDTVCOIN._maxTxAmount (#397) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#243) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#244)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tDevelopment (#719)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#562)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._transferToExcluded(address,address,uint256).rTransferAmount (#728) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._transferFromExcluded(address,address,uint256).rTransferAmount (#738) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tDevelopment (#738)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._takeDevelopment(uint256).tDevelopment (#592)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tDevelopment (#728)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tDevelopment (#511)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tDevelopment (#719)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tDevelopment (#738)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._getTValues(uint256).tDevelopment (#558)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#566) is too similar to USDTVCOIN._getValues(uint256).tDevelopment (#551)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._takeDevelopment(uint256).tDevelopment (#592)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tDevelopment (#511)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tDevelopment (#728)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._getTValues(uint256).tDevelopment (#558)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#562)
Variable USDTVCOIN._takeDevelopment(uint256).rDevelopment (#594) is too similar to USDTVCOIN._getValues(uint256).tDevelopment (#551)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._transferStandard(address,address,uint256).rTransferAmount (#719) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._transferStandard(address,address,uint256).tTransferAmount (#719)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._getTValues(uint256).tTransferAmount (#559)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._transferToExcluded(address,address,uint256).tTransferAmount (#728)
Variable USDTVCOIN.reflectionFromToken(uint256,bool).rTransferAmount (#481) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._transferBothExcluded(address,address,uint256).rTransferAmount (#511) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#567) is too similar to USDTVCOIN._getValues(uint256).tTransferAmount (#551)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._transferBothExcluded(address,address,uint256).tTransferAmount (#511)
Variable USDTVCOIN._getValues(uint256).rTransferAmount (#552) is too similar to USDTVCOIN._transferFromExcluded(address,address,uint256).tTransferAmount (#738)
Prevent variables from having similar names.

Additional information: link

USDTVCOIN.slitherConstructorVariables() (#369-748) uses literals with too many digits:
- _tTotal = 200000000 * 10 ** 18 (#380)
USDTVCOIN.slitherConstructorVariables() (#369-748) uses literals with too many digits:
- _maxTxAmount = 200000000 * 10 ** 18 (#397)
USDTVCOIN.slitherConstructorVariables() (#369-748) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 200000000 * 10 ** 18 (#398)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

USDTVCOIN._decimals (#385) should be constant
USDTVCOIN._developmentWalletAddress (#378) should be constant
USDTVCOIN._name (#383) should be constant
USDTVCOIN._symbol (#384) should be constant
USDTVCOIN._tTotal (#380) should be constant
USDTVCOIN.numTokensSellToAddToLiquidity (#398) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#175-179)
name() should be declared external:
- USDTVCOIN.name() (#421-423)
symbol() should be declared external:
- USDTVCOIN.symbol() (#424-426)
decimals() should be declared external:
- USDTVCOIN.decimals() (#427-429)
totalSupply() should be declared external:
- USDTVCOIN.totalSupply() (#430-432)
transfer(address,uint256) should be declared external:
- USDTVCOIN.transfer(address,uint256) (#437-440)
allowance(address,address) should be declared external:
- USDTVCOIN.allowance(address,address) (#441-443)
approve(address,uint256) should be declared external:
- USDTVCOIN.approve(address,uint256) (#444-447)
transferFrom(address,address,uint256) should be declared external:
- USDTVCOIN.transferFrom(address,address,uint256) (#448-452)
increaseAllowance(address,uint256) should be declared external:
- USDTVCOIN.increaseAllowance(address,uint256) (#453-456)
decreaseAllowance(address,uint256) should be declared external:
- USDTVCOIN.decreaseAllowance(address,uint256) (#457-460)
isExcludedFromReward(address) should be declared external:
- USDTVCOIN.isExcludedFromReward(address) (#461-463)
totalFees() should be declared external:
- USDTVCOIN.totalFees() (#464-466)
deliver(uint256) should be declared external:
- USDTVCOIN.deliver(uint256) (#467-474)
reflectionFromToken(uint256,bool) should be declared external:
- USDTVCOIN.reflectionFromToken(uint256,bool) (#475-484)
excludeFromReward(address) should be declared external:
- USDTVCOIN.excludeFromReward(address) (#490-497)
excludeFromFee(address) should be declared external:
- USDTVCOIN.excludeFromFee(address) (#521-523)
includeInFee(address) should be declared external:
- USDTVCOIN.includeInFee(address) (#524-526)
setSwapAndLiquifyEnabled(bool) should be declared external:
- USDTVCOIN.setSwapAndLiquifyEnabled(bool) (#541-544)
isExcludedFromFee(address) should be declared external:
- USDTVCOIN.isExcludedFromFee(address) (#628-630)
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 Telegram and Twitter accounts


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

Price for USDTv