SHIBPAD Token Logo

SPAD [SHIBPAD] Token

About SPAD

Listings

Token 3 years
white paper

Shibpad is a decentralized next level launchpad powered Binance smart chain ecosystem

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Reentrancy in Shibpad._transfer(address,address,uint256) (#1079-1140):
External calls:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _burnFee = _previousBurnFee (#1062)
- _burnFee = 0 (#1054)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _buybackFee = _previousBuybackFee (#1064)
- _buybackFee = 0 (#1056)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _liquidityFee = _previousLiquidityFee (#1061)
- _liquidityFee = 0 (#1053)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1026)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1270)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1279)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1300)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1271)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1290)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1281)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1291)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1302)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _rTotal = _rTotal.sub(rFee) (#981)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1028)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1299)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1289)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1280)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1301)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _walletFee = _previousWalletFee (#1063)
- _walletFee = 0 (#1055)
- buyBackTokens(balance.div(100)) (#1123)
- inSwapAndLiquify = true (#770)
- inSwapAndLiquify = false (#772)
Apply the check-effects-interactions pattern.

Additional information: link

Shibpad.recoverBEP20(address,uint256) (#1324-1328) ignores return value by IERC20(tokenAddress).transfer(owner(),tokenAmount) (#1327)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) contains a tautology or contradiction:
- require(bool,string)(taxFee >= 0 && taxFee <= maxTaxFee,TF err) (#932)
Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) contains a tautology or contradiction:
- require(bool,string)(buybackFee >= 0 && buybackFee <= maxBuybackFee,BBF err) (#936)
Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) contains a tautology or contradiction:
- require(bool,string)(liquidityFee >= 0 && liquidityFee <= maxLiqFee,LF err) (#933)
Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) contains a tautology or contradiction:
- require(bool,string)(burnFee >= 0 && burnFee <= maxBurnFee,BF err) (#934)
Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) contains a tautology or contradiction:
- require(bool,string)(walletFee >= 0 && walletFee <= maxWalletFee,WF err) (#935)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Shibpad.includeInReward(address) (#909-920) has costly operations inside a loop:
- _excluded.pop() (#916)
Use a local variable to hold the loop computation result.

Additional information: link

Shibpad.swapAndLiquify(uint256) (#1142-1191) performs a multiplication on the result of a division:
-spentAmount = contractTokenBalance.div(totFee).mul(_burnFee) (#1149)
Shibpad.swapAndLiquify(uint256) (#1142-1191) performs a multiplication on the result of a division:
-spentAmount = contractTokenBalance.div(totFee).mul(_walletFee) (#1155)
Shibpad.swapAndLiquify(uint256) (#1142-1191) performs a multiplication on the result of a division:
-spentAmount = contractTokenBalance.div(totFee).mul(_buybackFee) (#1161)
Consider ordering multiplication before division.

Additional information: link

Shibpad.addLiquidity(uint256,uint256) (#1232-1245) ignores return value by pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
Ensure that all the return values of the function calls are used.

Additional information: link

Shibpad.allowance(address,address).owner (#841) shadows:
- Ownable.owner() (#480-482) (function)
Shibpad._approve(address,address,uint256).owner (#1071) shadows:
- Ownable.owner() (#480-482) (function)
Rename the local variables that shadow another component.

Additional information: link

Shibpad.setAllFeePercent(uint8,uint8,uint8,uint8,uint8) (#931-942) should emit an event for:
- _taxFee = taxFee (#937)
- _liquidityFee = liquidityFee (#938)
- _burnFee = burnFee (#939)
- _buybackFee = buybackFee (#940)
- _walletFee = walletFee (#941)
Shibpad.setBuybackUpperLimit(uint256) (#948-950) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#949)
Shibpad.setMaxTxPercent(uint256) (#952-957) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#954-956)
Shibpad.setMaxWalletPercent(uint256) (#959-964) should emit an event for:
- _maxWalletAmount = _tTotal.mul(maxWalletPercent).div(10 ** 2) (#961-963)
Emit an event for critical parameter changes.

Additional information: link

Shibpad.constructor(address,string,string,uint8,uint256,uint8,uint8,address)._feeWallet (#778) lacks a zero-check on :
- feeWallet = _feeWallet (#789)
Check that the address is not zero.

Additional information: link

Reentrancy in Shibpad._transfer(address,address,uint256) (#1079-1140):
External calls:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _previousBurnFee = _burnFee (#1048)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _previousBuybackFee = _buybackFee (#1050)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _previousLiquidityFee = _liquidityFee (#1047)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _previousTaxFee = _taxFee (#1046)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _previousWalletFee = _walletFee (#1049)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _tFeeTotal = _tFeeTotal.add(tFee) (#982)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- _taxFee = _previousTaxFee (#1060)
- _taxFee = 0 (#1052)
Reentrancy in Shibpad.constructor(address,string,string,uint8,uint256,uint8,uint8,address) (#775-813):
External calls:
- pcsV2Pair = IUniswapV2Factory(_pcsV2Router.factory()).createPair(address(this),_pcsV2Router.WETH()) (#803-804)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#809)
- _isExcludedFromFee[address(this)] = true (#810)
- pcsV2Router = _pcsV2Router (#807)
Reentrancy in Shibpad.swapAndLiquify(uint256) (#1142-1191):
External calls:
- swapTokensForBNB(spentAmount) (#1162)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- swapTokensForBNB(half) (#1180)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
State variables written after the call(s):
- swapTokensForBNB(half) (#1180)
- _allowances[owner][spender] = amount (#1075)
Reentrancy in Shibpad.swapAndLiquify(uint256) (#1142-1191):
External calls:
- swapTokensForBNB(spentAmount) (#1162)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- swapTokensForBNB(half) (#1180)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- addLiquidity(otherHalf,newBalance) (#1186)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1186)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1186)
- _allowances[owner][spender] = amount (#1075)
Reentrancy in Shibpad.transferFrom(address,address,uint256) (#850-854):
External calls:
- _transfer(sender,recipient,amount) (#851)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- _transfer(sender,recipient,amount) (#851)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
- _allowances[owner][spender] = amount (#1075)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Shibpad._transfer(address,address,uint256) (#1079-1140):
External calls:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1114)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- buyBackTokens(balance.div(100)) (#1123)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1274)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- Transfer(sender,recipient,tTransferAmount) (#1284)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- Transfer(sender,recipient,tTransferAmount) (#1294)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
- Transfer(sender,recipient,tTransferAmount) (#1305)
- _tokenTransfer(from,to,amount,takeFee) (#1139)
Reentrancy in Shibpad.constructor(address,string,string,uint8,uint256,uint8,uint8,address) (#775-813):
External calls:
- pcsV2Pair = IUniswapV2Factory(_pcsV2Router.factory()).createPair(address(this),_pcsV2Router.WETH()) (#803-804)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#812)
Reentrancy in Shibpad.swapAndLiquify(uint256) (#1142-1191):
External calls:
- swapTokensForBNB(spentAmount) (#1162)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- swapTokensForBNB(half) (#1180)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1076)
- swapTokensForBNB(half) (#1180)
Reentrancy in Shibpad.swapAndLiquify(uint256) (#1142-1191):
External calls:
- swapTokensForBNB(spentAmount) (#1162)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- swapTokensForBNB(half) (#1180)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- addLiquidity(otherHalf,newBalance) (#1186)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1186)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1076)
- addLiquidity(otherHalf,newBalance) (#1186)
- SwapAndLiquify(half,newBalance,otherHalf) (#1188)
Reentrancy in Shibpad.transferFrom(address,address,uint256) (#850-854):
External calls:
- _transfer(sender,recipient,amount) (#851)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
External calls sending eth:
- _transfer(sender,recipient,amount) (#851)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1237-1244)
- pcsV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,dead,block.timestamp.add(300)) (#1224-1229)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1076)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#527-532) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#529)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#265-274) uses assembly
- INLINE ASM (#272)
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Context._msgData() (#237-240) is never used and should be removed
SafeERC20._callOptionalReturn(IERC20,bytes) (#436-446) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#409-418) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#425-428) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#420-423) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (#394-396) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#398-400) is never used and should be removed
SafeMath.mod(uint256,uint256) (#210-212) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.

Additional information: link

Shibpad._previousTaxFee (#736) is set pre-construction with a non-constant function or state variable:
- _taxFee
Shibpad._previousLiquidityFee (#739) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Shibpad._previousBurnFee (#742) is set pre-construction with a non-constant function or state variable:
- _burnFee
Shibpad._previousWalletFee (#745) is set pre-construction with a non-constant function or state variable:
- _walletFee
Shibpad._previousBuybackFee (#748) is set pre-construction with a non-constant function or state variable:
- _buybackFee
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) (#292-298):
- (success) = recipient.call{value: amount}() (#296)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#559) is not in mixedCase
Parameter Shibpad.setSwapAndLiquifyEnabled(bool)._enabled (#966) is not in mixedCase
Parameter Shibpad.calculateTaxFee(uint256)._amount (#1031) is not in mixedCase
Parameter Shibpad.calculateLiquidityFee(uint256)._amount (#1037) is not in mixedCase
Variable Shibpad._tTotal (#725) is not in mixedCase
Variable Shibpad._name (#731) is not in mixedCase
Variable Shibpad._symbol (#732) is not in mixedCase
Variable Shibpad._taxFee (#735) is not in mixedCase
Variable Shibpad._liquidityFee (#738) is not in mixedCase
Variable Shibpad._burnFee (#741) is not in mixedCase
Variable Shibpad._walletFee (#744) is not in mixedCase
Variable Shibpad._buybackFee (#747) is not in mixedCase
Variable Shibpad._maxTxAmount (#757) is not in mixedCase
Variable Shibpad._maxWalletAmount (#758) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#238)" inContext (#232-241)
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 (#564) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#565)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._transferToExcluded(address,address,uint256).tTransferAmount (#1278)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad._transferStandard(address,address,uint256).rTransferAmount (#1269) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._transferFromExcluded(address,address,uint256).tTransferAmount (#1288)
Variable Shibpad._getValues(uint256).rTransferAmount (#987) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._transferBothExcluded(address,address,uint256).tTransferAmount (#1298)
Variable Shibpad._transferBothExcluded(address,address,uint256).rTransferAmount (#1298) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._transferFromExcluded(address,address,uint256).rTransferAmount (#1288) is too similar to Shibpad._getTValues(uint256).tTransferAmount (#994)
Variable Shibpad._transferToExcluded(address,address,uint256).rTransferAmount (#1278) is too similar to Shibpad._transferStandard(address,address,uint256).tTransferAmount (#1269)
Variable Shibpad._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1002) is too similar to Shibpad._getValues(uint256).tTransferAmount (#986)
Prevent variables from having similar names.

Additional information: link

Shibpad.slitherConstructorVariables() (#697-1330) uses literals with too many digits:
- dead = 0x000000000000000000000000000000000000dEaD (#702)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Shibpad.dead (#702) should be constant
Shibpad.maxBurnFee (#706) should be constant
Shibpad.maxBuybackFee (#708) should be constant
Shibpad.maxLiqFee (#704) should be constant
Shibpad.maxTaxFee (#705) should be constant
Shibpad.maxWalletFee (#707) should be constant
Shibpad.minMxTxPercentage (#709) should be constant
Shibpad.minMxWalletPercentage (#710) should be constant
Shibpad.mintedByMudra (#729) should be constant
Shibpad.router (#721) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#499-502)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#508-512)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#514-516)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#519-524)
unlock() should be declared external:
- Ownable.unlock() (#527-532)
name() should be declared external:
- Shibpad.name() (#815-817)
symbol() should be declared external:
- Shibpad.symbol() (#819-821)
decimals() should be declared external:
- Shibpad.decimals() (#823-825)
totalSupply() should be declared external:
- Shibpad.totalSupply() (#827-829)
transfer(address,uint256) should be declared external:
- Shibpad.transfer(address,uint256) (#836-839)
allowance(address,address) should be declared external:
- Shibpad.allowance(address,address) (#841-843)
approve(address,uint256) should be declared external:
- Shibpad.approve(address,uint256) (#845-848)
transferFrom(address,address,uint256) should be declared external:
- Shibpad.transferFrom(address,address,uint256) (#850-854)
increaseAllowance(address,uint256) should be declared external:
- Shibpad.increaseAllowance(address,uint256) (#856-859)
decreaseAllowance(address,uint256) should be declared external:
- Shibpad.decreaseAllowance(address,uint256) (#861-864)
isExcludedFromReward(address) should be declared external:
- Shibpad.isExcludedFromReward(address) (#866-868)
totalFees() should be declared external:
- Shibpad.totalFees() (#870-872)
deliver(uint256) should be declared external:
- Shibpad.deliver(uint256) (#874-881)
reflectionFromToken(uint256,bool) should be declared external:
- Shibpad.reflectionFromToken(uint256,bool) (#883-892)
excludeFromReward(address) should be declared external:
- Shibpad.excludeFromReward(address) (#900-907)
excludeFromFee(address) should be declared external:
- Shibpad.excludeFromFee(address) (#923-925)
includeInFee(address) should be declared external:
- Shibpad.includeInFee(address) (#927-929)
buyBackUpperLimitAmount() should be declared external:
- Shibpad.buyBackUpperLimitAmount() (#944-946)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Shibpad.setSwapAndLiquifyEnabled(bool) (#966-969)
isExcludedFromFee(address) should be declared external:
- Shibpad.isExcludedFromFee(address) (#1067-1069)
recoverBEP20(address,uint256) should be declared external:
- Shibpad.recoverBEP20(address,uint256) (#1324-1328)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain

Contract has 5% buy tax and 3% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SPAD

News for SPAD