Shiba Slap ($SLAP) is a community-driven DeFi token on the Binance Smart Chain that is an automatic liquidity providing protocol that pays out static rewards to holders.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in ShibaSlap._transfer(address,address,uint256) (#1012-1056):
External calls:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#968)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1146)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1157)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#884)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1138)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#886)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _rTotal = _rTotal.sub(rFee) (#923)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#970)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#883)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1156)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1147)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#885)
Apply the check-effects-interactions pattern.
Additional information: link
ShibaSlap.includeInReward(address) (#869-880) has costly operations inside a loop:
- _excluded.pop() (#876)
Use a local variable to hold the loop computation result.
Additional information: link
ShibaSlap.addLiquidity(uint256,uint256) (#1099-1112) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
Ensure that all the return values of the function calls are used.
Additional information: link
ShibaSlap.allowance(address,address).owner (#800) shadows:
- Ownable.owner() (#436-438) (function)
ShibaSlap._approve(address,address,uint256).owner (#1004) shadows:
- Ownable.owner() (#436-438) (function)
Rename the local variables that shadow another component.
Additional information: link
ShibaSlap.setTaxFeePercent(uint256) (#900-902) should emit an event for:
- _taxFee = taxFee (#901)
ShibaSlap.setLiquidityFeePercent(uint256) (#904-906) should emit an event for:
- _liquidityFee = liquidityFee (#905)
ShibaSlap.setMaxTxPercent(uint256) (#908-912) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#909-911)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in ShibaSlap._transfer(address,address,uint256) (#1012-1056):
External calls:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _liquidityFee = _previousLiquidityFee (#997)
- _liquidityFee = 0 (#992)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _previousLiquidityFee = _liquidityFee (#989)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _previousTaxFee = _taxFee (#988)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _tFeeTotal = _tFeeTotal.add(tFee) (#924)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- _taxFee = _previousTaxFee (#996)
- _taxFee = 0 (#991)
Reentrancy in ShibaSlap.constructor() (#756-772):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#768)
- _isExcludedFromFee[address(this)] = true (#769)
- uniswapV2Router = _uniswapV2Router (#765)
Reentrancy in ShibaSlap.swapAndLiquify(uint256) (#1058-1079):
External calls:
- swapTokensForEth(half) (#1070)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1076)
- _allowances[owner][spender] = amount (#1008)
Reentrancy in ShibaSlap.transferFrom(address,address,uint256) (#809-813):
External calls:
- _transfer(sender,recipient,amount) (#810)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
External calls sending eth:
- _transfer(sender,recipient,amount) (#810)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#811)
- _allowances[owner][spender] = amount (#1008)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ShibaSlap._transfer(address,address,uint256) (#1012-1056):
External calls:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1043)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- Transfer(sender,recipient,tTransferAmount) (#1151)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
- Transfer(sender,recipient,tTransferAmount) (#889)
- _tokenTransfer(from,to,amount,takeFee) (#1055)
Reentrancy in ShibaSlap.constructor() (#756-772):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#771)
Reentrancy in ShibaSlap.swapAndLiquify(uint256) (#1058-1079):
External calls:
- swapTokensForEth(half) (#1070)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1009)
- addLiquidity(otherHalf,newBalance) (#1076)
- SwapAndLiquify(half,newBalance,otherHalf) (#1078)
Reentrancy in ShibaSlap.transferFrom(address,address,uint256) (#809-813):
External calls:
- _transfer(sender,recipient,amount) (#810)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1090-1096)
External calls sending eth:
- _transfer(sender,recipient,amount) (#810)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1104-1111)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1009)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#811)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#483-488) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#485)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#288-297) uses assembly
- INLINE ASM (#295)
Address._functionCallWithValue(address,bytes,uint256,string) (#381-402) uses assembly
- INLINE ASM (#394-397)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#381-402) is never used and should be removed
Address.functionCall(address,bytes) (#341-343) is never used and should be removed
Address.functionCall(address,bytes,string) (#351-353) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#366-368) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#376-379) is never used and should be removed
Address.isContract(address) (#288-297) is never used and should be removed
Address.sendValue(address,uint256) (#315-321) is never used and should be removed
Context._msgData() (#260-263) is never used and should be removed
SafeMath.mod(uint256,uint256) (#233-235) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#249-252) is never used and should be removed
Remove unused functions.
Additional information: link
ShibaSlap._rTotal (#720) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ShibaSlap._previousTaxFee (#728) is set pre-construction with a non-constant function or state variable:
- _taxFee
ShibaSlap._previousLiquidityFee (#731) 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) (#315-321):
- (success) = recipient.call{value: amount}() (#319)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#381-402):
- (success,returndata) = target.call{value: weiValue}(data) (#385)
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() (#527) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#528) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#545) is not in mixedCase
Function IUniswapV2Router01.WETH() (#567) is not in mixedCase
Parameter ShibaSlap.setSwapAndLiquifyEnabled(bool)._enabled (#914) is not in mixedCase
Parameter ShibaSlap.calculateTaxFee(uint256)._amount (#973) is not in mixedCase
Parameter ShibaSlap.calculateLiquidityFee(uint256)._amount (#979) is not in mixedCase
Variable ShibaSlap._taxFee (#727) is not in mixedCase
Variable ShibaSlap._liquidityFee (#730) is not in mixedCase
Variable ShibaSlap._maxTxAmount (#739) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#261)" inContext (#255-264)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#572) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#573)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferToExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._transferBothExcluded(address,address,uint256).tTransferAmount (#882)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._getTValues(uint256).tTransferAmount (#936)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._getValues(uint256).tTransferAmount (#928)
Variable ShibaSlap._transferStandard(address,address,uint256).rTransferAmount (#1136) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap._getValues(uint256).rTransferAmount (#929) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#944) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Variable ShibaSlap._transferFromExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap._transferBothExcluded(address,address,uint256).rTransferAmount (#882) is too similar to ShibaSlap._transferFromExcluded(address,address,uint256).tTransferAmount (#1155)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._transferStandard(address,address,uint256).tTransferAmount (#1136)
Variable ShibaSlap.reflectionFromToken(uint256,bool).rTransferAmount (#848) is too similar to ShibaSlap._transferToExcluded(address,address,uint256).tTransferAmount (#1145)
Prevent variables from having similar names.
Additional information: link
ShibaSlap.slitherConstructorVariables() (#705-1168) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#719)
ShibaSlap.slitherConstructorVariables() (#705-1168) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 6 * 10 ** 9 (#739)
ShibaSlap.slitherConstructorVariables() (#705-1168) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000 * 10 ** 6 * 10 ** 9 (#740)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ShibaSlap._decimals (#725) should be constant
ShibaSlap._name (#723) should be constant
ShibaSlap._symbol (#724) should be constant
ShibaSlap._tTotal (#719) should be constant
ShibaSlap.numTokensSellToAddToLiquidity (#740) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#455-458)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#464-468)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#470-472)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#475-480)
unlock() should be declared external:
- Ownable.unlock() (#483-488)
name() should be declared external:
- ShibaSlap.name() (#774-776)
symbol() should be declared external:
- ShibaSlap.symbol() (#778-780)
decimals() should be declared external:
- ShibaSlap.decimals() (#782-784)
totalSupply() should be declared external:
- ShibaSlap.totalSupply() (#786-788)
transfer(address,uint256) should be declared external:
- ShibaSlap.transfer(address,uint256) (#795-798)
allowance(address,address) should be declared external:
- ShibaSlap.allowance(address,address) (#800-802)
approve(address,uint256) should be declared external:
- ShibaSlap.approve(address,uint256) (#804-807)
transferFrom(address,address,uint256) should be declared external:
- ShibaSlap.transferFrom(address,address,uint256) (#809-813)
increaseAllowance(address,uint256) should be declared external:
- ShibaSlap.increaseAllowance(address,uint256) (#815-818)
decreaseAllowance(address,uint256) should be declared external:
- ShibaSlap.decreaseAllowance(address,uint256) (#820-823)
isExcludedFromReward(address) should be declared external:
- ShibaSlap.isExcludedFromReward(address) (#825-827)
totalFees() should be declared external:
- ShibaSlap.totalFees() (#829-831)
deliver(uint256) should be declared external:
- ShibaSlap.deliver(uint256) (#833-840)
reflectionFromToken(uint256,bool) should be declared external:
- ShibaSlap.reflectionFromToken(uint256,bool) (#842-851)
excludeFromReward(address) should be declared external:
- ShibaSlap.excludeFromReward(address) (#859-867)
excludeFromFee(address) should be declared external:
- ShibaSlap.excludeFromFee(address) (#892-894)
includeInFee(address) should be declared external:
- ShibaSlap.includeInFee(address) (#896-898)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ShibaSlap.setSwapAndLiquifyEnabled(bool) (#914-917)
isExcludedFromFee(address) should be declared external:
- ShibaSlap.isExcludedFromFee(address) (#1000-1002)
Use the external attribute for functions never called from the contract.
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 contract audit
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token has a considerable age, but social accounts / website are missing or have few users
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
Young tokens have high risks of price dump / death
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account
Unable to find Discord account