Sincere Shiba Token Logo

sShiba [Sincere Shiba] Token

About sShiba

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

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

SincereShiba.addLiquidity(uint256,uint256) (#742-756) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SincereShiba._transfer(address,address,uint256) (#637-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rOwned[to] = _rOwned[to] + rAmount (#614)
- _rOwned[sender] = _rOwned[sender] - rAmount (#799)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#804)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rTotal = _rTotal - rFee (#572)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tOwned[to] = _tOwned[to] + tAmount (#616)
- _tOwned[sender] = _tOwned[sender] - tAmount (#801)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#806)
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.

SincereShiba.swapAndLiquify(uint256) (#696-722) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#706)
SincereShiba.swapAndLiquify(uint256) (#696-722) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#707)
Consider ordering multiplication before division.

Additional information: link

SincereShiba.addToBlacklist(address[]).i (#789) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

SincereShiba.allowance(address,address).owner (#412) shadows:
- Ownable.owner() (#40-42) (function)
SincereShiba._approve(address,address,uint256).owner (#629) shadows:
- Ownable.owner() (#40-42) (function)
Rename the local variables that shadow another component.

Additional information: link

SincereShiba.setMaxTx(uint256) (#498-500) should emit an event for:
- _maxTxAmount = maxTx (#499)
SincereShiba.setMinTokenBalance(uint256) (#502-504) should emit an event for:
- _minTokenBalance = minTokenBalance (#503)
SincereShiba.setAntiWhaleThreshold(uint256) (#522-524) should emit an event for:
- _antiWhaleThreshold = antiWhaleThreshold (#523)
SincereShiba.setFeesTransfer(uint256,uint256) (#526-529) should emit an event for:
- _taxFee = taxFee (#527)
- _liquidityFee = liquidityFee (#528)
SincereShiba.setFeesBuy(uint256,uint256) (#531-534) should emit an event for:
- _taxFeeBuy = taxFee (#532)
- _liquidityFeeBuy = liquidityFee (#533)
SincereShiba.setFeesSell(uint256,uint256) (#536-539) should emit an event for:
- _taxFeeSell = taxFee (#537)
- _liquidityFeeSell = liquidityFee (#538)
SincereShiba.setLiquidityPercentages(uint256,uint256) (#546-549) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#547)
- _percentageOfLiquidityForMarketing = marketingFee (#548)
Emit an event for critical parameter changes.

Additional information: link

SincereShiba.setAddresses(address,address).teamWallet (#541) lacks a zero-check on :
- _teamWallet = teamWallet (#542)
SincereShiba.setAddresses(address,address).marketingWallet (#541) lacks a zero-check on :
- _marketingWallet = marketingWallet (#543)
SincereShiba.setUniswapPair(address).p (#563) lacks a zero-check on :
- uniswapV2Pair = p (#564)
Check that the address is not zero.

Additional information: link

Reentrancy in SincereShiba._transfer(address,address,uint256) (#637-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _liquidityFee = 0 (#767)
- _liquidityFee = _liquidityFeeBuy (#771)
- _liquidityFee = _liquidityFeeSell (#775)
- _liquidityFee = previousLiquidityFee (#782)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tFeeTotal = _tFeeTotal + tFee (#573)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _taxFee = 0 (#766)
- _taxFee = _taxFeeBuy (#770)
- _taxFee = _taxFeeSell (#774)
- _taxFee = previousTaxFee (#781)
Reentrancy in SincereShiba.constructor() (#354-381):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#362-363)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#373)
- _isExcludedFromAntiWhale[address(this)] = true (#374)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#375)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#376)
- _isExcludedFromAntiWhale[_burnAddress] = true (#377)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#370)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#371)
- _isExcludedFromFee[owner()] = true (#367)
- _isExcludedFromFee[address(this)] = true (#368)
- _isExcludedFromMaxTx[owner()] = true (#378)
- uniswapV2Router = _uniswapV2Router (#364)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- _allowances[owner][spender] = amount (#633)
Reentrancy in SincereShiba.transferFrom(address,address,uint256) (#420-424):
External calls:
- _transfer(sender,recipient,amount) (#421)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- _transfer(sender,recipient,amount) (#421)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#422)
- _allowances[owner][spender] = amount (#633)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SincereShiba._transfer(address,address,uint256) (#637-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#618)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#685)
Reentrancy in SincereShiba.constructor() (#354-381):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#362-363)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#380)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
Event emitted after the call(s):
- TeamSent(_teamWallet,bnbForTeam) (#711)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#715)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- swapTokensForBnb(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#721)
Reentrancy in SincereShiba.transferFrom(address,address,uint256) (#420-424):
External calls:
- _transfer(sender,recipient,amount) (#421)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#733-739)
External calls sending eth:
- _transfer(sender,recipient,amount) (#421)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#422)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#71-76) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#73)
Avoid relying on block.timestamp.

Additional information: link

SincereShiba.includeInReward(address) (#476-488) has costly operations inside a loop:
- _excluded.pop() (#484)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#10-13) is never used and should be removed
Remove unused functions.

Additional information: link

SincereShiba._rTotal (#303) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SincereShiba._maxTxAmount (#325) is set pre-construction with a non-constant function or state variable:
- _tTotal * 10000 / 10000
SincereShiba._minTokenBalance (#326) is set pre-construction with a non-constant function or state variable:
- _tTotal / 400
SincereShiba._antiWhaleThreshold (#343) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#110) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#111) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#128) is not in mixedCase
Function IUniswapV2Router01.WETH() (#148) is not in mixedCase
Parameter SincereShiba.setSwapAndLiquifyEnabled(bool)._enabled (#551) is not in mixedCase
Variable SincereShiba._isExcludedFromAutoLiquidity (#289) is not in mixedCase
Variable SincereShiba._isExcludedFromAntiWhale (#290) is not in mixedCase
Variable SincereShiba._isExcludedFromBuy (#291) is not in mixedCase
Variable SincereShiba._isBlacklisted (#292) is not in mixedCase
Variable SincereShiba._isExcludedFromMaxTx (#293) is not in mixedCase
Constant SincereShiba._burnAddress (#299) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SincereShiba._name (#306) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SincereShiba._symbol (#307) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SincereShiba._decimals (#308) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SincereShiba._taxFee (#314) is not in mixedCase
Variable SincereShiba._liquidityFee (#315) is not in mixedCase
Variable SincereShiba._taxFeeBuy (#318) is not in mixedCase
Variable SincereShiba._liquidityFeeBuy (#319) is not in mixedCase
Variable SincereShiba._taxFeeSell (#322) is not in mixedCase
Variable SincereShiba._liquidityFeeSell (#323) is not in mixedCase
Variable SincereShiba._maxTxAmount (#325) is not in mixedCase
Variable SincereShiba._minTokenBalance (#326) is not in mixedCase
Variable SincereShiba._isAntiWhaleEnabled (#342) is not in mixedCase
Variable SincereShiba._antiWhaleThreshold (#343) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in SincereShiba._transfer(address,address,uint256) (#637-694):
External calls:
- swapAndLiquify(contractTokenBalance) (#677)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#677)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _liquidityFee = 0 (#767)
- _liquidityFee = _liquidityFeeBuy (#771)
- _liquidityFee = _liquidityFeeSell (#775)
- _liquidityFee = previousLiquidityFee (#782)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rOwned[to] = _rOwned[to] + rAmount (#614)
- _rOwned[sender] = _rOwned[sender] - rAmount (#799)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#804)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _rTotal = _rTotal - rFee (#572)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tFeeTotal = _tFeeTotal + tFee (#573)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _tOwned[to] = _tOwned[to] + tAmount (#616)
- _tOwned[sender] = _tOwned[sender] - tAmount (#801)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#806)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- _taxFee = 0 (#766)
- _taxFee = _taxFeeBuy (#770)
- _taxFee = _taxFeeSell (#774)
- _taxFee = previousTaxFee (#781)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#618)
- _tokenTransfer(from,to,amount,takeFee) (#685)
- Transfer(sender,recipient,tTransferAmount) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#685)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#712)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#715)
Reentrancy in SincereShiba.swapAndLiquify(uint256) (#696-722):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- _allowances[owner][spender] = amount (#633)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#719)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#721)
Reentrancy in SincereShiba.transferFrom(address,address,uint256) (#420-424):
External calls:
- _transfer(sender,recipient,amount) (#421)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
External calls sending eth:
- _transfer(sender,recipient,amount) (#421)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#747-754)
- address(_teamWallet).transfer(bnbForTeam) (#712)
- address(_marketingWallet).transfer(bnbForMarketing) (#716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#422)
- _allowances[owner][spender] = amount (#633)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#634)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#422)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#153) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#154)
Variable SincereShiba._transferStandard(address,address,uint256).rTransferAmount (#797) is too similar to SincereShiba._getTValues(uint256).tTransferAmount (#579)
Variable SincereShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#588) is too similar to SincereShiba._getTValues(uint256).tTransferAmount (#579)
Variable SincereShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#588) is too similar to SincereShiba._transferStandard(address,address,uint256).tTransferAmount (#795)
Variable SincereShiba.reflectionFromToken(uint256,bool).rTransferAmount (#454) is too similar to SincereShiba._getTValues(uint256).tTransferAmount (#579)
Variable SincereShiba.reflectionFromToken(uint256,bool).rTransferAmount (#454) is too similar to SincereShiba._transferStandard(address,address,uint256).tTransferAmount (#795)
Variable SincereShiba._transferStandard(address,address,uint256).rTransferAmount (#797) is too similar to SincereShiba._transferStandard(address,address,uint256).tTransferAmount (#795)
Prevent variables from having similar names.

Additional information: link

SincereShiba.slitherConstructorVariables() (#283-815) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 9 (#302)
SincereShiba.slitherConstructorConstantVariables() (#283-815) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#299)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#49-52)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#54-58)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#60-62)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#64-69)
unlock() should be declared external:
- Ownable.unlock() (#71-76)
name() should be declared external:
- SincereShiba.name() (#383-385)
symbol() should be declared external:
- SincereShiba.symbol() (#387-389)
decimals() should be declared external:
- SincereShiba.decimals() (#391-393)
totalSupply() should be declared external:
- SincereShiba.totalSupply() (#395-400)
transfer(address,uint256) should be declared external:
- SincereShiba.transfer(address,uint256) (#407-410)
allowance(address,address) should be declared external:
- SincereShiba.allowance(address,address) (#412-414)
approve(address,uint256) should be declared external:
- SincereShiba.approve(address,uint256) (#416-419)
transferFrom(address,address,uint256) should be declared external:
- SincereShiba.transferFrom(address,address,uint256) (#420-424)
increaseAllowance(address,uint256) should be declared external:
- SincereShiba.increaseAllowance(address,uint256) (#426-429)
decreaseAllowance(address,uint256) should be declared external:
- SincereShiba.decreaseAllowance(address,uint256) (#431-434)
isExcludedFromReward(address) should be declared external:
- SincereShiba.isExcludedFromReward(address) (#436-438)
totalFees() should be declared external:
- SincereShiba.totalFees() (#440-442)
reflectionFromToken(uint256,bool) should be declared external:
- SincereShiba.reflectionFromToken(uint256,bool) (#444-457)
excludeFromReward(address) should be declared external:
- SincereShiba.excludeFromReward(address) (#466-474)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SincereShiba.setSwapAndLiquifyEnabled(bool) (#551-554)
isExcludedFromFee(address) should be declared external:
- SincereShiba.isExcludedFromFee(address) (#625-627)
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.


Unable to find Telegram and Twitter accounts


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 sShiba