Sakura Neko Token Logo

NEKO [Sakura Neko] Token

About NEKO

Listings

Token 2 years
white paper

Asobou? Sakura Neko is just a baby. Will you play with her?

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 SakuraNeko._transfer(address,address,uint256) (#1022-1070):
External calls:
- swapAndLiquify(contractTokenBalance) (#1057)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1125-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1057)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1069)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#978)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1172)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1181)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1192)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1173)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#894)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1183)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1193)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#896)
- _tokenTransfer(from,to,amount,takeFee) (#1069)
- _rTotal = _rTotal.sub(rFee) (#933)
- _tokenTransfer(from,to,amount,takeFee) (#1069)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#980)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#893)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1191)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1182)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#895)
Apply the check-effects-interactions pattern.

Additional information: link

SakuraNeko.swapAndLiquify(uint256) (#1072-1096) performs a multiplication on the result of a division:
-half = contractTokenBalance.mul(liquidityShare).div(10000) (#1074)
-rest = contractTokenBalance.sub(half.mul(2)) (#1076)
Consider ordering multiplication before division.

Additional information: link

SakuraNeko.addLiquidity(uint256,uint256) (#1134-1147) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
Ensure that all the return values of the function calls are used.

Additional information: link

SakuraNeko._approve(address,address,uint256).owner (#1014) shadows:
- Ownable.owner() (#417-419) (function)
Rename the local variables that shadow another component.

Additional information: link

SakuraNeko.setMaxTxPercent(uint256) (#918-922) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 4) (#919-921)
Emit an event for critical parameter changes.

Additional information: link

SakuraNeko.setDeveloper(address)._developer (#762) lacks a zero-check on :
- developer = _developer (#763)
Check that the address is not zero.

Additional information: link

Reentrancy in SakuraNeko.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1125-1131)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
- _allowances[owner][spender] = amount (#1018)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SakuraNeko.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1107-1113)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,developer,block.timestamp) (#1125-1131)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1139-1146)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#362-383) uses assembly
- INLINE ASM (#375-378)
Do not use evm assembly.

Additional information: link

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

Additional information: link

SakuraNeko._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

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

Additional information: link

Variable SakuraNeko._maxTxAmount (#724) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#242)" inContext (#236-245)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable SakuraNeko._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to SakuraNeko._transferToExcluded(address,address,uint256).tTransferAmount (#1180)
Prevent variables from having similar names.

Additional information: link

SakuraNeko.slitherConstructorVariables() (#686-1203) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 9 (#700)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SakuraNeko._tTotal (#700) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- SakuraNeko.isExcludedFromFee(address) (#1010-1012)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 number of swaps.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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 price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for NEKO