Son Of Cheems Token Logo

SoC [Son Of Cheems] Token

About SoC

Listings

Token 2 years

[Antwort auf Ragnarok]
WELCOME TO SON OF CHEEMS

STEALTH LAUNCHED TO GIVE EVERYONE A FAIR SHOT 🚀🚀

$SONOFCHEEMS is a community-driven venture DeFi Token with valuable mechanism that benefits our investors.

🌙 1000X MOONSHOT
📢 Low Market Cap
🤝 Massive Marketing

✅ 24/7 GIVEAWAYS FOR COMMUNITY after every MilesStone
✅ FAST GROWING COMMUNITY

TOKENOMICS:

🚨TOTAL SUPPLY: 1,000,000,000,000,000
🚨BURN SUPPLY: 85%
🚨BUYBACK WALLET: 4%
🚨MARKETING WALLET: 4%
🚨LIQUIDITY: 4%

🚨Max Sell Transaction 5 Trillion Tokens
🚨Max Wallet 10 Trillion Tokens

🔐 LP Locked:https://mudra.website/?certificate=yes&type=0&lp=0x078fab6666f43b050ea2e1582fc606a7b859c64e

OUR OFFICIAL CONTRACT: 0x2351ad191367d285d96101019ab56be1fdb65df0

Chart: https://poocoin.app/tokens/0x2351ad191367d285d96101019ab56be1fdb65df0

📱TELEGRAM : https://t.me/SonOfCheemsBSC
🌐WEBSITE : https://sonofcheems.webflow.io/
🌐 NFT Marketplace: https://sonofcheems.tech/

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

