SONETCOIN is a cryptocurrency that can provide platform services, which can be used to configure the hyperledger based blockchain network and create a Decentralized Application(DApp).
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Sonet.constructor() (#557-560):
External calls:
- setDexPairing(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#558)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#564-565)
State variables written after the call(s):
- _mint(0x7934BaDb8071889e4C640Ba55CF2215f7Eb73FbF,10000000 * 10 ** decimals()) (#559)
- _balances[account] += amount (#505)
- _mint(0x7934BaDb8071889e4C640Ba55CF2215f7Eb73FbF,10000000 * 10 ** decimals()) (#559)
- _totalSupply += amount (#504)
Reentrancy in Sonet.setDexPairing(address) (#562-567):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#564-565)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#566)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Sonet.constructor() (#557-560):
External calls:
- setDexPairing(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#558)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#564-565)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#506)
- _mint(0x7934BaDb8071889e4C640Ba55CF2215f7Eb73FbF,10000000 * 10 ** decimals()) (#559)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#187-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#189)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#90-95) uses assembly
- INLINE ASM (#93)
Address._functionCallWithValue(address,bytes,uint256,string) (#121-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#121-139) is never used and should be removed
Address.functionCall(address,bytes) (#104-106) is never used and should be removed
Address.functionCall(address,bytes,string) (#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-119) is never used and should be removed
Address.isContract(address) (#90-95) is never used and should be removed
Address.sendValue(address,uint256) (#97-102) is never used and should be removed
Context._msgData() (#82-85) is never used and should be removed
ERC20._burn(address,uint256) (#511-526) is never used and should be removed
SafeMath.add(uint256,uint256) (#26-31) is never used and should be removed
SafeMath.div(uint256,uint256) (#56-58) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#60-65) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#71-74) is never used and should be removed
SafeMath.mul(uint256,uint256) (#44-54) is never used and should be removed
SafeMath.sub(uint256,uint256) (#33-35) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#37-42) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#97-102):
- (success) = recipient.call{value: amount}() (#100)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#121-139):
- (success,returndata) = target.call{value: weiValue}(data) (#124)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#244) is not in mixedCase
Function IUniswapV2Router01.WETH() (#264) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#83)" inContext (#77-86)
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 (#269) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#270)
Variable Sonet.setDexPairing(address)._uniswapV2Router (#563) is too similar to Sonet.setDexPairing(address).uniswapV2Router_ (#562)
Prevent variables from having similar names.
Additional information: link
Sonet.constructor() (#557-560) uses literals with too many digits:
- _mint(0x7934BaDb8071889e4C640Ba55CF2215f7Eb73FbF,10000000 * 10 ** decimals()) (#559)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
owner() should be declared external:
- Ownable.owner() (#156-158)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-168)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#170-175)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#177-179)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#181-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- ERC20.name() (#412-414)
symbol() should be declared external:
- ERC20.symbol() (#416-418)
totalSupply() should be declared external:
- ERC20.totalSupply() (#424-426)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#428-430)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#432-435)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#437-439)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#441-444)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#446-460)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#462-465)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#467-475)
changeUniswapRouter(address) should be declared external:
- Sonet.changeUniswapRouter(address) (#569-571)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
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 token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram account
Twitter account has less than 100 followers
Unable to find Discord account
Twitter account has few posts