Saitama Cat Token Logo

SACA [Saitama Cat] Token

ALERT: potential scam

About SACA

Listings

Token 4 years
white paper

"Our project concept is come from the image of Saitama Cat, which is a combination of the image of the manga hero Saitama - who can defeat any enemy with just one punch, a character with overwhelming strength. but never thought of fame but simply justice and Cat - a lovely animal
The reason why Saitama Cat is the name of the project is also because this is also the inspiration for the NFT collection, the heart of our project, with unique NFTs that bring value and profit for the $SACA holders and NFTs owners."

Social

Laser Scorebeta Last Audit: 28 June 2022

report
Token seems to be a scam (type: potential scam).

SaitamaCat.rescueTokenFromContract(bool,address,uint256,address) (contracts/SaitamaCat.sol#159-172) ignores return value by IERC20(tokenAddress).transfer(receiver,amount) (contracts/SaitamaCat.sol#170)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

SaitamaCat.manualSetup(uint8,uint8) (contracts/SaitamaCat.sol#304-319) contains a tautology or contradiction:
- require(bool,string)(percentSwapLimit_ >= 0 && percentSwapLimit_ <= swapLimitDenominator_,Error: out of range!) (contracts/SaitamaCat.sol#309-313)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

SaitamaCat.manualSetup(uint8,uint8) (contracts/SaitamaCat.sol#304-319) should emit an event for:
- _swapLimit = totalSupply().mul(percentSwapLimit_).div(swapLimitDenominator_) (contracts/SaitamaCat.sol#314-316)
Emit an event for critical parameter changes.

Additional information: link

SaitamaCat.rescueTokenFromContract(bool,address,uint256,address).receiver (contracts/SaitamaCat.sol#163) lacks a zero-check on :
- address(receiver).transfer(contractETHBalance) (contracts/SaitamaCat.sol#168)
Check that the address is not zero.

Additional information: link

Reentrancy in SaitamaCat.constructor() (contracts/SaitamaCat.sol#50-86):
External calls:
- amm.pair = IUniswapV2Factory(_router.factory()).createPair(address(this),_router.WETH()) (contracts/SaitamaCat.sol#69-72)
State variables written after the call(s):
- _approve(address(this),amm.router,type()(uint256).max) (contracts/SaitamaCat.sol#74)
- _allowances[owner][spender] = amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#318)
- _isExcludeFromFee[msg.sender] = true (contracts/SaitamaCat.sol#75)
- _isExcludeFromFee[address(this)] = true (contracts/SaitamaCat.sol#76)
- _isExcludeFromFee[wallets.marketingWallet] = true (contracts/SaitamaCat.sol#77)
- _isExcludeFromFee[wallets.charityWallet] = true (contracts/SaitamaCat.sol#78)
- _isExcludeFromLimit[msg.sender] = true (contracts/SaitamaCat.sol#80)
- _isExcludeFromLimit[address(this)] = true (contracts/SaitamaCat.sol#81)
- _isExcludeFromLimit[wallets.marketingWallet] = true (contracts/SaitamaCat.sol#82)
- _isExcludeFromLimit[wallets.charityWallet] = true (contracts/SaitamaCat.sol#83)
- _swapLimit = totalSupply().div(200) (contracts/SaitamaCat.sol#85)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SaitamaCat.constructor() (contracts/SaitamaCat.sol#50-86):
External calls:
- amm.pair = IUniswapV2Factory(_router.factory()).createPair(address(this),_router.WETH()) (contracts/SaitamaCat.sol#69-72)
Event emitted after the call(s):
- Approval(owner,spender,amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#319)
- _approve(address(this),amm.router,type()(uint256).max) (contracts/SaitamaCat.sol#74)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0', '^0.8.8']
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4)
- >=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol#1)
- >=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#1)
- >=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol#1)
- ^0.8.8 (contracts/SaitamaCat.sol#3)
Use one Solidity version.

Additional information: link

Function IUniswapV2Router01.WETH() (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#5) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
ERC20._burn(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#280-295) is never used and should be removed
SafeMath.add(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#93-95) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#191-200) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#151-153) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#217-226) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#168-177) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#22-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#64-69) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#76-81) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#47-57) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#35-40) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4) allows old versions
Pragma version>=0.5.0 (@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol#1) allows old versions
Pragma version>=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#1) allows old versions
Pragma version>=0.6.2 (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol#1) allows old versions
Pragma version^0.8.8 (contracts/SaitamaCat.sol#3) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#10) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol#11)
Variable SaitamaCat._isExcludeFromFee (contracts/SaitamaCat.sol#47) is too similar to SaitamaCat.setIsExcludeFromFee(address,bool).isExcludeFromFee_ (contracts/SaitamaCat.sol#189)
Variable SaitamaCat._isExcludeFromLimit (contracts/SaitamaCat.sol#48) is too similar to SaitamaCat.setIsExcludeFromLimit(address,bool).isExcludeFromLimit_ (contracts/SaitamaCat.sol#213)
Prevent variables from having similar names.

Additional information: link

name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#62-64)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#70-72)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#113-117)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#136-140)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#158-167)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#181-185)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#201-210)
owner() should be declared external:
- SaitamaCat.owner() (contracts/SaitamaCat.sol#100-102)
isExcludeFromFee(address) should be declared external:
- SaitamaCat.isExcludeFromFee(address) (contracts/SaitamaCat.sol#104-106)
isExcludeFromLimit(address) should be declared external:
- SaitamaCat.isExcludeFromLimit(address) (contracts/SaitamaCat.sol#108-110)
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 less than 100. Token is either dead or inactive. Ignore for presale.


Telegram account link seems to be invalid


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find KYC or doxxing proof


Unable to verify token contract address on the website


Unable to find audit 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 CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find code repository for the project


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for SACA

News for SACA