SnowflakeTorch Token Logo

SNOW [SnowflakeTorch] Token

About SNOW

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 5 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in SnowflakeTorch._transfer(address,address,uint256) (#1026-1069):
External calls:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#982)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1156)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1165)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1176)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#887)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1157)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1167)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1177)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#889)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _rTotal = _rTotal.sub(rFee) (#937)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#984)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1175)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#886)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1166)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#888)
Reentrancy in SnowflakeTorch.airdrop(address,uint256) (#815-819):
External calls:
- _transfer(_msgSender(),recipient,amount * 10 ** 9) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(_msgSender(),recipient,amount * 10 ** 9) (#817)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- restoreAllFee() (#818)
- _liquidityFee = _previousLiquidityFee (#1011)
- restoreAllFee() (#818)
- _taxFee = _previousTaxFee (#1010)
Reentrancy in SnowflakeTorch.airdropInternal(address,uint256) (#821-825):
External calls:
- _transfer(_msgSender(),recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(_msgSender(),recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- restoreAllFee() (#824)
- _liquidityFee = _previousLiquidityFee (#1011)
- restoreAllFee() (#824)
- _taxFee = _previousTaxFee (#1010)
Apply the check-effects-interactions pattern.

Additional information: link

SnowflakeTorch.claimOtherTokens(IERC20,address) (#912-914) ignores return value by tokenAddress.transfer(walletaddress,tokenAddress.balanceOf(address(this))) (#913)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

SnowflakeTorch.botWallets (#694) is never initialized. It is used in:
- SnowflakeTorch.getBotWalletStatus(address) (#920-922)
- SnowflakeTorch._tokenTransfer(address,address,uint256,bool) (#1126-1152)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

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

Additional information: link

SnowflakeTorch.setSwapThresholdAmount(uint256) (#903-905) should emit an event for:
- numTokensSellToAddToLiquidity = SwapThresholdAmount * 10 ** 9 (#904)
Emit an event for critical parameter changes.

Additional information: link

SnowflakeTorch.clearStuckBalance(address).walletaddress (#916) lacks a zero-check on :
- walletaddress.transfer(address(this).balance) (#917)
Check that the address is not zero.

Additional information: link

SnowflakeTorch.swapTokensForEth(uint256) (#1092-1108) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1096)
SnowflakeTorch.swapTokensForEth(uint256) (#1092-1108) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
SnowflakeTorch.addLiquidity(uint256,uint256) (#1110-1123) has external calls inside a loop: uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Favor pull over push strategy for external calls.

Additional information: link

SnowflakeTorch.addLiquidity(uint256,uint256) (#1110-1123) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Ensure that all the return values of the function calls are used.

Additional information: link

Reentrancy in SnowflakeTorch._transfer(address,address,uint256) (#1026-1069):
External calls:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _liquidityFee = _previousLiquidityFee (#1011)
- _liquidityFee = 0 (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _previousLiquidityFee = _liquidityFee (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _previousTaxFee = _taxFee (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _tFeeTotal = _tFeeTotal.add(tFee) (#938)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- _taxFee = _previousTaxFee (#1010)
- _taxFee = 0 (#1005)
Reentrancy in SnowflakeTorch.constructor() (#737-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#743-744)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#750)
- _isExcludedFromFee[address(this)] = true (#751)
- uniswapV2Router = _uniswapV2Router (#747)
Reentrancy in SnowflakeTorch.swapAndLiquify(uint256) (#1071-1090):
External calls:
- swapTokensForEth(half) (#1082)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1087)
- _allowances[owner][spender] = amount (#1022)
Reentrancy in SnowflakeTorch.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) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
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 (#1022)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SnowflakeTorch._transfer(address,address,uint256) (#1026-1069):
External calls:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1160)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- Transfer(sender,recipient,tTransferAmount) (#1180)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- Transfer(sender,recipient,tTransferAmount) (#1170)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
- Transfer(sender,recipient,tTransferAmount) (#892)
- _tokenTransfer(from,to,amount,takeFee) (#1068)
Reentrancy in SnowflakeTorch.constructor() (#737-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#743-744)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#753)
Reentrancy in SnowflakeTorch.swapAndLiquify(uint256) (#1071-1090):
External calls:
- swapTokensForEth(half) (#1082)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1087)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1023)
- addLiquidity(otherHalf,newBalance) (#1087)
- SwapAndLiquify(half,newBalance,otherHalf) (#1089)
Reentrancy in SnowflakeTorch.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) (#1115-1122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1101-1107)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1115-1122)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1023)
- _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)(block.timestamp > _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

SnowflakeTorch.removeAllFee() (#999-1007) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#1002)
SnowflakeTorch.removeAllFee() (#999-1007) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#1003)
SnowflakeTorch.removeAllFee() (#999-1007) has costly operations inside a loop:
- _taxFee = 0 (#1005)
SnowflakeTorch.removeAllFee() (#999-1007) has costly operations inside a loop:
- _liquidityFee = 0 (#1006)
SnowflakeTorch.lockTheSwap() (#731-735) has costly operations inside a loop:
- inSwapAndLiquify = true (#732)
SnowflakeTorch.lockTheSwap() (#731-735) has costly operations inside a loop:
- inSwapAndLiquify = false (#734)
SnowflakeTorch._reflectFee(uint256,uint256) (#936-939) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#937)
SnowflakeTorch._reflectFee(uint256,uint256) (#936-939) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#938)
SnowflakeTorch.restoreAllFee() (#1009-1012) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#1010)
SnowflakeTorch.restoreAllFee() (#1009-1012) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#1011)
SnowflakeTorch.includeInReward(address) (#872-883) has costly operations inside a loop:
- _excluded.pop() (#879)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Context._msgData() (#237-240) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

SnowflakeTorch._rTotal (#701) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SnowflakeTorch._previousTaxFee (#709) is set pre-construction with a non-constant function or state variable:
- _taxFee
SnowflakeTorch._previousLiquidityFee (#712) 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

Pragma version^0.8.9 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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 Address.sendValue(address,uint256) (#292-298):
- (success) = recipient.call{value: amount}() (#296)
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

SnowflakeTorch (#681-1184) should inherit from IAirdrop (#677-679)
Inherit from the missing interface or contract.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#502) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#503) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#520) is not in mixedCase
Function IUniswapV2Router01.WETH() (#541) is not in mixedCase
Parameter SnowflakeTorch.setSwapThresholdAmount(uint256).SwapThresholdAmount (#903) is not in mixedCase
Parameter SnowflakeTorch.setSwapAndLiquifyEnabled(bool)._enabled (#928) is not in mixedCase
Parameter SnowflakeTorch.calculateTaxFee(uint256)._amount (#987) is not in mixedCase
Parameter SnowflakeTorch.calculateLiquidityFee(uint256)._amount (#993) is not in mixedCase
Variable SnowflakeTorch._taxFee (#708) is not in mixedCase
Variable SnowflakeTorch._liquidityFee (#711) is not in mixedCase
Variable SnowflakeTorch._maxTxAmount (#720) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#238)" inContext (#231-241)
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 (#546) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#547)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._transferToExcluded(address,address,uint256).rTransferAmount (#1164) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._transferStandard(address,address,uint256).tTransferAmount (#1155)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._transferFromExcluded(address,address,uint256).tTransferAmount (#1174)
Variable SnowflakeTorch.reflectionFromToken(uint256,bool).rTransferAmount (#851) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._transferBothExcluded(address,address,uint256).rTransferAmount (#885) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._getValues(uint256).tTransferAmount (#942)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._transferFromExcluded(address,address,uint256).rTransferAmount (#1174) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._getValues(uint256).rTransferAmount (#943) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._transferToExcluded(address,address,uint256).tTransferAmount (#1164)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._transferBothExcluded(address,address,uint256).tTransferAmount (#885)
Variable SnowflakeTorch._transferStandard(address,address,uint256).rTransferAmount (#1155) is too similar to SnowflakeTorch._getTValues(uint256).tTransferAmount (#950)
Prevent variables from having similar names.

Additional information: link

SnowflakeTorch._decimals (#706) should be constant
SnowflakeTorch._maxTxAmount (#720) should be constant
SnowflakeTorch._name (#704) should be constant
SnowflakeTorch._symbol (#705) should be constant
SnowflakeTorch._tTotal (#700) should be constant
SnowflakeTorch.botscantrade (#695) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#447-449)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#452-457)
unlock() should be declared external:
- Ownable.unlock() (#460-465)
name() should be declared external:
- SnowflakeTorch.name() (#756-758)
symbol() should be declared external:
- SnowflakeTorch.symbol() (#760-762)
decimals() should be declared external:
- SnowflakeTorch.decimals() (#764-766)
totalSupply() should be declared external:
- SnowflakeTorch.totalSupply() (#768-770)
transfer(address,uint256) should be declared external:
- SnowflakeTorch.transfer(address,uint256) (#777-780)
allowance(address,address) should be declared external:
- SnowflakeTorch.allowance(address,address) (#782-784)
approve(address,uint256) should be declared external:
- SnowflakeTorch.approve(address,uint256) (#786-789)
transferFrom(address,address,uint256) should be declared external:
- SnowflakeTorch.transferFrom(address,address,uint256) (#791-795)
increaseAllowance(address,uint256) should be declared external:
- SnowflakeTorch.increaseAllowance(address,uint256) (#797-800)
decreaseAllowance(address,uint256) should be declared external:
- SnowflakeTorch.decreaseAllowance(address,uint256) (#802-805)
isExcludedFromReward(address) should be declared external:
- SnowflakeTorch.isExcludedFromReward(address) (#807-809)
totalFees() should be declared external:
- SnowflakeTorch.totalFees() (#811-813)
deliver(uint256) should be declared external:
- SnowflakeTorch.deliver(uint256) (#836-843)
reflectionFromToken(uint256,bool) should be declared external:
- SnowflakeTorch.reflectionFromToken(uint256,bool) (#845-854)
excludeFromReward(address) should be declared external:
- SnowflakeTorch.excludeFromReward(address) (#862-870)
excludeFromFee(address) should be declared external:
- SnowflakeTorch.excludeFromFee(address) (#895-897)
includeInFee(address) should be declared external:
- SnowflakeTorch.includeInFee(address) (#899-901)
claimTokens() should be declared external:
- SnowflakeTorch.claimTokens() (#907-910)
getBotWalletStatus(address) should be declared external:
- SnowflakeTorch.getBotWalletStatus(address) (#920-922)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SnowflakeTorch.setSwapAndLiquifyEnabled(bool) (#928-931)
isExcludedFromFee(address) should be declared external:
- SnowflakeTorch.isExcludedFromFee(address) (#1014-1016)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is low.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SNOW