SonOfCheems.swapBack(uint256) (#1065-1110) sends eth to arbitrary user
Dangerous calls:
- reflector.deposit{value: amountBNBReflection}() (#1109)
SonOfCheems.transferBNBOut(uint256) (#1112-1117) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SonOfCheems._finalizeTransfer(address,address,uint256,bool) (#960-1022):
External calls:
- swapBack(contractTokenBalance) (#1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
External calls sending eth:
- swapBack(contractTokenBalance) (#1006)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
State variables written after the call(s):
- amountReceived = takeTaxes(from,amount) (#1012)
- _tOwned[address(this)] += feeAmount (#1056)
- _tOwned[burnAddress] += burnAmount (#1059)
- _tOwned[to] = _tOwned[to].add(amountReceived) (#1015)
Reentrancy in SonOfCheems.transferOwner(address) (#705-721):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- reflector.setShare(from,_tOwned[from]) (#1034)
- reflector.setShare(to,_tOwned[to]) (#1037)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- reflector.process(reflectorGas) (#1039)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
State variables written after the call(s):
- _owner = newOwner (#718)
Apply the check-effects-interactions pattern.

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.

Address.isContract(address) (#270-279) uses assembly
- INLINE ASM (#277)
Address._functionCallWithValue(address,bytes,uint256,string) (#307-328) uses assembly
- INLINE ASM (#320-323)
Do not use evm assembly.

Additional information: link

Pragma version>=0.6.0<0.9.0 (#6) is too complex
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

SonOfCheems.swapBack(uint256) (#1065-1110) ignores return value by dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
Ensure that all the return values of the function calls are used.

Additional information: link

SonOfCheems.setBuyTaxes(uint256,uint256,uint256,uint256,uint256) (#806-813) should emit an event for:
- _buyLiquidityFee = liquidityFee (#808)
- _buyReflectionFee = reflectionFee (#809)
- _buyMarketingFee = marketingFee (#810)
- _buyBuybackFee = buybackFee (#811)
- _buyBurnFee = burnFee (#812)
SonOfCheems.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#815-822) should emit an event for:
- _sellLiquidityFee = liquidityFee (#817)
- _sellReflectionFee = reflectionFee (#818)
- _sellMarketingFee = marketingFee (#819)
- _sellBuybackFee = buybackFee (#820)
- _sellBurnFee = burnFee (#821)
SonOfCheems.setRatios(uint256,uint256,uint256,uint256) (#824-829) should emit an event for:
- reflectionRatio = reflection (#825)
- liquidityRatio = liquidity (#826)
- marketingRatio = marketing (#827)
- buybackRatio = buyback (#828)
SonOfCheems.setSwapThreshold(uint256,uint256) (#846-848) should emit an event for:
- swapThreshold = _tTotal.mul(percent).div(divisor) (#847)
SonOfCheems.setSwapAmount(uint256,uint256) (#850-852) should emit an event for:
- swapAmount = _tTotal.mul(percent).div(divisor) (#851)
SonOfCheems.setTargetLiquidity(uint256,uint256) (#854-857) should emit an event for:
- targetLiquidity = _target (#855)
- targetLiquidityDenominator = _denominator (#856)
SonOfCheems.setReflectorSettings(uint256) (#864-867) should emit an event for:
- reflectorGas = gas (#866)
SonOfCheems.setMaxTxPercent(uint256,uint256) (#897-901) should emit an event for:
- _maxTxAmount = _tTotal.mul(percent).div(divisor) (#899)
SonOfCheems.setMaxWalletSize(uint256,uint256) (#903-907) should emit an event for:
- _maxWalletSize = _tTotal.mul(percent).div(divisor) (#905)
Emit an event for critical parameter changes.

Additional information: link

SonOfCheems.constructor(uint256,address).msgSender (#657) lacks a zero-check on :
- _owner = msgSender (#661)
Check that the address is not zero.

Additional information: link

Reentrancy in SonOfCheems.constructor(uint256,address) (#656-697):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#667)
State variables written after the call(s):
- WBNB = dexRouter.WETH() (#670)
- _allowances[address(this)][address(dexRouter)] = type()(uint256).max (#668)
- approveMax(_routerAddress) (#686)
- _allowances[msg.sender][spender] = amount (#741)
- _isDividendExcluded[owner()] = true (#676)
- _isDividendExcluded[lpPair] = true (#677)
- _isDividendExcluded[address(this)] = true (#678)
- _isDividendExcluded[burnAddress] = true (#679)
- _isDividendExcluded[ZERO] = true (#680)
- _isDividendExcluded[0x2D045410f002A95EFcEE67759A92518fA3FcE677] = true (#683)
- _isFeeExcluded[owner()] = true (#674)
- _isFeeExcluded[address(this)] = true (#675)
- _isFeeExcluded[0x2D045410f002A95EFcEE67759A92518fA3FcE677] = true (#682)
- _isSniper[0xE4882975f933A199C92b5A925C9A8fE65d599Aa8] = true (#689)
- _isSniper[0x86C70C4a3BC775FB4030448c9fdb73Dc09dd8444] = true (#690)
- _isSniper[0xa4A25AdcFCA938aa030191C297321323C57148Bd] = true (#691)
- _isSniper[0x20C00AFf15Bb04cC631DB07ee9ce361ae91D12f8] = true (#692)
- _isSniper[0x0538856b6d0383cde1709c6531B9a0437185462b] = true (#693)
- reflector = Cashier(cInitializer) (#672)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SonOfCheems._finalizeTransfer(address,address,uint256,bool) (#960-1022):
External calls:
- swapBack(contractTokenBalance) (#1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
External calls sending eth:
- swapBack(contractTokenBalance) (#1006)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1057)
- amountReceived = takeTaxes(from,amount) (#1012)
- Transfer(sender,burnAddress,burnAmount) (#1060)
- amountReceived = takeTaxes(from,amount) (#1012)
Reentrancy in SonOfCheems._finalizeTransfer(address,address,uint256,bool) (#960-1022):
External calls:
- swapBack(contractTokenBalance) (#1006)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
- processTokenReflect(from,to) (#1018)
- reflector.setShare(from,_tOwned[from]) (#1034)
- reflector.setShare(to,_tOwned[to]) (#1037)
- reflector.process(reflectorGas) (#1039)
External calls sending eth:
- swapBack(contractTokenBalance) (#1006)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
Event emitted after the call(s):
- Transfer(from,to,amountReceived) (#1020)
Reentrancy in SonOfCheems.constructor(uint256,address) (#656-697):
External calls:
- lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#667)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#742)
- approveMax(_routerAddress) (#686)
- OwnershipTransferred(address(0),msgSender) (#696)
- Transfer(ZERO,msg.sender,_tTotal) (#695)
Reentrancy in SonOfCheems.swapBack(uint256) (#1065-1110):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
External calls sending eth:
- transferBNBOut(amountBNBMarketing) (#1092)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1103)
Reentrancy in SonOfCheems.transferOwner(address) (#705-721):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- reflector.setShare(from,_tOwned[from]) (#1034)
- reflector.setShare(to,_tOwned[to]) (#1037)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1077-1083)
- reflector.process(reflectorGas) (#1039)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#719)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#307-328) is never used and should be removed
Address.functionCall(address,bytes) (#289-291) is never used and should be removed
Address.functionCall(address,bytes,string) (#293-295) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#298-300) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#302-305) is never used and should be removed
Address.isContract(address) (#270-279) is never used and should be removed
Address.sendValue(address,uint256) (#281-287) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
Context._msgSender() (#9-11) is never used and should be removed
SafeMath.mod(uint256,uint256) (#247-249) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#263-266) is never used and should be removed
SafeMath.sub(uint256,uint256) (#154-156) is never used and should be removed
SonOfCheems._approve(address,address,uint256) (#750-756) is never used and should be removed
SonOfCheems.shouldSwapBack() (#1024-1029) is never used and should be removed
Remove unused functions.

Additional information: link

SonOfCheems._decimalsMul (#551) is set pre-construction with a non-constant function or state variable:
- _decimals
SonOfCheems._tTotal (#552) is set pre-construction with a non-constant function or state variable:
- startingSupply * (10 ** _decimalsMul)
SonOfCheems._totalFee (#562) is set pre-construction with a non-constant function or state variable:
- _liquidityFee + _reflectionFee + _marketingFee + _buybackFee
SonOfCheems.previousReflectionFee (#584) is set pre-construction with a non-constant function or state variable:
- _reflectionFee
SonOfCheems.previousLiquidityFee (#585) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SonOfCheems.previousMarketingFee (#586) is set pre-construction with a non-constant function or state variable:
- _marketingFee
SonOfCheems.previousBuybackFee (#587) is set pre-construction with a non-constant function or state variable:
- _buybackFee
SonOfCheems.reflectionRatio (#589) is set pre-construction with a non-constant function or state variable:
- _sellReflectionFee
SonOfCheems.liquidityRatio (#590) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee
SonOfCheems.marketingRatio (#591) is set pre-construction with a non-constant function or state variable:
- _sellMarketingFee
SonOfCheems.buybackRatio (#592) is set pre-construction with a non-constant function or state variable:
- _sellBuybackFee
SonOfCheems._maxTxAmount (#610) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxTxPercent) / maxTxDivisor
SonOfCheems._previousMaxTxAmount (#611) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
SonOfCheems.maxTxAmountUI (#612) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxTxPercent) / maxTxDivisor
SonOfCheems._maxWalletSize (#616) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxWalletPercent) / maxWalletDivisor
SonOfCheems._previousMaxWalletSize (#617) is set pre-construction with a non-constant function or state variable:
- _maxWalletSize
SonOfCheems.maxWalletSizeUI (#618) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxWalletPercent) / maxWalletDivisor
SonOfCheems.swapThreshold (#628) is set pre-construction with a non-constant function or state variable:
- _tTotal / 20000
SonOfCheems.swapAmount (#629) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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) (#281-287):
- (success) = recipient.call{value: amount}() (#285)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#307-328):
- (success,returndata) = target.call{value: weiValue}(data) (#311)
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() (#356) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#357) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#371) is not in mixedCase
Function IUniswapV2Router01.WETH() (#389) is not in mixedCase
Parameter SonOfCheems.setSwapBackSettings(bool,bool)._enabled (#841) is not in mixedCase
Parameter SonOfCheems.setTargetLiquidity(uint256,uint256)._target (#854) is not in mixedCase
Parameter SonOfCheems.setTargetLiquidity(uint256,uint256)._denominator (#854) is not in mixedCase
Parameter SonOfCheems.setReflectionCriteria(uint256,uint256,uint256)._minPeriod (#859) is not in mixedCase
Parameter SonOfCheems.setReflectionCriteria(uint256,uint256,uint256)._minReflection (#859) is not in mixedCase
Variable SonOfCheems._tOwned (#538) is not in mixedCase
Variable SonOfCheems._allowances (#539) is not in mixedCase
Variable SonOfCheems._isFeeExcluded (#540) is not in mixedCase
Variable SonOfCheems._isDividendExcluded (#541) is not in mixedCase
Constant SonOfCheems.startingSupply (#548) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfCheems._name (#554) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SonOfCheems._symbol (#555) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SonOfCheems._buyReflectionFee (#566) is not in mixedCase
Variable SonOfCheems._buyLiquidityFee (#567) is not in mixedCase
Variable SonOfCheems._buyMarketingFee (#568) is not in mixedCase
Variable SonOfCheems._buyBurnFee (#569) is not in mixedCase
Variable SonOfCheems._buyBuybackFee (#570) is not in mixedCase
Variable SonOfCheems._sellReflectionFee (#572) is not in mixedCase
Variable SonOfCheems._sellLiquidityFee (#573) is not in mixedCase
Variable SonOfCheems._sellMarketingFee (#574) is not in mixedCase
Variable SonOfCheems._sellBurnFee (#575) is not in mixedCase
Variable SonOfCheems._sellBuybackFee (#576) is not in mixedCase
Variable SonOfCheems.WBNB (#600) is not in mixedCase
Variable SonOfCheems.ZERO (#602) is not in mixedCase
Variable SonOfCheems._hasLiqBeenAdded (#634) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SonOfCheems._finalizeTransfer(address,address,uint256,bool) (#960-1022):
External calls:
- swapBack(contractTokenBalance) (#1006)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
External calls sending eth:
- swapBack(contractTokenBalance) (#1006)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
State variables written after the call(s):
- amountReceived = takeTaxes(from,amount) (#1012)
- _tOwned[address(this)] += feeAmount (#1056)
- _tOwned[burnAddress] += burnAmount (#1059)
- _tOwned[to] = _tOwned[to].add(amountReceived) (#1015)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1057)
- amountReceived = takeTaxes(from,amount) (#1012)
- Transfer(sender,burnAddress,burnAmount) (#1060)
- amountReceived = takeTaxes(from,amount) (#1012)
- Transfer(from,to,amountReceived) (#1020)
Reentrancy in SonOfCheems.swapBack(uint256) (#1065-1110):
External calls:
- transferBNBOut(amountBNBMarketing) (#1092)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
External calls sending eth:
- transferBNBOut(amountBNBMarketing) (#1092)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1103)
Reentrancy in SonOfCheems.transferOwner(address) (#705-721):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#716)
- _marketingWallet.transfer(amountBNBMarketing) (#1115)
- _buybackWallet.transfer(amountBNBBuyback) (#1116)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,burnAddress,block.timestamp) (#1095-1102)
- reflector.deposit{value: amountBNBReflection}() (#1109)
State variables written after the call(s):
- _owner = newOwner (#718)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#719)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#393) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#394)
Prevent variables from having similar names.

Additional information: link

SonOfCheems.setMaxTxPercent(uint256,uint256) (#897-901) uses literals with too many digits:
- require(bool)(divisor <= 1000000) (#898)
SonOfCheems.slitherConstructorVariables() (#532-1137) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#601)
SonOfCheems.slitherConstructorVariables() (#532-1137) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#602)
SonOfCheems.slitherConstructorVariables() (#532-1137) uses literals with too many digits:
- maxTxDivisor = 1000000 (#609)
SonOfCheems.slitherConstructorVariables() (#532-1137) uses literals with too many digits:
- maxWalletDivisor = 1000000 (#615)
SonOfCheems.slitherConstructorVariables() (#532-1137) uses literals with too many digits:
- reflectorGas = 500000 (#624)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SonOfCheems.previousReflectionFee (#584) is never used in SonOfCheems (#532-1137)
SonOfCheems.previousLiquidityFee (#585) is never used in SonOfCheems (#532-1137)
SonOfCheems.previousMarketingFee (#586) is never used in SonOfCheems (#532-1137)
SonOfCheems.previousBuybackFee (#587) is never used in SonOfCheems (#532-1137)
SonOfCheems._previousMaxTxAmount (#611) is never used in SonOfCheems (#532-1137)
SonOfCheems._previousMaxWalletSize (#617) is never used in SonOfCheems (#532-1137)
Remove unused state variables.

Additional information: link

SonOfCheems.ZERO (#602) should be constant
SonOfCheems._decimals (#550) should be constant
SonOfCheems._routerAddress (#598) should be constant
SonOfCheems.burnAddress (#601) should be constant
SonOfCheems.masterTaxDivisor (#563) should be constant
SonOfCheems.maxBurnFee (#581) should be constant
SonOfCheems.maxBuybackFee (#582) should be constant
SonOfCheems.maxLiquidityFee (#579) should be constant
SonOfCheems.maxMarketingFee (#580) should be constant
SonOfCheems.maxReflectionFee (#578) should be constant
SonOfCheems.maxTxDivisor (#609) should be constant
SonOfCheems.maxTxPercent (#608) should be constant
SonOfCheems.maxWalletDivisor (#615) should be constant
SonOfCheems.maxWalletPercent (#614) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- SonOfCheems.renounceOwnership() (#723-728)
isFeeExcluded(address) should be declared external:
- SonOfCheems.isFeeExcluded(address) (#774-776)
isDividendExcluded(address) should be declared external:
- SonOfCheems.isDividendExcluded(address) (#778-780)
setDividendExcluded(address,bool) should be declared external:
- SonOfCheems.setDividendExcluded(address,bool) (#792-800)
setExcludeFromFees(address,bool) should be declared external:
- SonOfCheems.setExcludeFromFees(address,bool) (#802-804)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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 has less than 100 followers


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


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


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

Price for SoC

News for SoC