SafeNotMoon Token Logo

$SNM [SafeNotMoon] Token

About $SNM

Listings

Token 2 years
white paper

BSC has seen so many different twists, turns and constant changes of trends which can be very hard to understand and comprehend.
SafeNotMoon is coming to take over the media side of the BSC space whilst also educating its investors to understand the different nuisances of the space. With our aggressive marketing strategy and deep connections with influencers, developers and more, we plan to safely take our investors to the moon

Laser Scorebeta Last Audit: 10 December 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...)

SafeNotMoon.addLiquidity(uint256,uint256) (#1282-1297) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
SafeNotMoon.SwapAndLiquify(uint256) (#1299-1356) sends eth to arbitrary user
Dangerous calls:
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
External calls sending eth:
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1228)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#867)
- _balances[recipient] = _balances[recipient].add(amount) (#868)
- super._transfer(from,address(this),fees) (#1239)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#867)
- _balances[recipient] = _balances[recipient].add(amount) (#868)
- super._transfer(from,to,amount) (#1247)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#867)
- _balances[recipient] = _balances[recipient].add(amount) (#868)
- swapping = false (#1207)
Apply the check-effects-interactions pattern.

Additional information: link

SafeNotMoon.SwapAndLiquify(uint256).success (#1342) is written in both
(success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
(success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
SafeNotMoon.SwapAndLiquify(uint256).data (#1343) is written in both
(success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
(success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Contract ticker ($SNM) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
State variables written after the call(s):
- _isSniper[to] = true (#1176)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
State variables written after the call(s):
- super._transfer(from,to,0) (#1186)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#867)
- _balances[recipient] = _balances[recipient].add(amount) (#868)
Apply the check-effects-interactions pattern.

Additional information: link

SafeNotMoon.addLiquidity(uint256,uint256) (#1282-1297) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
Ensure that all the return values of the function calls are used.

Additional information: link

SafeNotMoon.setLiquiditFee(uint256) (#1104-1107) should emit an event for:
- liquidityFee = value (#1105)
- totalFees = (liquidityFee).add(buybackFee) (#1106)
SafeNotMoon.setBuybackFee(uint256) (#1109-1112) should emit an event for:
- buybackFee = value (#1110)
- totalFees = (liquidityFee).add(buybackFee) (#1111)
SafeNotMoon.setBuySellTax(uint256,uint256) (#1363-1366) should emit an event for:
- buyTax = _buyTax (#1364)
- sellTax = _sellTax (#1365)
SafeNotMoon.SetSwapSeconds(uint256) (#1381-1383) should emit an event for:
- _intervalSecondsForSwap = newSeconds * 1 (#1382)
SafeNotMoon.setminimumTokensBeforeSwap(uint256) (#1391-1393) should emit an event for:
- minimumTokensBeforeSwap = _new (#1392)
SafeNotMoon.changeDivgas(uint256) (#1395-1397) should emit an event for:
- divgas = _new (#1396)
SafeNotMoon.setMaxTxAmount(uint256) (#1415-1418) should emit an event for:
- _maxTxAmount = maxTxAmount (#1417)
SafeNotMoon.setBuybackDivisor(uint256) (#1434-1436) should emit an event for:
- buybackDivisor = _divisor (#1435)
SafeNotMoon.changeMaxWallet(uint256) (#1447-1450) should emit an event for:
- _maxWallet = maxWallet (#1449)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#369) lacks a zero-check on :
- _owner = msgSender (#370)
SafeNotMoon.updateUniswapV2Router(address)._uniswapV2Pair (#1079-1080) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1081)
SafeNotMoon.setBuybackWallet(address).wallet (#1099) lacks a zero-check on :
- _buybackWalletAddress = wallet (#1100)
SafeNotMoon.setBuybackAddress(address,address)._buybackAddress1 (#1135) lacks a zero-check on :
- _buybackWalletAddress = address(_buybackAddress1) (#1136)
SafeNotMoon.setBuybackAddress(address,address)._buybackAddress2 (#1135) lacks a zero-check on :
- _buybackWalletAddress2 = address(_buybackAddress2) (#1137)
SafeNotMoon.setCurrentLiqPair(address)._pair (#1403) lacks a zero-check on :
- currentLiqPair = _pair (#1404)
Check that the address is not zero.

Additional information: link

Reentrancy in SafeNotMoon.SwapAndLiquify(uint256) (#1299-1356):
External calls:
- swapTokensForEth(tokensforBuyback.add(half)) (#1321)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- _allowances[owner][spender] = amount (#933)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
State variables written after the call(s):
- _checkLiquidityAdd(from,to) (#1167)
- launchedAt = block.number (#1429)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
State variables written after the call(s):
- snipersCaught ++ (#1177)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
State variables written after the call(s):
- _startTimeForSwap = block.timestamp (#1201)
- swapAndLiquifycount = swapAndLiquifycount.add(1) (#1202)
- swapping = true (#1203)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
External calls sending eth:
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
State variables written after the call(s):
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- _allowances[owner][spender] = amount (#933)
Reentrancy in SafeNotMoon.constructor(address,address,address) (#1028-1068):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1042-1043)
State variables written after the call(s):
- pinkAntiBot = IPinkAntiBot(pinkAntiBot_) (#1044)
Reentrancy in SafeNotMoon.constructor(address,address,address) (#1028-1068):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1042-1043)
- pinkAntiBot.setTokenOwner(msg.sender) (#1045)
State variables written after the call(s):
- antiSnipeContract = AntiSnipeContract(_antiSnipeContractInput) (#1049)
- currentLiqPair = _uniswapV2Pair (#1048)
- uniswapV2Pair = _uniswapV2Pair (#1047)
- uniswapV2Router = _uniswapV2Router (#1046)
Reentrancy in SafeNotMoon.constructor(address,address,address) (#1028-1068):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1042-1043)
- pinkAntiBot.setTokenOwner(msg.sender) (#1045)
- antiSnipeContract.initiateAntiSnipe() (#1050)
State variables written after the call(s):
- _mint(_initiationAddress,1 * (10 ** 9) * (10 ** 9)) (#1065)
- _balances[account] = _balances[account].add(amount) (#887)
- excludeFromFees(_initiationAddress,true) (#1056)
- _isExcludedFromFees[account] = excluded (#1086)
- excludeFromFees(address(this),true) (#1057)
- _isExcludedFromFees[account] = excluded (#1086)
- _liquidityHolders[_initiationAddress] = true (#1054)
- transferOwnership(_initiationAddress) (#1066)
- _owner = newOwner (#408)
- _startTimeForSwap = block.timestamp (#1058)
- _mint(_initiationAddress,1 * (10 ** 9) * (10 ** 9)) (#1065)
- _totalSupply = _totalSupply.add(amount) (#886)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1052)
- automatedMarketMakerPairs[pair] = value (#1123)
Reentrancy in SafeNotMoon.manualSwapnLiq() (#1273-1279):
External calls:
- SwapAndLiquify(minimumTokensBeforeSwap) (#1277)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
External calls sending eth:
- SwapAndLiquify(minimumTokensBeforeSwap) (#1277)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
State variables written after the call(s):
- swapping = false (#1278)
Reentrancy in SafeNotMoon.updateUniswapV2Router(address) (#1075-1082):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1079-1080)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1081)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SafeNotMoon.SwapAndLiquify(uint256) (#1299-1356):
External calls:
- swapTokensForEth(tokensforBuyback.add(half)) (#1321)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#934)
- addLiquidity(otherHalf,bnbForLiq) (#1337)
- SwapandLiquify(half,bnbForLiq,otherHalf) (#1340)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#869)
- super._transfer(from,to,0) (#1186)
Reentrancy in SafeNotMoon._transfer(address,address,uint256) (#1141-1249):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1149)
- _checkLiquidityAdd(from,to) (#1167)
- antiSnipeContract.launch() (#1430)
- antiSnipeContract.onPreTransferSnipeCheck() (#1175)
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1263-1269)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
External calls sending eth:
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1288-1295)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#934)
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- SwapandLiquify(half,bnbForLiq,otherHalf) (#1340)
- SwapAndLiquify(minimumTokensBeforeSwap) (#1205)
- Transfer(sender,recipient,amount) (#869)
- super._transfer(from,address(this),fees) (#1239)
- Transfer(sender,recipient,amount) (#869)
- super._transfer(from,to,amount) (#1247)
- Transfer(sender,recipient,amount) (#869)
- super._transfer(from,address(this),fees) (#1228)
Reentrancy in SafeNotMoon.constructor(address,address,address) (#1028-1068):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1042-1043)
- pinkAntiBot.setTokenOwner(msg.sender) (#1045)
- antiSnipeContract.initiateAntiSnipe() (#1050)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1088)
- excludeFromFees(_initiationAddress,true) (#1056)
- ExcludeFromFees(account,excluded) (#1088)
- excludeFromFees(address(this),true) (#1057)
- OwnershipTransferred(_owner,newOwner) (#407)
- transferOwnership(_initiationAddress) (#1066)
- SetAutomatedMarketMakerPair(pair,value) (#1128)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1052)
- Transfer(address(0),account,amount) (#888)
- _mint(_initiationAddress,1 * (10 ** 9) * (10 ** 9)) (#1065)
Apply the check-effects-interactions pattern.

Additional information: link

SafeNotMoon._transfer(address,address,uint256) (#1141-1249) uses timestamp for comparisons
Dangerous comparisons:
- _startTimeForSwap + _intervalSecondsForSwap <= block.timestamp (#1200)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#18-21) is never used and should be removed
ERC20._burn(address,uint256) (#902-910) is never used and should be removed
SafeMath.mod(uint256,uint256) (#534-536) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#550-553) is never used and should be removed
SafeMathInt.abs(int256) (#636-639) is never used and should be removed
SafeMathInt.add(int256,int256) (#627-631) is never used and should be removed
SafeMathInt.div(int256,int256) (#607-613) is never used and should be removed
SafeMathInt.mul(int256,int256) (#595-602) is never used and should be removed
SafeMathInt.sub(int256,int256) (#618-622) is never used and should be removed
SafeMathInt.toUint256Safe(int256) (#642-645) is never used and should be removed
SafeMathUint.toInt256Safe(uint256) (#662-666) is never used and should be removed
SafeNotMoon.launched() (#1411-1413) is never used and should be removed
Remove unused functions.

Additional information: link

SafeNotMoon.totalFees (#978) is set pre-construction with a non-constant function or state variable:
- (liquidityFee).add(buybackFee)
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

Pragma version^0.8.7 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.7 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

Low level call in SafeNotMoon.SwapAndLiquify(uint256) (#1299-1356):
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: bal1}() (#1348)
- (success,data) = address(_buybackWalletAddress2).call{gas: divgas,value: bal2}() (#1349)
- (success,data) = address(_buybackWalletAddress).call{gas: divgas,value: buybackBalance}() (#1351)
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() (#186) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#187) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#204) is not in mixedCase
Function IUniswapV2Router01.WETH() (#225) is not in mixedCase
Parameter SafeNotMoon.setBuybackAddress(address,address)._buybackAddress1 (#1135) is not in mixedCase
Parameter SafeNotMoon.setBuybackAddress(address,address)._buybackAddress2 (#1135) is not in mixedCase
Function SafeNotMoon.SwapAndLiquify(uint256) (#1299-1356) is not in mixedCase
Parameter SafeNotMoon.transferContractToken(address,address,uint256)._token (#1358) is not in mixedCase
Parameter SafeNotMoon.transferContractToken(address,address,uint256)._to (#1358) is not in mixedCase
Parameter SafeNotMoon.transferContractToken(address,address,uint256)._quant (#1358) is not in mixedCase
Parameter SafeNotMoon.setBuySellTax(uint256,uint256)._buyTax (#1363) is not in mixedCase
Parameter SafeNotMoon.setBuySellTax(uint256,uint256)._sellTax (#1363) is not in mixedCase
Parameter SafeNotMoon.changeSnipe(bool)._snipe (#1368) is not in mixedCase
Function SafeNotMoon.Sweep() (#1372-1375) is not in mixedCase
Function SafeNotMoon.GetSwapMinutes() (#1377-1379) is not in mixedCase
Function SafeNotMoon.SetSwapSeconds(uint256) (#1381-1383) is not in mixedCase
Parameter SafeNotMoon.setEnableAntiBot(bool)._enable (#1386) is not in mixedCase
Parameter SafeNotMoon.setminimumTokensBeforeSwap(uint256)._new (#1391) is not in mixedCase
Parameter SafeNotMoon.changeDivgas(uint256)._new (#1395) is not in mixedCase
Parameter SafeNotMoon.setBlockChunk(uint256)._chunk (#1399) is not in mixedCase
Parameter SafeNotMoon.setCurrentLiqPair(address)._pair (#1403) is not in mixedCase
Parameter SafeNotMoon.botTimer(uint256)._timer (#1407) is not in mixedCase
Parameter SafeNotMoon.setMultiBuybackWallet(bool)._enabled (#1420) is not in mixedCase
Parameter SafeNotMoon.setBuybackDivisor(uint256)._divisor (#1434) is not in mixedCase
Parameter SafeNotMoon.addLiquidityHolderSolo(address,bool)._choice (#1476) is not in mixedCase
Variable SafeNotMoon._buybackWalletAddress (#979) is not in mixedCase
Variable SafeNotMoon._buybackWalletAddress2 (#980) is not in mixedCase
Variable SafeNotMoon._startTimeForSwap (#988) is not in mixedCase
Variable SafeNotMoon._intervalSecondsForSwap (#989) is not in mixedCase
Variable SafeNotMoon._hasLiqBeenAdded (#993) is not in mixedCase
Variable SafeNotMoon._maxTxAmount (#1000) is not in mixedCase
Variable SafeNotMoon._maxWallet (#1001) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#19)" inContext (#13-22)
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 (#230) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#231)
Variable SafeNotMoon.setBuybackAddress(address,address)._buybackAddress1 (#1135) is too similar to SafeNotMoon.setBuybackAddress(address,address)._buybackAddress2 (#1135)
Prevent variables from having similar names.

Additional information: link

SafeNotMoon.slitherConstructorVariables() (#958-1485) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#968)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#590) is never used in SafeMathInt (#588-646)
Remove unused state variables.

Additional information: link

SafeNotMoon.deadWallet (#968) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#396-399)
name() should be declared external:
- ERC20.name() (#709-711)
symbol() should be declared external:
- ERC20.symbol() (#717-719)
decimals() should be declared external:
- ERC20.decimals() (#734-736)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#760-763)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#768-770)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#779-782)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#797-805)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#819-822)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#838-841)
updateUniswapV2Router(address) should be declared external:
- SafeNotMoon.updateUniswapV2Router(address) (#1075-1082)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SafeNotMoon.excludeMultipleAccountsFromFees(address[],bool) (#1091-1097)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SafeNotMoon.setAutomatedMarketMakerPair(address,bool) (#1114-1118)
isExcludedFromFees(address) should be declared external:
- SafeNotMoon.isExcludedFromFees(address) (#1131-1133)
manualSwapnLiq() should be declared external:
- SafeNotMoon.manualSwapnLiq() (#1273-1279)
transferContractToken(address,address,uint256) should be declared external:
- SafeNotMoon.transferContractToken(address,address,uint256) (#1358-1360)
GetSwapMinutes() should be declared external:
- SafeNotMoon.GetSwapMinutes() (#1377-1379)
setminimumTokensBeforeSwap(uint256) should be declared external:
- SafeNotMoon.setminimumTokensBeforeSwap(uint256) (#1391-1393)
changeDivgas(uint256) should be declared external:
- SafeNotMoon.changeDivgas(uint256) (#1395-1397)
setCurrentLiqPair(address) should be declared external:
- SafeNotMoon.setCurrentLiqPair(address) (#1403-1405)
botTimer(uint256) should be declared external:
- SafeNotMoon.botTimer(uint256) (#1407-1409)
setMultiBuybackWallet(bool) should be declared external:
- SafeNotMoon.setMultiBuybackWallet(bool) (#1420-1422)
launch() should be declared external:
- SafeNotMoon.launch() (#1453-1456)
multisend(address[],uint256[]) should be declared external:
- SafeNotMoon.multisend(address[],uint256[]) (#1466-1473)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Youtube 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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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 token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for $SNM