SaylorMoon Token Logo

SMOON [SaylorMoon] Token

About SMOON

Listings

Token 2 years
CoinMarketCap 2 years
white paper

SaylorMoon is a community driven meme token on Binance Smart Chain. The token is based on Elon Musk’s tweet.

The fight between Saylor and Musk is a fight where only one will be victorious!

This project is developed by a team based in Europe. The community takes a huge role, as holders can involve as much as they want with the project. All the decisions are voted between the members.

The devs of this project don’t hold large wallets (~1%) and the liquidity is locked until 2100, so there shouldn’t be fear for things like a rugpull. Also, the dev team has made public their faces and real names in the Telegram groups so anyone can check their profiles online.

This project is based on a healthy, growing community. All the decisions are based on the consensus between developers and holders.
Each transaction has a 10% fee, which is split in two different ways:
5% fee is auto redistributed to all existing holders.
5% fee is added to the liquidity pool and used for other token growing purposes (like marketing).
There are intentions to contribute to charity as the project grows.
This is the first lady token standard, and we want to make a big ladies community in the crypto world.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in SaylorMoon._transfer(address,address,uint256) (#994-1038):
External calls:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1025)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#950)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1119)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#866)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1120)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1130)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1140)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#868)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _rTotal = _rTotal.sub(rFee) (#905)
- _tokenTransfer(from,to,amount,takeFee) (#1037)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#952)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1138)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#865)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1129)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#867)
Apply the check-effects-interactions pattern.

Additional information: link

Redundant expression "this (#238)" inContext (#232-241)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SaylorMoon.addLiquidity(uint256,uint256) (#1081-1094) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
Ensure that all the return values of the function calls are used.

Additional information: link

SaylorMoon._approve(address,address,uint256).owner (#986) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.

Additional information: link

SaylorMoon.setMaxTxPercent(uint256) (#890-894) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#891-893)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SaylorMoon.transferFrom(address,address,uint256) (#791-795):
External calls:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#793)
- _allowances[owner][spender] = amount (#990)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SaylorMoon.transferFrom(address,address,uint256) (#791-795):
External calls:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1072-1078)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1086-1093)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#991)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#793)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.

Additional information: link

SaylorMoon._previousLiquidityFee (#708) 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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable SaylorMoon._maxTxAmount (#716) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable SaylorMoon._getValues(uint256).rTransferAmount (#911) is too similar to SaylorMoon._transferStandard(address,address,uint256).tTransferAmount (#1118)
Prevent variables from having similar names.

Additional information: link

SaylorMoon.slitherConstructorVariables() (#682-1150) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#717)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SaylorMoon.numTokensSellToAddToLiquidity (#717) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- SaylorMoon.isExcludedFromFee(address) (#982-984)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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

Additional information: link


Unable to find token contract audit


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


Unable to find code repository for the project


Token has a considerable age, but we're still unable to find its website


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


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SMOON