ShiBonk is a community-owned project on the Binance Smart Chain. It was created by a team of dog loving memers, $SHIBO seeks to create a purely community-driven token with auto-staking and liquidity generation protocols built into the contract.
Reentrancy in ShiBonk._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#978)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1147)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1156)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1148)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1167)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#894)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#896)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _rTotal = _rTotal.sub(rFee) (#933)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#980)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1166)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#893)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1157)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#895)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Redundant expression "this (#271)" inContext (#265-274)
Remove redundant statements if they congest code but offer no value.
Additional information: link
ShiBonk.addLiquidity(uint256,uint256) (#1109-1122) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Ensure that all the return values of the function calls are used.
Additional information: link
ShiBonk.allowance(address,address).owner (#810) shadows:
- Ownable.owner() (#446-448) (function)
ShiBonk._approve(address,address,uint256).owner (#1014) shadows:
- Ownable.owner() (#446-448) (function)
Rename the local variables that shadow another component.
Additional information: link
ShiBonk.setTaxFeePercent(uint256) (#910-912) should emit an event for:
- _taxFee = taxFee (#911)
ShiBonk.setLiquidityFeePercent(uint256) (#914-916) should emit an event for:
- _liquidityFee = liquidityFee (#915)
ShiBonk.setMaxTxPercent(uint256) (#918-922) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#919-921)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in ShiBonk._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _liquidityFee = _previousLiquidityFee (#1007)
- _liquidityFee = 0 (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _previousLiquidityFee = _liquidityFee (#999)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _previousTaxFee = _taxFee (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _tFeeTotal = _tFeeTotal.add(tFee) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- _taxFee = _previousTaxFee (#1006)
- _taxFee = 0 (#1001)
Reentrancy in ShiBonk.constructor() (#766-782):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#771-772)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#778)
- _isExcludedFromFee[address(this)] = true (#779)
- uniswapV2Router = _uniswapV2Router (#775)
Reentrancy in ShiBonk.swapAndLiquify(uint256) (#1068-1089):
External calls:
- swapTokensForEth(half) (#1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1086)
- _allowances[owner][spender] = amount (#1018)
Reentrancy in ShiBonk.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
- _allowances[owner][spender] = amount (#1018)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ShiBonk._transfer(address,address,uint256) (#1022-1066):
External calls:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1151)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#1171)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
- Transfer(sender,recipient,tTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1065)
Reentrancy in ShiBonk.constructor() (#766-782):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#771-772)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#781)
Reentrancy in ShiBonk.swapAndLiquify(uint256) (#1068-1089):
External calls:
- swapTokensForEth(half) (#1080)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1086)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- addLiquidity(otherHalf,newBalance) (#1086)
- SwapAndLiquify(half,newBalance,otherHalf) (#1088)
Reentrancy in ShiBonk.transferFrom(address,address,uint256) (#819-823):
External calls:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1100-1106)
External calls sending eth:
- _transfer(sender,recipient,amount) (#820)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1114-1121)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#821)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#493-498) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#495)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#298-307) uses assembly
- INLINE ASM (#305)
Address._functionCallWithValue(address,bytes,uint256,string) (#391-412) uses assembly
- INLINE ASM (#404-407)
Do not use evm assembly.
Additional information: link
ShiBonk.includeInReward(address) (#879-890) has costly operations inside a loop:
- _excluded.pop() (#886)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#391-412) is never used and should be removed
Address.functionCall(address,bytes) (#351-353) is never used and should be removed
Address.functionCall(address,bytes,string) (#361-363) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#376-378) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#386-389) is never used and should be removed
Address.isContract(address) (#298-307) is never used and should be removed
Address.sendValue(address,uint256) (#325-331) is never used and should be removed
Context._msgData() (#270-273) is never used and should be removed
SafeMath.mod(uint256,uint256) (#243-245) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#259-262) is never used and should be removed
Remove unused functions.
Additional information: link
ShiBonk._rTotal (#730) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ShiBonk._previousTaxFee (#738) is set pre-construction with a non-constant function or state variable:
- _taxFee
ShiBonk._previousLiquidityFee (#741) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#325-331):
- (success) = recipient.call{value: amount}() (#329)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#391-412):
- (success,returndata) = target.call{value: weiValue}(data) (#395)
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() (#537) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#538) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#555) is not in mixedCase
Function IUniswapV2Router01.WETH() (#577) is not in mixedCase
Parameter ShiBonk.setSwapAndLiquifyEnabled(bool)._enabled (#924) is not in mixedCase
Parameter ShiBonk.calculateTaxFee(uint256)._amount (#983) is not in mixedCase
Parameter ShiBonk.calculateLiquidityFee(uint256)._amount (#989) is not in mixedCase
Variable ShiBonk._taxFee (#737) is not in mixedCase
Variable ShiBonk._liquidityFee (#740) is not in mixedCase
Variable ShiBonk._maxTxAmount (#749) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#582) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#583)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferStandard(address,address,uint256).rTransferAmount (#1146) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk.reflectionFromToken(uint256,bool).rTransferAmount (#858) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._getValues(uint256).rTransferAmount (#939) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._transferBothExcluded(address,address,uint256).tTransferAmount (#892)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable ShiBonk._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._getValues(uint256).tTransferAmount (#938)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#954) is too similar to ShiBonk._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShiBonk._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShiBonk._transferStandard(address,address,uint256).tTransferAmount (#1146)
Variable ShiBonk._transferBothExcluded(address,address,uint256).rTransferAmount (#892) is too similar to ShiBonk._getTValues(uint256).tTransferAmount (#946)
Prevent variables from having similar names.
Additional information: link
ShiBonk.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#729)
ShiBonk.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#749)
ShiBonk.slitherConstructorVariables() (#715-1178) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#750)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ShiBonk._decimals (#735) should be constant
ShiBonk._name (#733) should be constant
ShiBonk._symbol (#734) should be constant
ShiBonk._tTotal (#729) should be constant
ShiBonk.numTokensSellToAddToLiquidity (#750) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#465-468)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#474-478)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#480-482)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#485-490)
unlock() should be declared external:
- Ownable.unlock() (#493-498)
name() should be declared external:
- ShiBonk.name() (#784-786)
symbol() should be declared external:
- ShiBonk.symbol() (#788-790)
decimals() should be declared external:
- ShiBonk.decimals() (#792-794)
totalSupply() should be declared external:
- ShiBonk.totalSupply() (#796-798)
transfer(address,uint256) should be declared external:
- ShiBonk.transfer(address,uint256) (#805-808)
allowance(address,address) should be declared external:
- ShiBonk.allowance(address,address) (#810-812)
approve(address,uint256) should be declared external:
- ShiBonk.approve(address,uint256) (#814-817)
transferFrom(address,address,uint256) should be declared external:
- ShiBonk.transferFrom(address,address,uint256) (#819-823)
increaseAllowance(address,uint256) should be declared external:
- ShiBonk.increaseAllowance(address,uint256) (#825-828)
decreaseAllowance(address,uint256) should be declared external:
- ShiBonk.decreaseAllowance(address,uint256) (#830-833)
isExcludedFromReward(address) should be declared external:
- ShiBonk.isExcludedFromReward(address) (#835-837)
totalFees() should be declared external:
- ShiBonk.totalFees() (#839-841)
deliver(uint256) should be declared external:
- ShiBonk.deliver(uint256) (#843-850)
reflectionFromToken(uint256,bool) should be declared external:
- ShiBonk.reflectionFromToken(uint256,bool) (#852-861)
excludeFromReward(address) should be declared external:
- ShiBonk.excludeFromReward(address) (#869-877)
excludeFromFee(address) should be declared external:
- ShiBonk.excludeFromFee(address) (#902-904)
includeInFee(address) should be declared external:
- ShiBonk.includeInFee(address) (#906-908)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ShiBonk.setSwapAndLiquifyEnabled(bool) (#924-927)
isExcludedFromFee(address) should be declared external:
- ShiBonk.isExcludedFromFee(address) (#1010-1012)
Use the external attribute for functions never called from the contract.
Additional information: link
Token is deployed only at one blockchain
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Contract has 10% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.
Token has relatively low CoinMarketCap rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Telegram account has relatively few subscribers
Twitter account has relatively few followers