SonOfSaitama Token Logo

SOS [SonOfSaitama] Token

About SOS

Listings

Token 2 years
white paper

Son Of Saitama is being born onto the BSC as the literal son of saitama. centered around hype and ready to moon!

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

Reentrancy in SonOfSaitama._taxedTransfer(address,address,uint256,bool,bool) (#874-943):
External calls:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
State variables written after the call(s):
- _removeToken(sender,amount) (#931)
- _balances[addr] = newAmount (#1034)
- _balances[addr] = newAmount (#1041)
- _balances[address(this)] += contractToken (#934)
- _addToken(recipient,taxedAmount) (#939)
- _balances[addr] = newAmount (#1013)
- _balances[addr] = newAmount (#1024)
- _circulatingSupply -= tokensToBeBurnt (#936)
- _removeToken(sender,amount) (#931)
- alreadyPaidShares[addr] = profitPerShare * newAmount (#1043)
- _addToken(recipient,taxedAmount) (#939)
- alreadyPaidShares[addr] = profitPerShare * newAmount (#1020)
- _swapContractToken() (#922)
- profitPerShare += ((amount * DistributionMultiplier) / totalShares) (#1075)
- _removeToken(sender,amount) (#931)
- toBePaid[addr] += payment (#1045)
- _addToken(recipient,taxedAmount) (#939)
- toBePaid[addr] += payment (#1022)
Reentrancy in SonOfSaitama.claim(address) (#1082-1116):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
State variables written after the call(s):
- _isWithdrawing = false (#1115)
Apply the check-effects-interactions pattern.

Additional information: link

SonOfSaitama.TeamReleaseLiquidity() (#1392-1402) ignores return value by liquidityToken.transfer(TeamWallet,amount) (#1400)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

SonOfSaitama.claim(address) (#1082-1116) uses a dangerous strict equality:
- amount == 0 (#1099)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

SonOfSaitama.constructor() (#799-839) ignores return value by _excluded.add(TeamWallet) (#830)
SonOfSaitama.constructor() (#799-839) ignores return value by _excluded.add(walletTwo) (#831)
SonOfSaitama.constructor() (#799-839) ignores return value by _excluded.add(msg.sender) (#832)
SonOfSaitama.constructor() (#799-839) ignores return value by _excludedFromStaking.add(address(_pancakeRouter)) (#834)
SonOfSaitama.constructor() (#799-839) ignores return value by _excludedFromStaking.add(_pancakePairAddress) (#835)
SonOfSaitama.constructor() (#799-839) ignores return value by _excludedFromStaking.add(address(this)) (#836)
SonOfSaitama.constructor() (#799-839) ignores return value by _excludedFromStaking.add(0x000000000000000000000000000000000000dEaD) (#837)
SonOfSaitama._addLiquidity(uint256,uint256) (#1179-1190) ignores return value by _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
SonOfSaitama.AddWalletExclusion(address) (#1316-1318) ignores return value by _excluded.add(exclusionAdd) (#1317)
SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433) ignores return value by liquidityToken.approve(address(_pancakeRouter),amount) (#1411)
SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#1417-1424)
Ensure that all the return values of the function calls are used.

Additional information: link

SonOfSaitama.allowance(address,address)._owner (#1478) shadows:
- Ownable._owner (#201) (state variable)
SonOfSaitama._approve(address,address,uint256).owner (#1486) shadows:
- Ownable.owner() (#217-219) (function)
Rename the local variables that shadow another component.

Additional information: link

SonOfSaitama.TeamWithdrawXMarketingBNB(uint256) (#1269-1274) should emit an event for:
- marketingBalance -= amount (#1271)
SonOfSaitama.TeamChangeAntiWhale(uint256) (#1281-1283) should emit an event for:
- antiWhale = newAntiWhale * 10 ** _decimals (#1282)
SonOfSaitama.TeamSetSellLockTime(uint256) (#1304-1307) should emit an event for:
- sellLockTime = sellLockSeconds (#1306)
SonOfSaitama.TeamSetBuyLockTime(uint256) (#1310-1313) should emit an event for:
- buyLockTime = buyLockSeconds (#1312)
SonOfSaitama.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#1321-1332) should emit an event for:
- _burnTax = burnTaxes (#1325)
- _liquidityTax = liquidityTaxes (#1326)
- _stakingTax = stakingTaxes (#1327)
- _buyTax = buyTax (#1329)
- _sellTax = sellTax (#1330)
- _transferTax = transferTax (#1331)
SonOfSaitama.TeamChangeMarketingShare(uint8) (#1335-1338) should emit an event for:
- marketingShare = newShare (#1337)
SonOfSaitama.TeamUpdateLimits(uint256,uint256) (#1345-1362) should emit an event for:
- balanceLimit = newBalanceLimit (#1360)
- sellLimit = newSellLimit (#1361)
Emit an event for critical parameter changes.

Additional information: link

SonOfSaitama.TeamChangeTeamWallet(address).newTeamWallet (#1285) lacks a zero-check on :
- TeamWallet = address(newTeamWallet) (#1286)
SonOfSaitama.TeamChangeWalletTwo(address).newWalletTwo (#1289) lacks a zero-check on :
- walletTwo = address(newWalletTwo) (#1290)
SonOfSaitama.SetupLiquidityTokenAddress(address).liquidityTokenAddress (#1374) lacks a zero-check on :
- _liquidityTokenAddress = liquidityTokenAddress (#1375)
Check that the address is not zero.

Additional information: link

Reentrancy in SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433):
External calls:
- liquidityToken.approve(address(_pancakeRouter),amount) (#1411)
- _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#1417-1424)
State variables written after the call(s):
- _distributeStake(newBNBBalance) (#1427)
- marketingBalance += marketingSplit (#1065)
- marketingBalance += amount (#1072)
- marketingBalance += newBNBBalance (#1430)
- _distributeStake(newBNBBalance) (#1427)
- profitPerShare += ((amount * DistributionMultiplier) / totalShares) (#1075)
- _distributeStake(newBNBBalance) (#1427)
- totalStakingReward += amount (#1068)
Reentrancy in SonOfSaitama._swapContractToken() (#1132-1162):
External calls:
- _swapTokenForBNB(swapToken) (#1152)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
- _addLiquidity(liqToken,liqBNB) (#1156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
External calls sending eth:
- _addLiquidity(liqToken,liqBNB) (#1156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
State variables written after the call(s):
- _addLiquidity(liqToken,liqBNB) (#1156)
- _allowances[owner][spender] = amount (#1490)
- _distributeStake(distributeBNB) (#1161)
- marketingBalance += marketingSplit (#1065)
- marketingBalance += amount (#1072)
- _distributeStake(distributeBNB) (#1161)
- profitPerShare += ((amount * DistributionMultiplier) / totalShares) (#1075)
- _distributeStake(distributeBNB) (#1161)
- totalStakingReward += amount (#1068)
Reentrancy in SonOfSaitama._taxedTransfer(address,address,uint256,bool,bool) (#874-943):
External calls:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
State variables written after the call(s):
- _swapContractToken() (#922)
- _allowances[owner][spender] = amount (#1490)
Reentrancy in SonOfSaitama.constructor() (#799-839):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#807)
State variables written after the call(s):
- _burnTax = 0 (#825)
- _buyTax = 10 (#821)
- _liquidityTax = 40 (#826)
- _sellTax = 25 (#822)
- _stakingTax = 60 (#827)
- _transferTax = 0 (#823)
- balanceLimit = InitialSupply / BalanceLimitDivider (#810)
- buyLockTime = 0 (#817)
- sellLimit = InitialSupply / SellLimitDivider (#811)
- sellLockTime = 0 (#814)
Reentrancy in SonOfSaitama.transferFrom(address,address,uint256) (#1494-1502):
External calls:
- _transfer(sender,recipient,amount) (#1495)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1495)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (#1500)
- _allowances[owner][spender] = amount (#1490)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SonOfSaitama._swapContractToken() (#1132-1162):
External calls:
- _swapTokenForBNB(swapToken) (#1152)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
- _addLiquidity(liqToken,liqBNB) (#1156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
External calls sending eth:
- _addLiquidity(liqToken,liqBNB) (#1156)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1491)
- _addLiquidity(liqToken,liqBNB) (#1156)
Reentrancy in SonOfSaitama._taxedTransfer(address,address,uint256,bool,bool) (#874-943):
External calls:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- claim(sender) (#908)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
- _swapContractToken() (#922)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1491)
- _swapContractToken() (#922)
- Transfer(sender,recipient,taxedAmount) (#941)
Reentrancy in SonOfSaitama.claim(address) (#1082-1116):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
Event emitted after the call(s):
- OnWithdrawXRP(amount,addr) (#1114)
Reentrancy in SonOfSaitama.transferFrom(address,address,uint256) (#1494-1502):
External calls:
- _transfer(sender,recipient,amount) (#1495)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1170-1176)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1495)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1182-1189)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1108-1112)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1491)
- _approve(sender,msg.sender,currentAllowance - amount) (#1500)
Apply the check-effects-interactions pattern.

Additional information: link

SonOfSaitama._taxedTransfer(address,address,uint256,bool,bool) (#874-943) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_sellLock[sender] <= block.timestamp || sellLockDisabled,Seller in sellLock) (#883)
- require(bool,string)(_buyLock[recipient] <= block.timestamp || buyLockDisabled,Buyer in buyLock) (#895)
- require(bool,string)(_sellLock[sender] <= block.timestamp || sellLockDisabled,Sender in Lock) (#914)
SonOfSaitama.getLiquidityReleaseTimeInSeconds() (#1194-1199) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _liquidityUnlockTime (#1195)
SonOfSaitama.getAddressSellLockTimeInSeconds(address) (#1214-1221) uses timestamp for comparisons
Dangerous comparisons:
- lockTime <= block.timestamp (#1216)
SonOfSaitama.getAddressBuyLockTimeInSeconds(address) (#1227-1234) uses timestamp for comparisons
Dangerous comparisons:
- lockTime <= block.timestamp (#1229)
SonOfSaitama._prolongLiquidityLock(uint256) (#1385-1389) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(newUnlockTime > _liquidityUnlockTime) (#1387)
SonOfSaitama.TeamReleaseLiquidity() (#1392-1402) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#1394)
SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#1406)
SonOfSaitama.TeamRemoveRemainingBNB() (#1435-1440) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#1436)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#273-282) uses assembly
- INLINE ASM (#280)
Address._verifyCallResult(bool,bytes,string) (#418-435) uses assembly
- INLINE ASM (#427-430)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#418-435) is never used and should be removed
Address.functionCall(address,bytes) (#326-328) is never used and should be removed
Address.functionCall(address,bytes,string) (#336-338) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#351-353) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#361-368) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#400-402) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#410-416) is never used and should be removed
Address.functionStaticCall(address,bytes) (#376-378) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#386-392) is never used and should be removed
Address.isContract(address) (#273-282) is never used and should be removed
Address.sendValue(address,uint256) (#300-306) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (#505-537) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#580-582) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#688-690) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#618-620) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#726-728) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#597-599) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#705-707) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#604-606) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#712-714) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (#644-646) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#590-592) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#698-700) is never used and should be removed
SonOfSaitama._isTeam(address) (#793-795) is never used and should be removed
Remove unused functions.

Additional information: link

SonOfSaitama.balanceLimit (#774) is set pre-construction with a non-constant function or state variable:
- _circulatingSupply
SonOfSaitama.sellLimit (#775) is set pre-construction with a non-constant function or state variable:
- _circulatingSupply
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.sendValue(address,uint256) (#300-306):
- (success) = recipient.call{value: amount}() (#304)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#361-368):
- (success,returndata) = target.call{value: value}(data) (#366)
Low level call in Address.functionStaticCall(address,bytes,string) (#386-392):
- (success,returndata) = target.staticcall(data) (#390)
Low level call in Address.functionDelegateCall(address,bytes,string) (#410-416):
- (success,returndata) = target.delegatecall(data) (#414)
Low level call in SonOfSaitama.TeamRemoveRemainingBNB() (#1435-1440):
- (sent) = TeamWallet.call{value: (address(this).balance)}() (#1438)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeERC20.DOMAIN_SEPARATOR() (#34) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (#35) is not in mixedCase
Function IPancakeRouter01.WETH() (#138) is not in mixedCase
Function SonOfSaitama._getTotalShares() (#997-1005) is not in mixedCase
Parameter SonOfSaitama.getAddressSellLockTimeInSeconds(address).AddressToCheck (#1214) is not in mixedCase
Parameter SonOfSaitama.getAddressBuyLockTimeInSeconds(address).AddressToCheck (#1227) is not in mixedCase
Function SonOfSaitama.AddressResetSellLock() (#1241-1243) is not in mixedCase
Function SonOfSaitama.AddressResetBuyLock() (#1246-1249) is not in mixedCase
Function SonOfSaitama.TeamWithdrawALLMarketingBNB() (#1263-1268) is not in mixedCase
Function SonOfSaitama.TeamWithdrawXMarketingBNB(uint256) (#1269-1274) is not in mixedCase
Function SonOfSaitama.TeamSwitchManualBNBConversion(bool) (#1277-1279) is not in mixedCase
Function SonOfSaitama.TeamChangeAntiWhale(uint256) (#1281-1283) is not in mixedCase
Function SonOfSaitama.TeamChangeTeamWallet(address) (#1285-1287) is not in mixedCase
Function SonOfSaitama.TeamChangeWalletTwo(address) (#1289-1291) is not in mixedCase
Function SonOfSaitama.TeamDisableSellLock(bool) (#1294-1296) is not in mixedCase
Function SonOfSaitama.TeamDisableBuyLock(bool) (#1299-1301) is not in mixedCase
Function SonOfSaitama.TeamSetSellLockTime(uint256) (#1304-1307) is not in mixedCase
Function SonOfSaitama.TeamSetBuyLockTime(uint256) (#1310-1313) is not in mixedCase
Function SonOfSaitama.AddWalletExclusion(address) (#1316-1318) is not in mixedCase
Function SonOfSaitama.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#1321-1332) is not in mixedCase
Function SonOfSaitama.TeamChangeMarketingShare(uint8) (#1335-1338) is not in mixedCase
Function SonOfSaitama.TeamCreateLPandBNB() (#1340-1342) is not in mixedCase
Function SonOfSaitama.TeamUpdateLimits(uint256,uint256) (#1345-1362) is not in mixedCase
Function SonOfSaitama.SetupEnableTrading() (#1370-1372) is not in mixedCase
Function SonOfSaitama.SetupLiquidityTokenAddress(address) (#1374-1376) is not in mixedCase
Function SonOfSaitama.TeamUnlockLiquidityInSeconds(uint256) (#1382-1384) is not in mixedCase
Function SonOfSaitama.TeamReleaseLiquidity() (#1392-1402) is not in mixedCase
Function SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433) is not in mixedCase
Function SonOfSaitama.TeamRemoveRemainingBNB() (#1435-1440) is not in mixedCase
Parameter SonOfSaitama.allowance(address,address)._owner (#1478) is not in mixedCase
Constant SonOfSaitama._name (#748) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama._symbol (#749) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama._decimals (#750) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.InitialSupply (#751) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.BalanceLimitDivider (#754) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.SellLimitDivider (#756) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.MaxSellLockTime (#758) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.MaxBuyLockTime (#760) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.DefaultLiquidityLockTime (#762) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SonOfSaitama.TeamWallet (#764) is not in mixedCase
Constant SonOfSaitama.PancakeRouter (#769) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfSaitama.DistributionMultiplier (#971) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#57) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#58)
Prevent variables from having similar names.

Additional information: link

SonOfSaitama.constructor() (#799-839) uses literals with too many digits:
- _excludedFromStaking.add(0x000000000000000000000000000000000000dEaD) (#837)
SonOfSaitama._swapContractToken() (#1132-1162) uses literals with too many digits:
- tokenToSwap = 5000000 * 10 ** _decimals (#1135)
SonOfSaitama.slitherConstructorVariables() (#733-1520) uses literals with too many digits:
- antiWhale = 11000000 * 10 ** _decimals (#776)
SonOfSaitama.slitherConstructorConstantVariables() (#733-1520) uses literals with too many digits:
- InitialSupply = 1000000000 * 10 ** _decimals (#751)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#236-239)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#245-249)
getLiquidityReleaseTimeInSeconds() should be declared external:
- SonOfSaitama.getLiquidityReleaseTimeInSeconds() (#1194-1199)
getBurnedTokens() should be declared external:
- SonOfSaitama.getBurnedTokens() (#1201-1203)
getLimits() should be declared external:
- SonOfSaitama.getLimits() (#1205-1207)
getTaxes() should be declared external:
- SonOfSaitama.getTaxes() (#1209-1211)
getAddressSellLockTimeInSeconds(address) should be declared external:
- SonOfSaitama.getAddressSellLockTimeInSeconds(address) (#1214-1221)
getSellLockTimeInSeconds() should be declared external:
- SonOfSaitama.getSellLockTimeInSeconds() (#1222-1224)
getAddressBuyLockTimeInSeconds(address) should be declared external:
- SonOfSaitama.getAddressBuyLockTimeInSeconds(address) (#1227-1234)
getBuyLockTimeInSeconds() should be declared external:
- SonOfSaitama.getBuyLockTimeInSeconds() (#1235-1237)
AddressResetSellLock() should be declared external:
- SonOfSaitama.AddressResetSellLock() (#1241-1243)
AddressResetBuyLock() should be declared external:
- SonOfSaitama.AddressResetBuyLock() (#1246-1249)
getDividents(address) should be declared external:
- SonOfSaitama.getDividents(address) (#1250-1253)
TeamWithdrawALLMarketingBNB() should be declared external:
- SonOfSaitama.TeamWithdrawALLMarketingBNB() (#1263-1268)
TeamWithdrawXMarketingBNB(uint256) should be declared external:
- SonOfSaitama.TeamWithdrawXMarketingBNB(uint256) (#1269-1274)
TeamSwitchManualBNBConversion(bool) should be declared external:
- SonOfSaitama.TeamSwitchManualBNBConversion(bool) (#1277-1279)
TeamChangeAntiWhale(uint256) should be declared external:
- SonOfSaitama.TeamChangeAntiWhale(uint256) (#1281-1283)
TeamChangeTeamWallet(address) should be declared external:
- SonOfSaitama.TeamChangeTeamWallet(address) (#1285-1287)
TeamChangeWalletTwo(address) should be declared external:
- SonOfSaitama.TeamChangeWalletTwo(address) (#1289-1291)
TeamDisableSellLock(bool) should be declared external:
- SonOfSaitama.TeamDisableSellLock(bool) (#1294-1296)
TeamDisableBuyLock(bool) should be declared external:
- SonOfSaitama.TeamDisableBuyLock(bool) (#1299-1301)
TeamSetSellLockTime(uint256) should be declared external:
- SonOfSaitama.TeamSetSellLockTime(uint256) (#1304-1307)
TeamSetBuyLockTime(uint256) should be declared external:
- SonOfSaitama.TeamSetBuyLockTime(uint256) (#1310-1313)
AddWalletExclusion(address) should be declared external:
- SonOfSaitama.AddWalletExclusion(address) (#1316-1318)
TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) should be declared external:
- SonOfSaitama.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#1321-1332)
TeamChangeMarketingShare(uint8) should be declared external:
- SonOfSaitama.TeamChangeMarketingShare(uint8) (#1335-1338)
TeamCreateLPandBNB() should be declared external:
- SonOfSaitama.TeamCreateLPandBNB() (#1340-1342)
SetupEnableTrading() should be declared external:
- SonOfSaitama.SetupEnableTrading() (#1370-1372)
SetupLiquidityTokenAddress(address) should be declared external:
- SonOfSaitama.SetupLiquidityTokenAddress(address) (#1374-1376)
TeamUnlockLiquidityInSeconds(uint256) should be declared external:
- SonOfSaitama.TeamUnlockLiquidityInSeconds(uint256) (#1382-1384)
TeamReleaseLiquidity() should be declared external:
- SonOfSaitama.TeamReleaseLiquidity() (#1392-1402)
TeamRemoveLiquidity(bool) should be declared external:
- SonOfSaitama.TeamRemoveLiquidity(bool) (#1404-1433)
TeamRemoveRemainingBNB() should be declared external:
- SonOfSaitama.TeamRemoveRemainingBNB() (#1435-1440)
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.


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


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.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Twitter account has few posts


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 find audit 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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SOS

News for SOS