TEN Wallet Token Logo

TENW [TEN Wallet] Token

About TENW

Listings

Token 2 years
CoinMarketCap 2 years

Website

[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

TEN Wallet aims to builds a double-layered ring signature multi-chain wallet with zero knowledge proof integration. TEN Wallet will help people send funds fully privately which helps combat against malicious acts towards them. Additionally, it aims to stop the frontrunning done by bots as they will not be able to see the details of transactions due to privacy features.

Currently, TEN Wallet has Smart Staking and Deflation System implemented. In the future, for each transaction a brand new wallet will be created and funds will be sent to the newly created wallet. Later, the funds will get sent to a first Mixer TEN Wallet pool which will be used to mix up the incoming transactions. To further enhance the security the mixed funds will get sent to the second Mixer TEN Wallet pool. As a final step, the brand new funds combination will be sent out as output to the Recipient.

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Reentrancy in TokenContract._transfer(address,address,uint256) (#803-837):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#836)
- _rOwned[to] = _rOwned[to].add(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#962)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#953)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#983)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#973)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#974)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#964)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#985)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- _rTotal = _rTotal.sub(rFee) (#715)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- _tOwned[to] = _tOwned[to].add(amount) (#774)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#972)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#982)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#963)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#984)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

TokenContract.addLiquidity(uint256,uint256) (#880-893) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
Ensure that all the return values of the function calls are used.

Additional information: link

Pragma version^0.8.0 (#3) allows old versions
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

TokenContract.allowance(address,address).owner (#623) shadows:
- Ownable.owner() (#328-330) (function)
TokenContract._approve(address,address,uint256).owner (#795) shadows:
- Ownable.owner() (#328-330) (function)
Rename the local variables that shadow another component.

Additional information: link

TokenContract.setBuyFeePercent(uint256,uint256,uint256) (#684-689) should emit an event for:
- _buyReflectFee = reflect (#686)
- _buyBurnFee = burn (#687)
- _buyLiquidityFee = liquid (#688)
TokenContract.setSellFeePercent(uint256,uint256,uint256) (#691-696) should emit an event for:
- _sellReflectFee = reflect (#693)
- _sellBurnFee = burn (#694)
- _sellLiquidityFee = liquid (#695)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in TokenContract._transfer(address,address,uint256) (#803-837):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#836)
- _tTotalDistributedToken = _tTotalDistributedToken.add(tFee) (#716)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- currentBurnFee = 0 (#919)
- currentBurnFee = _buyBurnFee.mul(100 - taxDiscountPercent).div(100) (#924)
- currentBurnFee = _sellBurnFee.mul(100 - taxDiscountPercent).div(100) (#929)
- currentBurnFee = 0 (#933)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- currentLiquidNBurnFee = currentBurnFee + currentLiquidityFee (#936)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- currentLiquidityFee = 0 (#920)
- currentLiquidityFee = _buyLiquidityFee.mul(100 - taxDiscountPercent).div(100) (#925)
- currentLiquidityFee = _sellLiquidityFee.mul(100 - taxDiscountPercent).div(100) (#930)
- currentLiquidityFee = 0 (#934)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- currentRefectionFee = 0 (#918)
- currentRefectionFee = _buyReflectFee.mul(100 - taxDiscountPercent).div(100) (#923)
- currentRefectionFee = _sellReflectFee.mul(100 - taxDiscountPercent).div(100) (#928)
- currentRefectionFee = 0 (#932)
Reentrancy in TokenContract.constructor() (#570-595):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#575-576)
State variables written after the call(s):
- _excludedFromFee[owner()] = true (#581)
- _excludedFromFee[address(this)] = true (#582)
- _excludedFromFee[deadWallet] = true (#583)
- _rOwned[_msgSender()] = _rTotal (#593)
- taxDiscount[1].iotenRequired = 5000000000000000000000000 (#586)
- taxDiscount[1].discountPercent = 10 (#587)
- taxDiscount[2].iotenRequired = 10000000000000000000000000 (#588)
- taxDiscount[2].discountPercent = 20 (#589)
- taxDiscount[3].iotenRequired = 25000000000000000000000000 (#590)
- taxDiscount[3].discountPercent = 50 (#591)
- uniswapV2Router = _uniswapV2Router (#578)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#839-860):
External calls:
- swapTokensForEth(half) (#851)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
- addLiquidity(otherHalf,newBalance) (#857)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#857)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#857)
- _allowances[owner][spender] = amount (#799)
Reentrancy in TokenContract.transferFrom(address,address,uint256) (#632-636):
External calls:
- _transfer(sender,recipient,amount) (#633)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
External calls sending eth:
- _transfer(sender,recipient,amount) (#633)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#634)
- _allowances[owner][spender] = amount (#799)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TokenContract._transfer(address,address,uint256) (#803-837):
External calls:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
External calls sending eth:
- swapAndLiquify(balanceOf(address(this))) (#825)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
Event emitted after the call(s):
- Transfer(from,to,amount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- Transfer(sender,recipient,tTransferAmount) (#957)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- Transfer(sender,recipient,tTransferAmount) (#977)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- Transfer(sender,recipient,tTransferAmount) (#967)
- _tokenTransfer(from,to,amount,takeFee) (#836)
- Transfer(sender,recipient,tTransferAmount) (#988)
- _tokenTransfer(from,to,amount,takeFee) (#836)
Reentrancy in TokenContract.constructor() (#570-595):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#575-576)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#594)
Reentrancy in TokenContract.swapAndLiquify(uint256) (#839-860):
External calls:
- swapTokensForEth(half) (#851)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
- addLiquidity(otherHalf,newBalance) (#857)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#857)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- addLiquidity(otherHalf,newBalance) (#857)
- SwapAndLiquify(half,newBalance,otherHalf) (#859)
Reentrancy in TokenContract.transferFrom(address,address,uint256) (#632-636):
External calls:
- _transfer(sender,recipient,amount) (#633)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#871-877)
External calls sending eth:
- _transfer(sender,recipient,amount) (#633)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#885-892)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#800)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#634)
Apply the check-effects-interactions pattern.

Additional information: link

TokenContract.includeInReward(address) (#671-682) has costly operations inside a loop:
- _excluded.pop() (#678)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#20-23) is never used and should be removed
SafeMath.mod(uint256,uint256) (#484-486) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#500-503) is never used and should be removed
Remove unused functions.

Additional information: link

TokenContract._rTotal (#520) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TokenContract.currentLiquidNBurnFee (#539) is set pre-construction with a non-constant function or state variable:
- currentBurnFee.add(currentLiquidityFee)
TokenContract.numTokensSellToAddToLiquidity (#547) is set pre-construction with a non-constant function or state variable:
- _tTotal / 10000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Function IUniswapV2Router01.WETH() (#107) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#274) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#275) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#292) is not in mixedCase
Parameter TokenContract.setSwapAndLiquifyEnabled(bool)._enabled (#706) is not in mixedCase
Parameter TokenContract.calculateReflectionFee(uint256)._amount (#779) is not in mixedCase
Parameter TokenContract.calculateLiquidNBurnFee(uint256)._amount (#785) is not in mixedCase
Variable TokenContract._buyReflectFee (#527) is not in mixedCase
Variable TokenContract._buyBurnFee (#528) is not in mixedCase
Variable TokenContract._buyLiquidityFee (#529) is not in mixedCase
Variable TokenContract._sellReflectFee (#531) is not in mixedCase
Variable TokenContract._sellBurnFee (#532) is not in mixedCase
Variable TokenContract._sellLiquidityFee (#533) is not in mixedCase
Variable TokenContract.IOTEN (#550) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#21)" inContext (#15-24)
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 (#112) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#113)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._transferToExcluded(address,address,uint256).tLiquidNBurnFee (#961)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._getTValues(uint256).tLiquidNBurnFee (#727)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._transferStandard(address,address,uint256).tLiquidNBurnFee (#952)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._transferStandard(address,address,uint256).tTransferAmount (#952)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._getTValues(uint256).tTransferAmount (#728)
Variable TokenContract._transferFromExcluded(address,address,uint256).rTransferAmount (#971) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._getRValues(uint256,uint256,uint256,uint256).tLiquidNBurnFee (#732)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tLiquidNBurnFee (#971)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._takeLiquidNBurnFee(uint256,address).tLiquidNBurnFee (#758)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._getValues(uint256).tLiquidNBurnFee (#720)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rLiquidNBurnFee (#735) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tLiquidNBurnFee (#981)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Variable TokenContract._transferBothExcluded(address,address,uint256).rTransferAmount (#981) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._transferToExcluded(address,address,uint256).rTransferAmount (#961) is too similar to TokenContract._getValues(uint256).tTransferAmount (#720)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._transferBothExcluded(address,address,uint256).tTransferAmount (#981)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._transferToExcluded(address,address,uint256).tTransferAmount (#961)
Variable TokenContract._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#736) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Variable TokenContract._transferStandard(address,address,uint256).rTransferAmount (#952) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Variable TokenContract._getValues(uint256).rTransferAmount (#721) is too similar to TokenContract._transferFromExcluded(address,address,uint256).tTransferAmount (#971)
Prevent variables from having similar names.

Additional information: link

TokenContract.constructor() (#570-595) uses literals with too many digits:
- taxDiscount[1].iotenRequired = 5000000000000000000000000 (#586)
TokenContract.constructor() (#570-595) uses literals with too many digits:
- taxDiscount[2].iotenRequired = 10000000000000000000000000 (#588)
TokenContract.constructor() (#570-595) uses literals with too many digits:
- taxDiscount[3].iotenRequired = 25000000000000000000000000 (#590)
TokenContract.slitherConstructorVariables() (#506-991) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 18 (#519)
TokenContract.slitherConstructorVariables() (#506-991) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#541)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TokenContract._decimals (#525) should be constant
TokenContract._name (#523) should be constant
TokenContract._symbol (#524) should be constant
TokenContract._tTotal (#519) should be constant
TokenContract.deadWallet (#541) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#347-350)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#356-360)
name() should be declared external:
- TokenContract.name() (#597-599)
symbol() should be declared external:
- TokenContract.symbol() (#601-603)
decimals() should be declared external:
- TokenContract.decimals() (#605-607)
totalSupply() should be declared external:
- TokenContract.totalSupply() (#609-611)
transfer(address,uint256) should be declared external:
- TokenContract.transfer(address,uint256) (#618-621)
allowance(address,address) should be declared external:
- TokenContract.allowance(address,address) (#623-625)
approve(address,uint256) should be declared external:
- TokenContract.approve(address,uint256) (#627-630)
transferFrom(address,address,uint256) should be declared external:
- TokenContract.transferFrom(address,address,uint256) (#632-636)
increaseAllowance(address,uint256) should be declared external:
- TokenContract.increaseAllowance(address,uint256) (#638-641)
decreaseAllowance(address,uint256) should be declared external:
- TokenContract.decreaseAllowance(address,uint256) (#643-646)
isExcludedFromReward(address) should be declared external:
- TokenContract.isExcludedFromReward(address) (#648-650)
totalDistributedFees() should be declared external:
- TokenContract.totalDistributedFees() (#652-654)
excludeFromReward(address) should be declared external:
- TokenContract.excludeFromReward(address) (#662-669)
setBuyFeePercent(uint256,uint256,uint256) should be declared external:
- TokenContract.setBuyFeePercent(uint256,uint256,uint256) (#684-689)
setSellFeePercent(uint256,uint256,uint256) should be declared external:
- TokenContract.setSellFeePercent(uint256,uint256,uint256) (#691-696)
excludeFromFee(address) should be declared external:
- TokenContract.excludeFromFee(address) (#698-700)
includeInFee(address) should be declared external:
- TokenContract.includeInFee(address) (#702-704)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TokenContract.setSwapAndLiquifyEnabled(bool) (#706-709)
isExcludedFromFee(address) should be declared external:
- TokenContract.isExcludedFromFee(address) (#791-793)
setDiscountTaxForIotenHolder(uint256,uint256,uint256) should be declared external:
- TokenContract.setDiscountTaxForIotenHolder(uint256,uint256,uint256) (#895-900)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinHunt

Additional information: link


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


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


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


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


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


Alexa traffic rank is relatively low

Additional information: link


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for TENW

News for TENW