Ethereum SV Token Logo

ETHSV [Ethereum SV] Token

ALERT: phishing / airdrop scam

About ETHSV

Listings

Not Found
Token 3 years

https://t.co/bJabgXcrhU

Social

Laser Scorebeta Last Audit: 18 June 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links


Token is flagged by TokenSniffer due to presence of exploit in contract code


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


Contract ownership is not renounced (belongs to a wallet)

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

EthereumSV.startAirdrop(uint256,uint256,uint256,uint256) (#191-197) should emit an event for:
- aSBlock = _aSBlock (#192)
- aEBlock = _aEBlock (#193)
- aAmt = _aAmt (#194)
- aCap = _aCap (#195)
EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256) (#198-205) should emit an event for:
- sSBlock = _sSBlock (#199)
- sEBlock = _sEBlock (#200)
- sChunk = _sChunk (#201)
- sPrice = _sPrice (#202)
- sCap = _sCap (#203)
Emit an event for critical parameter changes.

Additional information: link

Owned.transferOwnership(address)._newOwner (#58) lacks a zero-check on :
- newOwner = _newOwner (#59)
EthereumSV.clearETH()._owner (#207) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#208)
Check that the address is not zero.

Additional information: link

SafeMath.div(uint256,uint256) (#21-24) is never used and should be removed
SafeMath.mul(uint256,uint256) (#17-20) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter Owned.transferOwnership(address)._newOwner (#58) is not in mixedCase
Variable TokenERC20._totalSupply (#75) is not in mixedCase
Parameter EthereumSV.getAirdrop(address)._refer (#151) is not in mixedCase
Parameter EthereumSV.tokenSale(address)._refer (#166) is not in mixedCase
Parameter EthereumSV.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#191) is not in mixedCase
Parameter EthereumSV.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#191) is not in mixedCase
Parameter EthereumSV.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#191) is not in mixedCase
Parameter EthereumSV.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#191) is not in mixedCase
Parameter EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#198) is not in mixedCase
Parameter EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#198) is not in mixedCase
Parameter EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#198) is not in mixedCase
Parameter EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#198) is not in mixedCase
Parameter EthereumSV.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#198) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

TokenERC20.constructor() (#80-89) uses literals with too many digits:
- _totalSupply = 1000000000000000 * 10 ** uint256(decimals) (#84)
TokenERC20.constructor() (#80-89) uses literals with too many digits:
- balances[owner] = 300000000000000 * 10 ** uint256(decimals) (#85)
TokenERC20.constructor() (#80-89) uses literals with too many digits:
- balances[address(this)] = 700000000000000 * 10 ** uint256(decimals) (#86)
TokenERC20.constructor() (#80-89) uses literals with too many digits:
- Transfer(address(0),owner,300000000000000 * 10 ** uint256(decimals)) (#87)
TokenERC20.constructor() (#80-89) uses literals with too many digits:
- Transfer(address(0),address(this),700000000000000 * 10 ** uint256(decimals)) (#88)
EthereumSV.constructor() (#146-149) uses literals with too many digits:
- startAirdrop(block.number,99999999,2500000 * 10 ** uint256(decimals),2000000000000) (#147)
EthereumSV.constructor() (#146-149) uses literals with too many digits:
- startSale(block.number,99999999,0,2500000000 * 10 ** uint256(decimals),10000000000000000) (#148)
EthereumSV.getAirdrop(address) (#151-164) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#155)
EthereumSV.tokenSale(address) (#166-182) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#173)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

totalSupply() should be declared external:
- ERC20Interface.totalSupply() (#28)
- TokenERC20.totalSupply() (#91-93)
allowance(address,address) should be declared external:
- ERC20Interface.allowance(address,address) (#30)
- TokenERC20.allowance(address,address) (#115-117)
transfer(address,uint256) should be declared external:
- ERC20Interface.transfer(address,uint256) (#31)
- TokenERC20.transfer(address,uint256) (#97-102)
approve(address,uint256) should be declared external:
- ERC20Interface.approve(address,uint256) (#32)
- TokenERC20.approve(address,uint256) (#103-107)
transferFrom(address,address,uint256) should be declared external:
- ERC20Interface.transferFrom(address,address,uint256) (#33)
- TokenERC20.transferFrom(address,address,uint256) (#108-114)
receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#40)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#58-60)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#61-66)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenERC20.approveAndCall(address,uint256,bytes) (#118-123)
getAirdrop(address) should be declared external:
- EthereumSV.getAirdrop(address) (#151-164)
tokenSale(address) should be declared external:
- EthereumSV.tokenSale(address) (#166-182)
viewAirdrop() should be declared external:
- EthereumSV.viewAirdrop() (#184-186)
viewSale() should be declared external:
- EthereumSV.viewSale() (#187-189)
clearETH() should be declared external:
- EthereumSV.clearETH() (#206-209)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


Token makes many airdrops and seems to be a phishing / airdrop scam

Additional information: link


Token is deployed only at one blockchain


Telegram account link seems to be invalid


Last post in Twitter was more than 180 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ETHSV

News for ETHSV