Petbound is a new cryptocurrency token, launched 28th Februaty 2022. Petbound has tagline “where arcades meet blockchain”.
Reentrancy in PETBOUND._transfer(address,address,uint256) (#990-1018):
External calls:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1017)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#945)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1131)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1142)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#886)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1123)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1133)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1143)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#888)
- _tokenTransfer(from,to,amount) (#1017)
- _rTotal = _rTotal.sub(rFee) (#900)
- _tokenTransfer(from,to,amount) (#1017)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#947)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1141)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#885)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1132)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#887)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
PETBOUND._taxFee (#720) is written in both
_taxFee = _previousTaxFee (#960)
_taxFee = 0 (#965)
PETBOUND._liquidityFee (#723) is written in both
_liquidityFee = _previousLiquidityFee (#961)
_liquidityFee = 0 (#966)
PETBOUND._burnFee (#726) is written in both
_burnFee = _previousBurnFee (#962)
_burnFee = 0 (#967)
PETBOUND._devFee (#729) is written in both
_devFee = _previousDevFee (#963)
_devFee = 0 (#968)
Fix or remove the writes.
Additional information: link
PETBOUND.addLiquidity(uint256,uint256) (#1061-1074) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
Ensure that all the return values of the function calls are used.
Additional information: link
PETBOUND.allowance(address,address).owner (#801) shadows:
- Ownable.owner() (#429-431) (function)
PETBOUND._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#429-431) (function)
Rename the local variables that shadow another component.
Additional information: link
PETBOUND.setDevWallet(address).newWallet (#1169) lacks a zero-check on :
- devWallet = newWallet (#1170)
Check that the address is not zero.
Additional information: link
Reentrancy in PETBOUND._transfer(address,address,uint256) (#990-1018):
External calls:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1017)
- _burnFee = _previousBurnFee (#974)
- _burnFee = _previousBurnFee (#962)
- _burnFee = 0 (#967)
- _tokenTransfer(from,to,amount) (#1017)
- _devFee = _previousDevFee (#975)
- _devFee = _previousDevFee (#963)
- _devFee = 0 (#968)
- _tokenTransfer(from,to,amount) (#1017)
- _liquidityFee = _previousLiquidityFee (#973)
- _liquidityFee = _previousLiquidityFee (#961)
- _liquidityFee = 0 (#966)
- _liquidityFee = 0 (#1106)
- _liquidityFee = _previousLiquidityFee (#1113)
- _tokenTransfer(from,to,amount) (#1017)
- _tFeeTotal = _tFeeTotal.add(tFee) (#901)
- _tokenTransfer(from,to,amount) (#1017)
- _taxFee = _previousTaxFee (#972)
- _taxFee = _previousTaxFee (#960)
- _taxFee = 0 (#965)
- _taxFee = 0 (#1105)
- _taxFee = _previousTaxFee (#1112)
Reentrancy in PETBOUND.constructor() (#757-773):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#762-763)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#769)
- _isExcludedFromFee[address(this)] = true (#770)
- uniswapV2Router = _uniswapV2Router (#766)
Reentrancy in PETBOUND.swapAndLiquify(uint256) (#1020-1041):
External calls:
- swapTokensForEth(half) (#1032)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
- addLiquidity(otherHalf,newBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1038)
- _allowances[owner][spender] = amount (#986)
Reentrancy in PETBOUND.transferFrom(address,address,uint256) (#810-814):
External calls:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
External calls sending eth:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,)) (#812)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PETBOUND._transfer(address,address,uint256) (#990-1018):
External calls:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1126)
- _tokenTransfer(from,to,amount) (#1017)
- Transfer(sender,recipient,tTransferAmount) (#1136)
- _tokenTransfer(from,to,amount) (#1017)
- Transfer(sender,recipient,tTransferAmount) (#1146)
- _tokenTransfer(from,to,amount) (#1017)
- Transfer(sender,recipient,tTransferAmount) (#891)
- _tokenTransfer(from,to,amount) (#1017)
Reentrancy in PETBOUND.constructor() (#757-773):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#762-763)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#772)
Reentrancy in PETBOUND.swapAndLiquify(uint256) (#1020-1041):
External calls:
- swapTokensForEth(half) (#1032)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
- addLiquidity(otherHalf,newBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1038)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1038)
- SwapAndLiquify(half,newBalance,otherHalf) (#1040)
Reentrancy in PETBOUND.transferFrom(address,address,uint256) (#810-814):
External calls:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1052-1058)
External calls sending eth:
- _transfer(sender,recipient,amount) (#811)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1066-1073)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,)) (#812)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#476-481) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,) (#478)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#281-290) uses assembly
- INLINE ASM (#288)
Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) uses assembly
- INLINE ASM (#387-390)
Do not use evm assembly.
Additional information: link
PETBOUND.includeInReward(address) (#870-881) has costly operations inside a loop:
- _excluded.pop() (#877)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) is never used and should be removed
Address.functionCall(address,bytes) (#334-336) is never used and should be removed
Address.functionCall(address,bytes,string) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#359-361) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#369-372) is never used and should be removed
Address.isContract(address) (#281-290) is never used and should be removed
Address.sendValue(address,uint256) (#308-314) is never used and should be removed
Context._msgData() (#253-256) is never used and should be removed
SafeMath.mod(uint256,uint256) (#226-228) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#242-245) is never used and should be removed
Remove unused functions.
Additional information: link
PETBOUND._rTotal (#713) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PETBOUND._previousTaxFee (#721) is set pre-construction with a non-constant function or state variable:
- _taxFee
PETBOUND._previousLiquidityFee (#724) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
PETBOUND._previousBurnFee (#727) is set pre-construction with a non-constant function or state variable:
- _burnFee
PETBOUND._previousDevFee (#731) is set pre-construction with a non-constant function or state variable:
- _devFee
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) (#308-314):
- (success) = recipient.call{value: amount}() (#312)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#374-395):
- (success,returndata) = target.call{value: weiValue}(data) (#378)
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() (#520) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#521) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#538) is not in mixedCase
Function IUniswapV2Router01.WETH() (#560) is not in mixedCase
Parameter PETBOUND.calculateTaxFee(uint256)._amount (#950) is not in mixedCase
Parameter PETBOUND.calculateLiquidityFee(uint256)._amount (#954) is not in mixedCase
Parameter PETBOUND.setSwapAndLiquifyEnabled(bool)._enabled (#1187) is not in mixedCase
Variable PETBOUND._taxFee (#720) is not in mixedCase
Variable PETBOUND._liquidityFee (#723) is not in mixedCase
Variable PETBOUND._burnFee (#726) is not in mixedCase
Variable PETBOUND._devFee (#729) is not in mixedCase
Variable PETBOUND._maxTxAmount (#739) is not in mixedCase
Variable PETBOUND._maxWalletToken (#741) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#254)" inContext (#248-257)
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 (#565) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#566)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferToExcluded(address,address,uint256).rTransferAmount (#1130) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND.reflectionFromToken(uint256,bool).rTransferAmount (#849) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._transferBothExcluded(address,address,uint256).tTransferAmount (#884)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._getTValues(uint256).tTransferAmount (#913)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferFromExcluded(address,address,uint256).rTransferAmount (#1140) is too similar to PETBOUND._getValues(uint256).tTransferAmount (#905)
Variable PETBOUND._transferStandard(address,address,uint256).rTransferAmount (#1121) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._transferFromExcluded(address,address,uint256).tTransferAmount (#1140)
Variable PETBOUND._transferBothExcluded(address,address,uint256).rTransferAmount (#884) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._transferToExcluded(address,address,uint256).tTransferAmount (#1130)
Variable PETBOUND._getValues(uint256).rTransferAmount (#906) is too similar to PETBOUND._transferStandard(address,address,uint256).tTransferAmount (#1121)
Prevent variables from having similar names.
Additional information: link
PETBOUND._decimals (#718) should be constant
PETBOUND._name (#716) should be constant
PETBOUND._symbol (#717) should be constant
PETBOUND._tTotal (#712) should be constant
PETBOUND.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() (#448-451)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#457-461)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#463-465)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#468-473)
unlock() should be declared external:
- Ownable.unlock() (#476-481)
name() should be declared external:
- PETBOUND.name() (#775-777)
symbol() should be declared external:
- PETBOUND.symbol() (#779-781)
decimals() should be declared external:
- PETBOUND.decimals() (#783-785)
totalSupply() should be declared external:
- PETBOUND.totalSupply() (#787-789)
transfer(address,uint256) should be declared external:
- PETBOUND.transfer(address,uint256) (#796-799)
allowance(address,address) should be declared external:
- PETBOUND.allowance(address,address) (#801-803)
approve(address,uint256) should be declared external:
- PETBOUND.approve(address,uint256) (#805-808)
transferFrom(address,address,uint256) should be declared external:
- PETBOUND.transferFrom(address,address,uint256) (#810-814)
increaseAllowance(address,uint256) should be declared external:
- PETBOUND.increaseAllowance(address,uint256) (#816-819)
decreaseAllowance(address,uint256) should be declared external:
- PETBOUND.decreaseAllowance(address,uint256) (#821-824)
isExcludedFromReward(address) should be declared external:
- PETBOUND.isExcludedFromReward(address) (#826-828)
totalFees() should be declared external:
- PETBOUND.totalFees() (#830-832)
deliver(uint256) should be declared external:
- PETBOUND.deliver(uint256) (#834-841)
reflectionFromToken(uint256,bool) should be declared external:
- PETBOUND.reflectionFromToken(uint256,bool) (#843-852)
excludeFromReward(address) should be declared external:
- PETBOUND.excludeFromReward(address) (#860-868)
isExcludedFromFee(address) should be declared external:
- PETBOUND.isExcludedFromFee(address) (#978-980)
excludeFromFee(address) should be declared external:
- PETBOUND.excludeFromFee(address) (#1149-1151)
includeInFee(address) should be declared external:
- PETBOUND.includeInFee(address) (#1153-1155)
setMaxTxPercent(uint256) should be declared external:
- PETBOUND.setMaxTxPercent(uint256) (#1173-1178)
setMaxWalletPercent(uint256) should be declared external:
- PETBOUND.setMaxWalletPercent(uint256) (#1180-1185)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PETBOUND.setSwapAndLiquifyEnabled(bool) (#1187-1190)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 9% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.
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 token/project description on the website or on BscScan, CoinMarketCap
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts