ElonTech Token Logo

ETCH [ElonTech] Token

About ETCH

Listings

Token 2 years
CoinMarketCap 2 years
white paper

ElonTech is a new and the most versatile crypto token of 2021. We aim to build the tech valleys and the target of this year is to reach $1.

Laser Scorebeta Last Audit: 20 September 2022

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

SafeMath.div(uint256,uint256) (#153-158) is never used and should be removed
SafeMath.mul(uint256,uint256) (#137-148) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.4.26 (#6) allows old versions
solc-0.4.26 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

Consts.TOKEN_DECIMAL_MULTIPLIER (#664) is never used in MainToken (#675-716)
Consts.CONTINUE_MINTING (#668) is never used in MainToken (#675-716)
Remove unused state variables.

Additional information: link

FreezableToken.releaseOnce() (#558-580) has costly operations inside a loop:
- delete freezings[currentKey] (#568)
FreezableToken.releaseOnce() (#558-580) has costly operations inside a loop:
- delete chains[headKey] (#574)
FreezableToken.releaseOnce() (#558-580) has costly operations inside a loop:
- delete chains[currentKey] (#577)
Use a local variable to hold the loop computation result.

Additional information: link

FreezableToken.toKey(address,uint256) (#520-527) is declared view but contains assembly code
Ensure the attributes of contracts compiled prior to Solidity 0.5.0 are correct.

Additional information: link

FreezableToken.releaseOnce() (#558-580) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(uint64(block.timestamp) > head) (#562)
FreezableToken.releaseAll() (#587-596) uses timestamp for comparisons
Dangerous comparisons:
- release != 0 && block.timestamp > release (#591)
FreezableToken.freeze(address,uint64) (#598-629) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_until > block.timestamp) (#599)
Avoid relying on block.timestamp.

Additional information: link

FreezableToken.toKey(address,uint256) (#520-527) uses assembly
- INLINE ASM (#523-527)
Do not use evm assembly.

Additional information: link

Parameter Ownable.transferOwnership(address)._newOwner (#223) is not in mixedCase
Function BasicToken.__AllowTokenTransfer() (#264-268) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._to (#287) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._value (#287) is not in mixedCase
Parameter BasicToken.balanceOf(address)._owner (#303) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#329) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#330) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#331) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#358) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#358) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#371) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#372) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#392) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#393) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#415) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#416) is not in mixedCase
Function MintableToken.__basicTokenTransferable() (#461-465) is not in mixedCase
Function MintableToken.stop_mint() (#469-473) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._to (#481) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._amount (#482) is not in mixedCase
Variable MintableToken.__Finalized (#445) is not in mixedCase
Parameter FreezableToken.freezingCount(address)._addr (#535) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._addr (#548) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._index (#548) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._to (#598) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._until (#598) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._to (#644) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._amount (#644) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._until (#644) is not in mixedCase
Function MainToken.__name() (#690-692) is not in mixedCase
Function MainToken.__symbol() (#694-696) is not in mixedCase
Function MainToken.__decimals() (#698-700) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._from (#702) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._to (#702) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._value (#702) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._to (#708) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._value (#708) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

FreezableToken.toKey(address,uint256) (#520-527) uses literals with too many digits:
- result = 0x5749534800000000000000000000000000000000000000000000000000000000 (#522)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ERC20.transferrable (#104) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#112-113)
- StandardToken.allowance(address,address) (#370-379)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#118)
- StandardToken.approve(address,uint256) (#358-362)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#214-217)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#223-225)
__AllowTokenTransfer() should be declared external:
- BasicToken.__AllowTokenTransfer() (#264-268)
totalSupply() should be declared external:
- BasicToken.totalSupply() (#274-276)
totalSupplyCheck() should be declared external:
- BasicToken.totalSupplyCheck() (#278-280)
balanceOf(address) should be declared external:
- BasicToken.balanceOf(address) (#303-305)
increaseApproval(address,uint256) should be declared external:
- StandardToken.increaseApproval(address,uint256) (#391-402)
decreaseApproval(address,uint256) should be declared external:
- StandardToken.decreaseApproval(address,uint256) (#414-429)
__basicTokenTransferable() should be declared external:
- MintableToken.__basicTokenTransferable() (#461-465)
stop_mint() should be declared external:
- MintableToken.stop_mint() (#469-473)
mint(address,uint256) should be declared external:
- MintableToken.mint(address,uint256) (#480-495)
finishMinting() should be declared external:
- MintableToken.finishMinting() (#501-505)
freezingCount(address) should be declared external:
- FreezableToken.freezingCount(address) (#535-541)
releaseAll() should be declared external:
- FreezableToken.releaseAll() (#587-596)
mintAndFreeze(address,uint256,uint64) should be declared external:
- FreezableMintableToken.mintAndFreeze(address,uint256,uint64) (#644-656)
__name() should be declared external:
- MainToken.__name() (#690-692)
__symbol() should be declared external:
- MainToken.__symbol() (#694-696)
__decimals() should be declared external:
- MainToken.__decimals() (#698-700)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Discord account


Twitter account has few posts


Token was delisted from CoinGecko

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinGecko listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has relatively low CoinMarketCap rank

Price for ETCH

News for ETCH