This is the first bsc doge project made by the Korean team, Korea Adobe. The team has completed full video, code audio, and kyc.
Tax is 3%, 1% holder automatic airdrop 1% liquidity additional 1% marketing fund.
It has a long-term roadmap that can develop into the future with the defi meme project.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
LiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1643-1656) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1552-1600):
External calls:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1493)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#1502)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1691)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1681)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1703)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1682)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1397)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1704)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1693)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1399)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _rTotal = _rTotal.sub(rFee) (#1446)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1495)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#1504)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1702)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1396)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1692)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1398)
Apply the check-effects-interactions pattern.
Additional information: link
OwnableUpgradeable.__gap (#417) shadows:
- ContextUpgradeable.__gap (#339)
Remove the state variable shadowing.
Additional information: link
LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16) (#1220-1284) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps_ >= 0 && taxFeeBps_ <= 10 ** 4,Invalid tax fee) (#1232)
LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16) (#1220-1284) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps_ >= 0 && liquidityFeeBps_ <= 10 ** 4,Invalid liquidity fee) (#1233)
LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16) (#1220-1284) contains a tautology or contradiction:
- require(bool,string)(charityFeeBps_ >= 0 && charityFeeBps_ <= 10 ** 4,Invalid charity fee) (#1234)
LiquidityGeneratorToken.setTaxFeePercent(uint256) (#1422-1425) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps >= 0 && taxFeeBps <= 10 ** 4,Invalid bps) (#1423)
LiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1427-1430) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps >= 0 && liquidityFeeBps <= 10 ** 4,Invalid bps) (#1428)
LiquidityGeneratorToken.setMaxTxPercent(uint256) (#1432-1435) contains a tautology or contradiction:
- require(bool,string)(maxTxBps >= 0 && maxTxBps <= 10 ** 4,Invalid bps) (#1433)
Fix the incorrect comparison by changing the value type or the comparison.
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.
LiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1643-1656) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
Ensure that all the return values of the function calls are used.
Additional information: link
LiquidityGeneratorToken.allowance(address,address).owner (#1312) shadows:
- OwnableUpgradeable.owner() (#384-386) (function)
LiquidityGeneratorToken._approve(address,address,uint256).owner (#1544) shadows:
- OwnableUpgradeable.owner() (#384-386) (function)
Rename the local variables that shadow another component.
Additional information: link
LiquidityGeneratorToken.setTaxFeePercent(uint256) (#1422-1425) should emit an event for:
- _taxFee = taxFeeBps (#1424)
LiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1427-1430) should emit an event for:
- _liquidityFee = liquidityFeeBps (#1429)
LiquidityGeneratorToken.setMaxTxPercent(uint256) (#1432-1435) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxBps).div(10 ** 4) (#1434)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1552-1600):
External calls:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _charityFee = _previousCharityFee (#1537)
- _charityFee = 0 (#1531)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _liquidityFee = _previousLiquidityFee (#1536)
- _liquidityFee = 0 (#1530)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _previousCharityFee = _charityFee (#1527)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _previousLiquidityFee = _liquidityFee (#1526)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _previousTaxFee = _taxFee (#1525)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1447)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- _taxFee = _previousTaxFee (#1535)
- _taxFee = 0 (#1529)
Reentrancy in LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16) (#1220-1284):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1268-1269)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#1275)
- _isExcludedFromFee[address(this)] = true (#1276)
- _isExcludedFromMaxTx[address(this)] = true (#1279)
- _isExcludedFromMaxTx[address(0xdead)] = true (#1280)
- _isExcludedFromMaxTx[address(0)] = true (#1281)
- uniswapV2Router = _uniswapV2Router (#1272)
Reentrancy in LiquidityGeneratorToken.swapAndLiquify(uint256) (#1602-1623):
External calls:
- swapTokensForEth(half) (#1614)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- addLiquidity(otherHalf,newBalance) (#1620)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1620)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1620)
- _allowances[owner][spender] = amount (#1548)
Reentrancy in LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1321-1325):
External calls:
- _transfer(sender,recipient,amount) (#1322)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1322)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1323)
- _allowances[owner][spender] = amount (#1548)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1552-1600):
External calls:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1587)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
Event emitted after the call(s):
- Transfer(_msgSender(),_charityAddress,tCharity) (#1505)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- Transfer(sender,recipient,tTransferAmount) (#1686)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- Transfer(sender,recipient,tTransferAmount) (#1708)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- Transfer(sender,recipient,tTransferAmount) (#1697)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
- Transfer(sender,recipient,tTransferAmount) (#1403)
- _tokenTransfer(from,to,amount,takeFee) (#1599)
Reentrancy in LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16) (#1220-1284):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1268-1269)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#1283)
Reentrancy in LiquidityGeneratorToken.swapAndLiquify(uint256) (#1602-1623):
External calls:
- swapTokensForEth(half) (#1614)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
- addLiquidity(otherHalf,newBalance) (#1620)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1620)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1549)
- addLiquidity(otherHalf,newBalance) (#1620)
- SwapAndLiquify(half,newBalance,otherHalf) (#1622)
Reentrancy in LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1321-1325):
External calls:
- _transfer(sender,recipient,amount) (#1322)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1634-1640)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1322)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1648-1655)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1549)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1323)
Apply the check-effects-interactions pattern.
Additional information: link
AddressUpgradeable.isContract(address) (#108-117) uses assembly
- INLINE ASM (#115)
AddressUpgradeable._verifyCallResult(bool,bytes,string) (#229-246) uses assembly
- INLINE ASM (#238-241)
Address.isContract(address) (#664-673) uses assembly
- INLINE ASM (#671)
Address._verifyCallResult(bool,bytes,string) (#809-826) uses assembly
- INLINE ASM (#818-821)
Do not use evm assembly.
Additional information: link
LiquidityGeneratorToken.includeInReward(address) (#1381-1392) has costly operations inside a loop:
- _excluded.pop() (#1388)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#809-826) is never used and should be removed
Address.functionCall(address,bytes) (#717-719) is never used and should be removed
Address.functionCall(address,bytes,string) (#727-729) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#742-744) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#752-759) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#791-793) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#801-807) is never used and should be removed
Address.functionStaticCall(address,bytes) (#767-769) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#777-783) is never used and should be removed
Address.isContract(address) (#664-673) is never used and should be removed
Address.sendValue(address,uint256) (#691-697) is never used and should be removed
AddressUpgradeable._verifyCallResult(bool,bytes,string) (#229-246) is never used and should be removed
AddressUpgradeable.functionCall(address,bytes) (#161-163) is never used and should be removed
AddressUpgradeable.functionCall(address,bytes,string) (#171-173) is never used and should be removed
AddressUpgradeable.functionCallWithValue(address,bytes,uint256) (#186-188) is never used and should be removed
AddressUpgradeable.functionCallWithValue(address,bytes,uint256,string) (#196-203) is never used and should be removed
AddressUpgradeable.functionStaticCall(address,bytes) (#211-213) is never used and should be removed
AddressUpgradeable.functionStaticCall(address,bytes,string) (#221-227) is never used and should be removed
AddressUpgradeable.sendValue(address,uint256) (#135-141) is never used and should be removed
ContextUpgradeable.__Context_init() (#325-327) is never used and should be removed
ContextUpgradeable._msgData() (#335-338) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#611-614) is never used and should be removed
SafeMath.mod(uint256,uint256) (#573-576) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#631-634) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#445-449) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#481-484) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#491-494) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#466-474) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#456-459) is never used and should be removed
Remove unused functions.
Additional information: link
LiquidityGeneratorToken._previousTaxFee (#1188) is set pre-construction with a non-constant function or state variable:
- _taxFee
LiquidityGeneratorToken._previousLiquidityFee (#1191) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
LiquidityGeneratorToken._previousCharityFee (#1194) is set pre-construction with a non-constant function or state variable:
- _charityFee
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 AddressUpgradeable.sendValue(address,uint256) (#135-141):
- (success) = recipient.call{value: amount}() (#139)
Low level call in AddressUpgradeable.functionCallWithValue(address,bytes,uint256,string) (#196-203):
- (success,returndata) = target.call{value: value}(data) (#201)
Low level call in AddressUpgradeable.functionStaticCall(address,bytes,string) (#221-227):
- (success,returndata) = target.staticcall(data) (#225)
Low level call in Address.sendValue(address,uint256) (#691-697):
- (success) = recipient.call{value: amount}() (#695)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#752-759):
- (success,returndata) = target.call{value: value}(data) (#757)
Low level call in Address.functionStaticCall(address,bytes,string) (#777-783):
- (success,returndata) = target.staticcall(data) (#781)
Low level call in Address.functionDelegateCall(address,bytes,string) (#801-807):
- (success,returndata) = target.delegatecall(data) (#805)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function ContextUpgradeable.__Context_init() (#325-327) is not in mixedCase
Function ContextUpgradeable.__Context_init_unchained() (#329-330) is not in mixedCase
Variable ContextUpgradeable.__gap (#339) is not in mixedCase
Function OwnableUpgradeable.__Ownable_init() (#370-373) is not in mixedCase
Function OwnableUpgradeable.__Ownable_init_unchained() (#375-379) is not in mixedCase
Variable OwnableUpgradeable.__gap (#417) is not in mixedCase
Function IUniswapV2Router01.WETH() (#872) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1095) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1096) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1113) is not in mixedCase
Parameter LiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool)._enabled (#1437) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateTaxFee(uint256)._amount (#1509) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateLiquidityFee(uint256)._amount (#1513) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateCharityFee(uint256)._amount (#1517) is not in mixedCase
Variable LiquidityGeneratorToken._taxFee (#1187) is not in mixedCase
Variable LiquidityGeneratorToken._liquidityFee (#1190) is not in mixedCase
Variable LiquidityGeneratorToken._charityFee (#1193) is not in mixedCase
Variable LiquidityGeneratorToken._charityAddress (#1198) is not in mixedCase
Variable LiquidityGeneratorToken._maxTxAmount (#1203) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#336)" inContextUpgradeable (#324-340)
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 (#877) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#878)
Variable LiquidityGeneratorToken._charityFee (#1193) is too similar to LiquidityGeneratorToken._getTValues(uint256).tCharityFee (#1459)
Variable LiquidityGeneratorToken._charityAddress (#1198) is too similar to ILiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16).charityAddress_ (#1142)
Variable LiquidityGeneratorToken._charityAddress (#1198) is too similar to LiquidityGeneratorToken.initialize(address,string,string,uint256,address,address,uint16,uint16,uint16,uint16).charityAddress_ (#1226)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1680)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1360) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1460)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1469) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1395) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1701)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1690) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1701) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1690)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1395)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1680) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1452) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1451)
Prevent variables from having similar names.
Additional information: link
OwnableUpgradeable.__gap (#417) is never used in LiquidityGeneratorToken (#1165-1711)
Remove unused state variables.
Additional information: link
renounceOwnership() should be declared external:
- OwnableUpgradeable.renounceOwnership() (#403-406)
name() should be declared external:
- LiquidityGeneratorToken.name() (#1286-1288)
symbol() should be declared external:
- LiquidityGeneratorToken.symbol() (#1290-1292)
decimals() should be declared external:
- LiquidityGeneratorToken.decimals() (#1294-1296)
totalSupply() should be declared external:
- LiquidityGeneratorToken.totalSupply() (#1298-1300)
transfer(address,uint256) should be declared external:
- LiquidityGeneratorToken.transfer(address,uint256) (#1307-1310)
allowance(address,address) should be declared external:
- LiquidityGeneratorToken.allowance(address,address) (#1312-1314)
approve(address,uint256) should be declared external:
- LiquidityGeneratorToken.approve(address,uint256) (#1316-1319)
transferFrom(address,address,uint256) should be declared external:
- LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1321-1325)
increaseAllowance(address,uint256) should be declared external:
- LiquidityGeneratorToken.increaseAllowance(address,uint256) (#1327-1330)
decreaseAllowance(address,uint256) should be declared external:
- LiquidityGeneratorToken.decreaseAllowance(address,uint256) (#1332-1335)
isExcludedFromReward(address) should be declared external:
- LiquidityGeneratorToken.isExcludedFromReward(address) (#1337-1339)
totalFees() should be declared external:
- LiquidityGeneratorToken.totalFees() (#1341-1343)
deliver(uint256) should be declared external:
- LiquidityGeneratorToken.deliver(uint256) (#1345-1352)
reflectionFromToken(uint256,bool) should be declared external:
- LiquidityGeneratorToken.reflectionFromToken(uint256,bool) (#1354-1363)
excludeFromReward(address) should be declared external:
- LiquidityGeneratorToken.excludeFromReward(address) (#1371-1379)
excludeFromFee(address) should be declared external:
- LiquidityGeneratorToken.excludeFromFee(address) (#1406-1408)
includeInFee(address) should be declared external:
- LiquidityGeneratorToken.includeInFee(address) (#1410-1412)
setExcludeFromMaxTx(address,bool) should be declared external:
- LiquidityGeneratorToken.setExcludeFromMaxTx(address,bool) (#1414-1416)
isExcludedFromMaxTx(address) should be declared external:
- LiquidityGeneratorToken.isExcludedFromMaxTx(address) (#1418-1420)
setSwapAndLiquifyEnabled(bool) should be declared external:
- LiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool) (#1437-1440)
isExcludedFromFee(address) should be declared external:
- LiquidityGeneratorToken.isExcludedFromFee(address) (#1540-1542)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Token is deployed only at one blockchain
Contract has 3% buy tax and 2% 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/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
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 price dump / death
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 CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account