TateBonk Token Logo

TateBonk Token

ALERT: unclassified scam

About TateBonk

Listings

Not Found
Token 20 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 10 August 2022

report
Token seems to be a scam (type: unclassified scam).

Reentrancy in TateBonk._transfer(address,address,uint256) (#567-596):
External calls:
- swapAndLiquify(contractTokenBalance) (#586)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#586)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- _walletTotals[sender] = _walletTotals[sender].sub(amount,Insufficient Balance) (#588)
- _walletTotals[recipient] = _walletTotals[recipient].add(finalAmount) (#592)
- finalAmount = takeFee(sender,recipient,amount) (#589)
- _walletTotals[address(this)] = _walletTotals[address(this)].add(feeAmount) (#665)
Apply the check-effects-interactions pattern.

Additional information: link


Contract creator or owner is blacklisted for past scams


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


Contract ownership is not renounced (belongs to a wallet)

Ownable._lockTime (#140) should be constant
TateBonk._decimals (#381) should be constant
TateBonk._liquidityShare (#399) should be constant
TateBonk._marketingShare (#398) should be constant
TateBonk._name (#379) should be constant
TateBonk._symbol (#380) should be constant
TateBonk.checkWalletLimit (#415) should be constant
TateBonk.rewardEndSupply (#442) should be constant
TateBonk.swapAndLiquifyByLimitOnly (#414) should be constant
TateBonk.treasuryWallet (#383) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

TateBonk.addLiquidity(uint256,uint256) (#640-650) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
Ensure that all the return values of the function calls are used.

Additional information: link

TateBonk.allowance(address,address).owner (#492) shadows:
- Ownable.owner() (#150-152) (function)
TateBonk._approve(address,address,uint256).owner (#515) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.

Additional information: link

TateBonk.setDisposal(uint256,uint256) (#526-530) should emit an event for:
- _finalSellTax = _LiquidityFeeSell.add(_TreasuryFeeSell) (#529)
TateBonk.setAcquire(uint256,uint256) (#532-536) should emit an event for:
- _finalBuyTax = _LiquidityFeeBuy.add(_TreasuryFeeBuy) (#535)
TateBonk.setNumTokensBeforeSwap(uint256) (#542-544) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#543)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in TateBonk.constructor() (#445-470):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#449)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#451)
- _finalBuyTax = _LiquidityFeeBuy.add(_TreasuryFeeBuy) (#456)
- _finalSellTax = _LiquidityFeeSell.add(_TreasuryFeeSell) (#457)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#458)
- _walletTotals[_msgSender()] = _totalSupply (#468)
- isExcludedFromFee[owner()] = true (#453)
- isExcludedFromFee[address(this)] = true (#454)
- isMarketPair[address(uniswapPair)] = true (#467)
- isTXNoLimit[owner()] = true (#464)
- isTXNoLimit[address(this)] = true (#465)
- isWalletNoLimit[owner()] = true (#460)
- isWalletNoLimit[address(uniswapPair)] = true (#461)
- isWalletNoLimit[address(this)] = true (#462)
- uniswapV2Router = _uniswapV2Router (#450)
Reentrancy in TateBonk.swapAndLiquify(uint256) (#605-623):
External calls:
- swapTokensForEth(tokensForSwap) (#609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#618)
- recipient.transfer(amount) (#552)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#620)
- recipient.transfer(amount) (#552)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- _allowances[owner][spender] = amount (#518)
Reentrancy in TateBonk.transferFrom(address,address,uint256) (#562-565):
External calls:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#564)
- _allowances[owner][spender] = amount (#518)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TateBonk._transfer(address,address,uint256) (#567-596):
External calls:
- swapAndLiquify(contractTokenBalance) (#586)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#586)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#666)
- finalAmount = takeFee(sender,recipient,amount) (#589)
- Transfer(sender,recipient,finalAmount) (#593)
Reentrancy in TateBonk.constructor() (#445-470):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#449)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#469)
Reentrancy in TateBonk.swapAndLiquify(uint256) (#605-623):
External calls:
- swapTokensForEth(tokensForSwap) (#609)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#618)
- recipient.transfer(amount) (#552)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#620)
- recipient.transfer(amount) (#552)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#519)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
Reentrancy in TateBonk.swapTokensForEth(uint256) (#625-638):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#637)
Reentrancy in TateBonk.transferFrom(address,address,uint256) (#562-565):
External calls:
- _transfer(sender,recipient,amount) (#563)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#630-636)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#519)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#564)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#82-91) uses assembly
- INLINE ASM (#89)
Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) uses assembly
- INLINE ASM (#127-130)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) is never used and should be removed
Address.functionCall(address,bytes) (#101-103) is never used and should be removed
Address.functionCall(address,bytes,string) (#105-107) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
Address.isContract(address) (#82-91) is never used and should be removed
Address.sendValue(address,uint256) (#93-99) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#70-72) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

TateBonk._totalSupply (#404) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
TateBonk.minimumTokensBeforeSwap (#405) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
TateBonk._walletMax (#406) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
TateBonk._maxTxAmount (#407) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
TateBonk.rewardDecimals (#441) is set pre-construction with a non-constant function or state variable:
- (10 ** _decimals)
TateBonk.getTotalRewards (#443) is set pre-construction with a non-constant function or state variable:
- rewardEndSupply * rewardDecimals
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) (#93-99):
- (success) = recipient.call{value: amount}() (#97)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#118-135):
- (success,returndata) = target.call{value: weiValue}(data) (#121)
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() (#206) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#207) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#242) is not in mixedCase
Function TateBonk._setSwapAndLiquifyEnabled(bool) (#546-549) is not in mixedCase
Parameter TateBonk._setSwapAndLiquifyEnabled(bool)._enabled (#546) is not in mixedCase
Parameter TateBonk.setNoScope(address)._account (#652) is not in mixedCase
Variable TateBonk._walletTotals (#385) is not in mixedCase
Variable TateBonk._LiquidityFeeBuy (#393) is not in mixedCase
Variable TateBonk._TreasuryFeeBuy (#394) is not in mixedCase
Variable TateBonk._LiquidityFeeSell (#395) is not in mixedCase
Variable TateBonk._TreasuryFeeSell (#396) is not in mixedCase
Variable TateBonk._marketingShare (#398) is not in mixedCase
Variable TateBonk._liquidityShare (#399) is not in mixedCase
Variable TateBonk._totalDistributionShares (#400) is not in mixedCase
Variable TateBonk._finalBuyTax (#401) is not in mixedCase
Variable TateBonk._finalSellTax (#402) is not in mixedCase
Variable TateBonk._walletMax (#406) is not in mixedCase
Variable TateBonk._maxTxAmount (#407) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#6-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in TateBonk._transfer(address,address,uint256) (#567-596):
External calls:
- swapAndLiquify(contractTokenBalance) (#586)
- recipient.transfer(amount) (#552)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#586)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- _walletTotals[sender] = _walletTotals[sender].sub(amount,Insufficient Balance) (#588)
- _walletTotals[recipient] = _walletTotals[recipient].add(finalAmount) (#592)
- finalAmount = takeFee(sender,recipient,amount) (#589)
- _walletTotals[address(this)] = _walletTotals[address(this)].add(feeAmount) (#665)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#666)
- finalAmount = takeFee(sender,recipient,amount) (#589)
- Transfer(sender,recipient,finalAmount) (#593)
Reentrancy in TateBonk.swapAndLiquify(uint256) (#605-623):
External calls:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#618)
- recipient.transfer(amount) (#552)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#620)
- recipient.transfer(amount) (#552)
External calls sending eth:
- transferToAddressETH(treasuryWallet,amountBNBMarketing) (#618)
- recipient.transfer(amount) (#552)
- transferToAddressETH(treasuryWallet,amountBNBTeam) (#620)
- recipient.transfer(amount) (#552)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
- _allowances[owner][spender] = amount (#518)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#519)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#622)
Reentrancy in TateBonk.transferFrom(address,address,uint256) (#562-565):
External calls:
- _transfer(sender,recipient,amount) (#563)
- recipient.transfer(amount) (#552)
External calls sending eth:
- _transfer(sender,recipient,amount) (#563)
- recipient.transfer(amount) (#552)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#642-649)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#564)
- _allowances[owner][spender] = amount (#518)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#519)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#564)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#247) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#248)
Prevent variables from having similar names.

Additional information: link

TateBonk.slitherConstructorVariables() (#375-671) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** _decimals (#404)
TateBonk.slitherConstructorVariables() (#375-671) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000000 * 10 ** _decimals (#405)
TateBonk.slitherConstructorVariables() (#375-671) uses literals with too many digits:
- _walletMax = 100000000 * 10 ** _decimals (#406)
TateBonk.slitherConstructorVariables() (#375-671) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** _decimals (#407)
TateBonk.slitherConstructorVariables() (#375-671) uses literals with too many digits:
- rewardEndSupply = 100000000000 (#442)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#140) is never used in TateBonk (#375-671)
Remove unused state variables.

Additional information: link

getOwner() should be declared external:
- Ownable.getOwner() (#154-156)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#163-167)
getTime() should be declared external:
- Ownable.getTime() (#169-171)
name() should be declared external:
- TateBonk.name() (#472-474)
decimals() should be declared external:
- TateBonk.decimals() (#476-478)
symbol() should be declared external:
- TateBonk.symbol() (#480-482)
totalSupply() should be declared external:
- TateBonk.totalSupply() (#484-486)
allowance(address,address) should be declared external:
- TateBonk.allowance(address,address) (#492-494)
increaseAllowance(address,uint256) should be declared external:
- TateBonk.increaseAllowance(address,uint256) (#496-499)
decreaseAllowance(address,uint256) should be declared external:
- TateBonk.decreaseAllowance(address,uint256) (#501-504)
minimumTokensBeforeSwapAmount() should be declared external:
- TateBonk.minimumTokensBeforeSwapAmount() (#506-508)
approve(address,uint256) should be declared external:
- TateBonk.approve(address,uint256) (#510-513)
setMarketPairStatus(address,bool) should be declared external:
- TateBonk.setMarketPairStatus(address,bool) (#522-524)
_setSwapAndLiquifyEnabled(bool) should be declared external:
- TateBonk._setSwapAndLiquifyEnabled(bool) (#546-549)
rewardAssets() should be declared external:
- TateBonk.rewardAssets() (#555)
transfer(address,uint256) should be declared external:
- TateBonk.transfer(address,uint256) (#558-560)
transferFrom(address,address,uint256) should be declared external:
- TateBonk.transferFrom(address,address,uint256) (#562-565)
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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.

Contract has 4% buy tax and 4% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for TateBonk