Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
PutinBonk.addLiquidity(uint256,uint256) (#745-759) sends eth to arbitrary user
Dangerous calls:
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in PutinBonk._transfer(address,address,uint256) (#640-697):
External calls:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _rOwned[to] = _rOwned[to] + rAmount (#617)
- _rOwned[sender] = _rOwned[sender] - rAmount (#802)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#807)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _rTotal = _rTotal - rFee (#575)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _tOwned[to] = _tOwned[to] + tAmount (#619)
- _tOwned[sender] = _tOwned[sender] - tAmount (#804)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#809)
Apply the check-effects-interactions pattern.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
PutinBonk.swapAndLiquify(uint256) (#699-725) performs a multiplication on the result of a division:
-bnbForTeam = newBalance / 10000 * _percentageOfLiquidityForTeam (#709)
PutinBonk.swapAndLiquify(uint256) (#699-725) performs a multiplication on the result of a division:
-bnbForMarketing = newBalance / 10000 * _percentageOfLiquidityForMarketing (#710)
Consider ordering multiplication before division.
Additional information: link
PutinBonk.addToBlacklist(address[]).i (#792) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
PutinBonk.allowance(address,address).owner (#415) shadows:
- Ownable.owner() (#43-45) (function)
PutinBonk._approve(address,address,uint256).owner (#632) shadows:
- Ownable.owner() (#43-45) (function)
Rename the local variables that shadow another component.
Additional information: link
PutinBonk.setMaxTx(uint256) (#501-503) should emit an event for:
- _maxTxAmount = maxTx (#502)
PutinBonk.setMinTokenBalance(uint256) (#505-507) should emit an event for:
- _minTokenBalance = minTokenBalance (#506)
PutinBonk.setAntiWhaleThreshold(uint256) (#525-527) should emit an event for:
- _antiWhaleThreshold = antiWhaleThreshold (#526)
PutinBonk.setFeesTransfer(uint256,uint256) (#529-532) should emit an event for:
- _taxFee = taxFee (#530)
- _liquidityFee = liquidityFee (#531)
PutinBonk.setFeesBuy(uint256,uint256) (#534-537) should emit an event for:
- _taxFeeBuy = taxFee (#535)
- _liquidityFeeBuy = liquidityFee (#536)
PutinBonk.setFeesSell(uint256,uint256) (#539-542) should emit an event for:
- _taxFeeSell = taxFee (#540)
- _liquidityFeeSell = liquidityFee (#541)
PutinBonk.setLiquidityPercentages(uint256,uint256) (#549-552) should emit an event for:
- _percentageOfLiquidityForTeam = teamFee (#550)
- _percentageOfLiquidityForMarketing = marketingFee (#551)
Emit an event for critical parameter changes.
Additional information: link
PutinBonk.setAddresses(address,address).teamWallet (#544) lacks a zero-check on :
- _teamWallet = teamWallet (#545)
PutinBonk.setAddresses(address,address).marketingWallet (#544) lacks a zero-check on :
- _marketingWallet = marketingWallet (#546)
PutinBonk.setUniswapPair(address).p (#566) lacks a zero-check on :
- uniswapV2Pair = p (#567)
Check that the address is not zero.
Additional information: link
Reentrancy in PutinBonk._transfer(address,address,uint256) (#640-697):
External calls:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _liquidityFee = 0 (#770)
- _liquidityFee = _liquidityFeeBuy (#774)
- _liquidityFee = _liquidityFeeSell (#778)
- _liquidityFee = previousLiquidityFee (#785)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _tFeeTotal = _tFeeTotal + tFee (#576)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _taxFee = 0 (#769)
- _taxFee = _taxFeeBuy (#773)
- _taxFee = _taxFeeSell (#777)
- _taxFee = previousTaxFee (#784)
Reentrancy in PutinBonk.constructor() (#357-384):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#365-366)
State variables written after the call(s):
- _isExcludedFromAntiWhale[owner()] = true (#376)
- _isExcludedFromAntiWhale[address(this)] = true (#377)
- _isExcludedFromAntiWhale[uniswapV2Pair] = true (#378)
- _isExcludedFromAntiWhale[address(uniswapV2Router)] = true (#379)
- _isExcludedFromAntiWhale[_burnAddress] = true (#380)
- _isExcludedFromAutoLiquidity[uniswapV2Pair] = true (#373)
- _isExcludedFromAutoLiquidity[address(uniswapV2Router)] = true (#374)
- _isExcludedFromFee[owner()] = true (#370)
- _isExcludedFromFee[address(this)] = true (#371)
- _isExcludedFromMaxTx[owner()] = true (#381)
- uniswapV2Router = _uniswapV2Router (#367)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- swapTokensForBnb(half) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- _allowances[owner][spender] = amount (#636)
Reentrancy in PutinBonk.transferFrom(address,address,uint256) (#423-427):
External calls:
- _transfer(sender,recipient,amount) (#424)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- _transfer(sender,recipient,amount) (#424)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#425)
- _allowances[owner][spender] = amount (#636)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PutinBonk._transfer(address,address,uint256) (#640-697):
External calls:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#621)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- Transfer(sender,recipient,tTransferAmount) (#814)
- _tokenTransfer(from,to,amount,takeFee) (#688)
Reentrancy in PutinBonk.constructor() (#357-384):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#365-366)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#383)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- swapTokensForBnb(half) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
Event emitted after the call(s):
- TeamSent(_teamWallet,bnbForTeam) (#714)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- swapTokensForBnb(half) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#715)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#718)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- swapTokensForBnb(half) (#706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#724)
Reentrancy in PutinBonk.transferFrom(address,address,uint256) (#423-427):
External calls:
- _transfer(sender,recipient,amount) (#424)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#736-742)
External calls sending eth:
- _transfer(sender,recipient,amount) (#424)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#425)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#74-79) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#76)
Avoid relying on block.timestamp.
Additional information: link
PutinBonk.includeInReward(address) (#479-491) has costly operations inside a loop:
- _excluded.pop() (#487)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#13-16) is never used and should be removed
Remove unused functions.
Additional information: link
PutinBonk._rTotal (#306) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
PutinBonk._maxTxAmount (#328) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 10000
PutinBonk._minTokenBalance (#329) is set pre-construction with a non-constant function or state variable:
- _tTotal / 200
PutinBonk._antiWhaleThreshold (#346) is set pre-construction with a non-constant function or state variable:
- _tTotal * 200 / 10000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#113) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#114) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#131) is not in mixedCase
Function IUniswapV2Router01.WETH() (#151) is not in mixedCase
Parameter PutinBonk.setSwapAndLiquifyEnabled(bool)._enabled (#554) is not in mixedCase
Variable PutinBonk._isExcludedFromAutoLiquidity (#292) is not in mixedCase
Variable PutinBonk._isExcludedFromAntiWhale (#293) is not in mixedCase
Variable PutinBonk._isExcludedFromBuy (#294) is not in mixedCase
Variable PutinBonk._isBlacklisted (#295) is not in mixedCase
Variable PutinBonk._isExcludedFromMaxTx (#296) is not in mixedCase
Constant PutinBonk._burnAddress (#302) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PutinBonk._name (#309) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PutinBonk._symbol (#310) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PutinBonk._decimals (#311) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PutinBonk._taxFee (#317) is not in mixedCase
Variable PutinBonk._liquidityFee (#318) is not in mixedCase
Variable PutinBonk._taxFeeBuy (#321) is not in mixedCase
Variable PutinBonk._liquidityFeeBuy (#322) is not in mixedCase
Variable PutinBonk._taxFeeSell (#325) is not in mixedCase
Variable PutinBonk._liquidityFeeSell (#326) is not in mixedCase
Variable PutinBonk._maxTxAmount (#328) is not in mixedCase
Variable PutinBonk._minTokenBalance (#329) is not in mixedCase
Variable PutinBonk._isAntiWhaleEnabled (#345) is not in mixedCase
Variable PutinBonk._antiWhaleThreshold (#346) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in PutinBonk._transfer(address,address,uint256) (#640-697):
External calls:
- swapAndLiquify(contractTokenBalance) (#680)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#680)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _liquidityFee = 0 (#770)
- _liquidityFee = _liquidityFeeBuy (#774)
- _liquidityFee = _liquidityFeeSell (#778)
- _liquidityFee = previousLiquidityFee (#785)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _rOwned[to] = _rOwned[to] + rAmount (#617)
- _rOwned[sender] = _rOwned[sender] - rAmount (#802)
- _rOwned[recipient] = _rOwned[recipient] + rTransferAmount (#807)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _rTotal = _rTotal - rFee (#575)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _tFeeTotal = _tFeeTotal + tFee (#576)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _tOwned[to] = _tOwned[to] + tAmount (#619)
- _tOwned[sender] = _tOwned[sender] - tAmount (#804)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#809)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- _taxFee = 0 (#769)
- _taxFee = _taxFeeBuy (#773)
- _taxFee = _taxFeeSell (#777)
- _taxFee = previousTaxFee (#784)
Event emitted after the call(s):
- Transfer(sender,to,tAmount) (#621)
- _tokenTransfer(from,to,amount,takeFee) (#688)
- Transfer(sender,recipient,tTransferAmount) (#814)
- _tokenTransfer(from,to,amount,takeFee) (#688)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#715)
Event emitted after the call(s):
- MarketingSent(_marketingWallet,bnbForMarketing) (#718)
Reentrancy in PutinBonk.swapAndLiquify(uint256) (#699-725):
External calls:
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
External calls sending eth:
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
State variables written after the call(s):
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- _allowances[owner][spender] = amount (#636)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- (tokenAdded,bnbAdded) = addLiquidity(otherHalf,bnbForLiquidity) (#722)
- SwapAndLiquify(half,bnbAdded,tokenAdded) (#724)
Reentrancy in PutinBonk.transferFrom(address,address,uint256) (#423-427):
External calls:
- _transfer(sender,recipient,amount) (#424)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
External calls sending eth:
- _transfer(sender,recipient,amount) (#424)
- (amountToken,amountETH) = uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#750-757)
- address(_teamWallet).transfer(bnbForTeam) (#715)
- address(_marketingWallet).transfer(bnbForMarketing) (#719)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#425)
- _allowances[owner][spender] = amount (#636)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#637)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#425)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#156) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#157)
Variable PutinBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#591) is too similar to PutinBonk._getTValues(uint256).tTransferAmount (#582)
Variable PutinBonk._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#591) is too similar to PutinBonk._transferStandard(address,address,uint256).tTransferAmount (#798)
Variable PutinBonk._transferStandard(address,address,uint256).rTransferAmount (#800) is too similar to PutinBonk._getTValues(uint256).tTransferAmount (#582)
Variable PutinBonk._transferStandard(address,address,uint256).rTransferAmount (#800) is too similar to PutinBonk._transferStandard(address,address,uint256).tTransferAmount (#798)
Variable PutinBonk.reflectionFromToken(uint256,bool).rTransferAmount (#457) is too similar to PutinBonk._getTValues(uint256).tTransferAmount (#582)
Variable PutinBonk.reflectionFromToken(uint256,bool).rTransferAmount (#457) is too similar to PutinBonk._transferStandard(address,address,uint256).tTransferAmount (#798)
Prevent variables from having similar names.
Additional information: link
PutinBonk.slitherConstructorVariables() (#286-818) uses literals with too many digits:
- _tTotal = 10000000 * 10 ** 9 (#305)
PutinBonk.slitherConstructorConstantVariables() (#286-818) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#302)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PutinBonk._tTotal (#305) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#52-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#57-61)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#63-65)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#67-72)
unlock() should be declared external:
- Ownable.unlock() (#74-79)
name() should be declared external:
- PutinBonk.name() (#386-388)
symbol() should be declared external:
- PutinBonk.symbol() (#390-392)
decimals() should be declared external:
- PutinBonk.decimals() (#394-396)
totalSupply() should be declared external:
- PutinBonk.totalSupply() (#398-403)
transfer(address,uint256) should be declared external:
- PutinBonk.transfer(address,uint256) (#410-413)
allowance(address,address) should be declared external:
- PutinBonk.allowance(address,address) (#415-417)
approve(address,uint256) should be declared external:
- PutinBonk.approve(address,uint256) (#419-422)
transferFrom(address,address,uint256) should be declared external:
- PutinBonk.transferFrom(address,address,uint256) (#423-427)
increaseAllowance(address,uint256) should be declared external:
- PutinBonk.increaseAllowance(address,uint256) (#429-432)
decreaseAllowance(address,uint256) should be declared external:
- PutinBonk.decreaseAllowance(address,uint256) (#434-437)
isExcludedFromReward(address) should be declared external:
- PutinBonk.isExcludedFromReward(address) (#439-441)
totalFees() should be declared external:
- PutinBonk.totalFees() (#443-445)
reflectionFromToken(uint256,bool) should be declared external:
- PutinBonk.reflectionFromToken(uint256,bool) (#447-460)
excludeFromReward(address) should be declared external:
- PutinBonk.excludeFromReward(address) (#469-477)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PutinBonk.setSwapAndLiquifyEnabled(bool) (#554-557)
isExcludedFromFee(address) should be declared external:
- PutinBonk.isExcludedFromFee(address) (#628-630)
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 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.
Contract has 5% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts