$HULK Token Logo

$HULK Token

About $HULK

Listings

Token 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: The ownership of the smart contract isn't renounced for the following asset, which means the owners are able to modify contract behavior (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise with extra caution if you are investing in this asset.
white paper

$HULK is community-driven project with simple solid tokenomics of 9% Buy & sell tax. We will ignite the world of MARVEL + CRYPTO with the worlds 1st ‘real established’ $Marvel Fan token in crypto, leading the way for future $MARVEL projects. $HULK is on the BSC Blockchain combining MARVEL & Crypto, bringing money to the masses of people & the internet. 💹 KYC 💹AUDITED 💹DOXXED TEAM 💹 LOCKED LP NO team vesting, NO private sale, & 100% of liquidity to LP for a solid safe floor.

Social

Laser Scorebeta Last Audit: 14 October 2022

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

AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1567-1580) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1409)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#1418)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1642)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1620)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1259)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1621)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1666)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1667)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1644)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1261)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _rTotal = _rTotal.sub(rFee) (#1301)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1411)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#1420-1422)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1665)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1258)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1643)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1260)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)


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.

AntiBotLiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1281-1290) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps >= 0 && liquidityFeeBps <= 10 ** 4,Invalid bps) (#1285-1288)
AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps_ >= 0 && liquidityFeeBps_ <= 10 ** 4,Invalid liquidity fee) (#1005-1008)
AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(charityFeeBps_ >= 0 && charityFeeBps_ <= 10 ** 4,Invalid charity fee) (#1009-1012)
AntiBotLiquidityGeneratorToken.setTaxFeePercent(uint256) (#1276-1279) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps >= 0 && taxFeeBps <= 10 ** 4,Invalid bps) (#1277)
AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256) (#991-1073) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps_ >= 0 && taxFeeBps_ <= 10 ** 4,Invalid tax fee) (#1004)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Reentrancy in AntiBotLiquidityGeneratorToken.swapAndLiquify(uint256) (#1526-1547):
External calls:
- swapTokensForEth(half) (#1538)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- addLiquidity(otherHalf,newBalance) (#1544)
- SwapAndLiquify(half,newBalance,otherHalf) (#1546)
Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142):
External calls:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1133-1140)
Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1479)
- swapAndLiquify(contractTokenBalance) (#1511)
- SwapAndLiquify(half,newBalance,otherHalf) (#1546)
- swapAndLiquify(contractTokenBalance) (#1511)
- Transfer(_msgSender(),_charityAddress,tCharity) (#1423)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1625)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1671)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1648)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- Transfer(sender,recipient,tTransferAmount) (#1265)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
Apply the check-effects-interactions pattern.

Additional information: link

AntiBotLiquidityGeneratorToken.includeInReward(address) (#1231-1242) has costly operations inside a loop:
- _excluded.pop() (#1238)
Use a local variable to hold the loop computation result.

Additional information: link

Parameter AntiBotLiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool)._enabled (#1292) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateLiquidityFee(uint256)._amount (#1431) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.setEnableAntiBot(bool)._enable (#1075) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._liquidityFee (#959) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._charityAddress (#967) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateTaxFee(uint256)._amount (#1427) is not in mixedCase
Function IUniswapV2Router01.WETH() (#641) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._taxFee (#956) is not in mixedCase
Variable AntiBotLiquidityGeneratorToken._charityFee (#962) is not in mixedCase
Parameter AntiBotLiquidityGeneratorToken.calculateCharityFee(uint256)._amount (#1439) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Contract name ($HULK) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Contract ticker ($HULK) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Address.isContract(address) (#441-451) uses assembly
- INLINE ASM (#447-449)
Address.verifyCallResult(bool,bytes,string) (#610-630) uses assembly
- INLINE ASM (#622-625)
Do not use evm assembly.

Additional information: link

AntiBotLiquidityGeneratorToken._previousTaxFee (#957) is set pre-construction with a non-constant function or state variable:
- _taxFee
AntiBotLiquidityGeneratorToken._previousCharityFee (#963) is set pre-construction with a non-constant function or state variable:
- _charityFee
AntiBotLiquidityGeneratorToken._previousLiquidityFee (#960) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

AntiBotLiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1567-1580) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
Ensure that all the return values of the function calls are used.

Additional information: link

AntiBotLiquidityGeneratorToken.allowance(address,address).owner (#1109) shadows:
- Ownable.owner() (#146-148) (function)
AntiBotLiquidityGeneratorToken._approve(address,address,uint256).owner (#1471) shadows:
- Ownable.owner() (#146-148) (function)
Rename the local variables that shadow another component.

Additional information: link

AntiBotLiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1281-1290) should emit an event for:
- _liquidityFee = liquidityFeeBps (#1289)
AntiBotLiquidityGeneratorToken.setTaxFeePercent(uint256) (#1276-1279) should emit an event for:
- _taxFee = taxFeeBps (#1278)
Emit an event for critical parameter changes.

Additional information: link

AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256).serviceFeeReceiver_ (#1001) lacks a zero-check on :
- address(serviceFeeReceiver_).transfer(serviceFee_) (#1072)
Check that the address is not zero.

Additional information: link

Reentrancy in AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142):
External calls:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1133-1140)
- _allowances[owner][spender] = amount (#1478)
Reentrancy in AntiBotLiquidityGeneratorToken.swapAndLiquify(uint256) (#1526-1547):
External calls:
- swapTokensForEth(half) (#1538)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1544)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1544)
- _allowances[owner][spender] = amount (#1478)
Reentrancy in AntiBotLiquidityGeneratorToken._transfer(address,address,uint256) (#1482-1524):
External calls:
- pinkAntiBot.onPreTransferCheck(from,to,amount) (#1492)
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1558-1564)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1511)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1572-1579)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#1511)
- _allowances[owner][spender] = amount (#1478)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _charityFee = _previousCharityFee (#1463)
- _charityFee = 0 (#1457)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _liquidityFee = _previousLiquidityFee (#1462)
- _liquidityFee = 0 (#1456)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousCharityFee = _charityFee (#1453)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousLiquidityFee = _liquidityFee (#1452)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _previousTaxFee = _taxFee (#1451)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1302)
- _tokenTransfer(from,to,amount,takeFee) (#1523)
- _taxFee = _previousTaxFee (#1461)
- _taxFee = 0 (#1455)
Apply the check-effects-interactions pattern.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#610-630) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#249-254) is never used and should be removed
Address.sendValue(address,uint256) (#469-474) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#523-529) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#261-266) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#593-602) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#583-585) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#207-213) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#402-411) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#537-548) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#376-385) is never used and should be removed
Context._msgData() (#106-108) is never used and should be removed
Address.functionStaticCall(address,bytes) (#556-558) is never used and should be removed
SafeMath.mod(uint256,uint256) (#336-338) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#232-242) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#220-225) is never used and should be removed
Address.isContract(address) (#441-451) is never used and should be removed
Address.functionCall(address,bytes,string) (#504-510) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#566-575) is never used and should be removed
Address.functionCall(address,bytes) (#494-496) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.functionStaticCall(address,bytes,string) (#566-575):
- (success,returndata) = target.staticcall(data) (#573)
Low level call in Address.functionDelegateCall(address,bytes,string) (#593-602):
- (success,returndata) = target.delegatecall(data) (#600)
Low level call in Address.sendValue(address,uint256) (#469-474):
- (success) = recipient.call{value: amount}() (#472)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#537-548):
- (success,returndata) = target.call{value: value}(data) (#546)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._charityAddress (#967) is too similar to AntiBotLiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,address,uint256).charityAddress_ (#996)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._charityFee (#962) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tCharityFee (#1354)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#646) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#647)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1319)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1203) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1253)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1658) is too similar to AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1637)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1324) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Variable AntiBotLiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1251) is too similar to AntiBotLiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1355-1357)
Variable AntiBotLiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1635) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1380-1382) is too similar to AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1615)
Variable AntiBotLiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1613) is too similar to AntiBotLiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1660)
Prevent variables from having similar names.

Additional information: link

isExcludedFromFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.isExcludedFromFee(address) (#1466-1468)
totalFees() should be declared external:
- AntiBotLiquidityGeneratorToken.totalFees() (#1177-1179)
increaseAllowance(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.increaseAllowance(address,uint256) (#1144-1155)
reflectionFromToken(uint256,bool) should be declared external:
- AntiBotLiquidityGeneratorToken.reflectionFromToken(uint256,bool) (#1193-1206)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#165-167)
transfer(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.transfer(address,uint256) (#1100-1107)
symbol() should be declared external:
- AntiBotLiquidityGeneratorToken.symbol() (#1083-1085)
isExcludedFromReward(address) should be declared external:
- AntiBotLiquidityGeneratorToken.isExcludedFromReward(address) (#1173-1175)
decreaseAllowance(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.decreaseAllowance(address,uint256) (#1157-1171)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-176)
deliver(uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.deliver(uint256) (#1181-1191)
approve(address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.approve(address,uint256) (#1118-1125)
excludeFromFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.excludeFromFee(address) (#1268-1270)
includeInFee(address) should be declared external:
- AntiBotLiquidityGeneratorToken.includeInFee(address) (#1272-1274)
totalSupply() should be declared external:
- AntiBotLiquidityGeneratorToken.totalSupply() (#1091-1093)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AntiBotLiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool) (#1292-1295)
decimals() should be declared external:
- AntiBotLiquidityGeneratorToken.decimals() (#1087-1089)
name() should be declared external:
- AntiBotLiquidityGeneratorToken.name() (#1079-1081)
allowance(address,address) should be declared external:
- AntiBotLiquidityGeneratorToken.allowance(address,address) (#1109-1116)
transferFrom(address,address,uint256) should be declared external:
- AntiBotLiquidityGeneratorToken.transferFrom(address,address,uint256) (#1127-1142)
excludeFromReward(address) should be declared external:
- AntiBotLiquidityGeneratorToken.excludeFromReward(address) (#1221-1229)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


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


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


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


Unable to find Blog account (Reddit or Medium)


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


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for $HULK

News for $HULK