Son of dogeking Token Logo

Sodk [Son of dogeking] Token

About Sodk

Listings

Not Found
Token 2 years

Website

Not Found

Buy 10u and return a 10,000x dream to 2022 with Son of the Dog King!
Token: SODK
CN: https://t.me/Dogekingcncn
TG:https://t.me/SonofdogekingCommunity
Channel: https://t.me/DogekingcncnChannel
Contract: 0x13d333cdf01e9483b814508ffa5504c4c5cb6588

Social

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...)

Sonofdogeking.addLiquidity(uint256,uint256) (#770-783) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Sonofdogeking._transfer(address,address,uint256) (#668-717):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#704)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#712)
- finalAmount = takeFee(sender,recipient,amount) (#706-707)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#797)
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.

Sonofdogeking.addLiquidity(uint256,uint256) (#770-783) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Ensure that all the return values of the function calls are used.

Additional information: link

Sonofdogeking.allowance(address,address).owner (#523) shadows:
- Ownable.owner() (#152-154) (function)
Sonofdogeking._approve(address,address,uint256).owner (#546) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

Sonofdogeking.setBuyTaxes(uint256,uint256,uint256) (#566-572) should emit an event for:
- _buyLiquidityFee = newLiquidityTax (#567)
- _buyMarketingFee = newMarketingTax (#568)
- _buyTeamFee = newTeamTax (#569)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#571)
Sonofdogeking.setSellTaxes(uint256,uint256,uint256) (#574-580) should emit an event for:
- _sellLiquidityFee = newLiquidityTax (#575)
- _sellMarketingFee = newMarketingTax (#576)
- _sellTeamFee = newTeamTax (#577)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#579)
Sonofdogeking.setDistributionSettings(uint256,uint256,uint256) (#582-588) should emit an event for:
- _liquidityShare = newLiquidityShare (#583)
- _teamShare = newTeamShare (#585)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#587)
Sonofdogeking.setMaxTxAmount(uint256) (#590-592) should emit an event for:
- _maxTxAmount = maxTxAmount (#591)
Sonofdogeking.setWalletLimit(uint256) (#602-604) should emit an event for:
- _walletMax = newLimit (#603)
Sonofdogeking.setNumTokensBeforeSwap(uint256) (#606-608) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#607)
Sonofdogeking.UPfeeTXtime(uint256) (#812-814) should emit an event for:
- feeTXtime = _feeTXtime (#813)
Sonofdogeking.UPendtime(uint256) (#816-818) should emit an event for:
- endtime = _endtime (#817)
Emit an event for critical parameter changes.

Additional information: link

Sonofdogeking.setMarketingWalletAddress(address).newAddress (#610) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#611)
Sonofdogeking.setBuybackWalletAddress(address).newAddress (#614) lacks a zero-check on :
- BuybackWalletAddress = address(newAddress) (#615)
Check that the address is not zero.

Additional information: link

Reentrancy in Sonofdogeking.changeRouterVersion(address) (#635-652):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#643-644)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#651)
- isWalletLimitExempt[address(uniswapPair)] = true (#650)
- uniswapPair = newPairAddress (#647)
- uniswapV2Router = _uniswapV2Router (#648)
Reentrancy in Sonofdogeking.constructor() (#473-501):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477-478)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#481)
- _balances[_msgSender()] = _totalSupply (#499)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#488)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#486)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#487)
- isExcludedFromFee[owner()] = true (#483)
- isExcludedFromFee[address(this)] = true (#484)
- isMarketPair[address(uniswapPair)] = true (#497)
- isTxLimitExempt[owner()] = true (#494)
- isTxLimitExempt[address(this)] = true (#495)
- isWalletLimitExempt[owner()] = true (#490)
- isWalletLimitExempt[address(uniswapPair)] = true (#491)
- isWalletLimitExempt[address(this)] = true (#492)
- uniswapV2Router = _uniswapV2Router (#480)
Reentrancy in Sonofdogeking.swapAndLiquify(uint256) (#726-748):
External calls:
- swapTokensForEth(tokensForSwap) (#731)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#741)
- recipient.transfer(amount) (#632)
- transferToAddressETH(BuybackWalletAddress,amountBNBTeam) (#744)
- recipient.transfer(amount) (#632)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- _allowances[owner][spender] = amount (#550)
Reentrancy in Sonofdogeking.transferFrom(address,address,uint256) (#662-666):
External calls:
- _transfer(sender,recipient,amount) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
External calls sending eth:
- _transfer(sender,recipient,amount) (#663)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#664)
- _allowances[owner][spender] = amount (#550)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Sonofdogeking._transfer(address,address,uint256) (#668-717):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#798)
- finalAmount = takeFee(sender,recipient,amount) (#706-707)
- Transfer(sender,recipient,finalAmount) (#714)
Reentrancy in Sonofdogeking.constructor() (#473-501):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477-478)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#500)
Reentrancy in Sonofdogeking.swapAndLiquify(uint256) (#726-748):
External calls:
- swapTokensForEth(tokensForSwap) (#731)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#741)
- recipient.transfer(amount) (#632)
- transferToAddressETH(BuybackWalletAddress,amountBNBTeam) (#744)
- recipient.transfer(amount) (#632)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
Reentrancy in Sonofdogeking.swapTokensForEth(uint256) (#750-768):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#767)
Reentrancy in Sonofdogeking.transferFrom(address,address,uint256) (#662-666):
External calls:
- _transfer(sender,recipient,amount) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#759-765)
External calls sending eth:
- _transfer(sender,recipient,amount) (#663)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#664)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#187-192) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#189)
Sonofdogeking._transfer(address,address,uint256) (#668-717) uses timestamp for comparisons
Dangerous comparisons:
- endtime == 0 (#673)
- endtime > block.timestamp (#676)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

Sonofdogeking._liquidityShare (#427) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee.add(_sellLiquidityFee)
Sonofdogeking._marketingShare (#428) is set pre-construction with a non-constant function or state variable:
- _buyMarketingFee.add(_sellMarketingFee)
Sonofdogeking._teamShare (#429) is set pre-construction with a non-constant function or state variable:
- _buyTeamFee.add(_sellTeamFee)
Sonofdogeking._totalSupply (#435) is set pre-construction with a non-constant function or state variable:
- 10000 * 10 ** 4 * 10 ** _decimals
Sonofdogeking._maxTxAmount (#436) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(10)
Sonofdogeking._walletMax (#437) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(10)
Sonofdogeking.minimumTokensBeforeSwap (#438) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(10000)
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) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#243) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Parameter Sonofdogeking.setSwapAndLiquifyEnabled(bool)._enabled (#618) is not in mixedCase
Parameter Sonofdogeking.setblocklist(address)._account (#804) is not in mixedCase
Function Sonofdogeking.UPfeeTXtime(uint256) (#812-814) is not in mixedCase
Parameter Sonofdogeking.UPfeeTXtime(uint256)._feeTXtime (#812) is not in mixedCase
Function Sonofdogeking.UPendtime(uint256) (#816-818) is not in mixedCase
Parameter Sonofdogeking.UPendtime(uint256)._endtime (#816) is not in mixedCase
Variable Sonofdogeking.BuybackWalletAddress (#405) is not in mixedCase
Variable Sonofdogeking._balances (#408) is not in mixedCase
Variable Sonofdogeking._buyLiquidityFee (#419) is not in mixedCase
Variable Sonofdogeking._buyMarketingFee (#420) is not in mixedCase
Variable Sonofdogeking._buyTeamFee (#421) is not in mixedCase
Variable Sonofdogeking._sellLiquidityFee (#423) is not in mixedCase
Variable Sonofdogeking._sellMarketingFee (#424) is not in mixedCase
Variable Sonofdogeking._sellTeamFee (#425) is not in mixedCase
Variable Sonofdogeking._liquidityShare (#427) is not in mixedCase
Variable Sonofdogeking._marketingShare (#428) is not in mixedCase
Variable Sonofdogeking._teamShare (#429) is not in mixedCase
Variable Sonofdogeking._totalTaxIfBuying (#431) is not in mixedCase
Variable Sonofdogeking._totalTaxIfSelling (#432) is not in mixedCase
Variable Sonofdogeking._totalDistributionShares (#433) is not in mixedCase
Variable Sonofdogeking._maxTxAmount (#436) is not in mixedCase
Variable Sonofdogeking._walletMax (#437) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in Sonofdogeking._transfer(address,address,uint256) (#668-717):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#632)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#704)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#712)
- finalAmount = takeFee(sender,recipient,amount) (#706-707)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#797)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#798)
- finalAmount = takeFee(sender,recipient,amount) (#706-707)
- Transfer(sender,recipient,finalAmount) (#714)
Reentrancy in Sonofdogeking.swapAndLiquify(uint256) (#726-748):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#741)
- recipient.transfer(amount) (#632)
- transferToAddressETH(BuybackWalletAddress,amountBNBTeam) (#744)
- recipient.transfer(amount) (#632)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#741)
- recipient.transfer(amount) (#632)
- transferToAddressETH(BuybackWalletAddress,amountBNBTeam) (#744)
- recipient.transfer(amount) (#632)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
- _allowances[owner][spender] = amount (#550)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#747)
Reentrancy in Sonofdogeking.transferFrom(address,address,uint256) (#662-666):
External calls:
- _transfer(sender,recipient,amount) (#663)
- recipient.transfer(amount) (#632)
External calls sending eth:
- _transfer(sender,recipient,amount) (#663)
- recipient.transfer(amount) (#632)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#664)
- _allowances[owner][spender] = amount (#550)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#664)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Sonofdogeking.slitherConstructorVariables() (#395-820) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#406)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Sonofdogeking._decimals (#402) should be constant
Sonofdogeking._name (#400) should be constant
Sonofdogeking._symbol (#401) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#172-174)
getTime() should be declared external:
- Ownable.getTime() (#176-178)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#180-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- Sonofdogeking.name() (#503-505)
symbol() should be declared external:
- Sonofdogeking.symbol() (#507-509)
decimals() should be declared external:
- Sonofdogeking.decimals() (#511-513)
totalSupply() should be declared external:
- Sonofdogeking.totalSupply() (#515-517)
allowance(address,address) should be declared external:
- Sonofdogeking.allowance(address,address) (#523-525)
increaseAllowance(address,uint256) should be declared external:
- Sonofdogeking.increaseAllowance(address,uint256) (#527-530)
decreaseAllowance(address,uint256) should be declared external:
- Sonofdogeking.decreaseAllowance(address,uint256) (#532-535)
minimumTokensBeforeSwapAmount() should be declared external:
- Sonofdogeking.minimumTokensBeforeSwapAmount() (#537-539)
approve(address,uint256) should be declared external:
- Sonofdogeking.approve(address,uint256) (#541-544)
setMarketPairStatus(address,bool) should be declared external:
- Sonofdogeking.setMarketPairStatus(address,bool) (#554-556)
setIsExcludedFromFee(address,bool) should be declared external:
- Sonofdogeking.setIsExcludedFromFee(address,bool) (#562-564)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Sonofdogeking.setSwapAndLiquifyEnabled(bool) (#618-621)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- Sonofdogeking.setSwapAndLiquifyByLimitOnly(bool) (#623-625)
getCirculatingSupply() should be declared external:
- Sonofdogeking.getCirculatingSupply() (#627-629)
changeRouterVersion(address) should be declared external:
- Sonofdogeking.changeRouterVersion(address) (#635-652)
transfer(address,uint256) should be declared external:
- Sonofdogeking.transfer(address,uint256) (#657-660)
transferFrom(address,address,uint256) should be declared external:
- Sonofdogeking.transferFrom(address,address,uint256) (#662-666)
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.


Telegram account link seems to be invalid


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 Sodk