DFS MAFIA Token Logo

DFSM [DFS MAFIA] Token

About DFSM

Listings

Token 4 years
CoinGecko 4 years

Our token and protect seeks to bring crypto innovation and integration to fantasy sports! We plan to launch our own daily fantasy sports platform and integrate our DFSM token into the site. Our innovation consists of a number of different crypto use cases being implemented into fantasy sports. Contest entries and winnings can be paid in DFSM token. There will be a swap feature on the platform in which a percentage of the swap fee will go towards buy back and burn of token supply. In addition we will also use a percentage of the profits from every contest to contribute to the token burn. The platform will contain a staking feature allowing players to stake their winnings between contest. Our NFT sports themed marketplace will also be on the platform and the minting fees also contribute to token burning. Our biggest innovation is a metaverse and VR implementation with fantasy sports. We seek to compete will the likes of Fanduel and Draftkings but crypto integrated!

Social

Laser Scorebeta Last Audit: 19 October 2022

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

Anti-Scam

Links


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

LiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1536-1549) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1455-1493):
External calls:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1382)
- _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity) (#1391)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1611)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1589)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1635)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1590)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1229)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1636)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1613)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1231)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _rTotal = _rTotal.sub(rFee) (#1274)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1384)
- _tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity) (#1393-1395)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1634)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1228)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1612)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1230)
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.


Contract ownership is not renounced (belongs to a wallet)

LiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#976-1047) contains a tautology or contradiction:
- require(bool,string)(charityFeeBps_ >= 0,Invalid charity fee) (#990)
LiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#976-1047) contains a tautology or contradiction:
- require(bool,string)(taxFeeBps_ >= 0,Invalid tax fee) (#988)
LiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256) (#976-1047) contains a tautology or contradiction:
- require(bool,string)(liquidityFeeBps_ >= 0,Invalid liquidity fee) (#989)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

LiquidityGeneratorToken._previousCharityFee (#951) is set pre-construction with a non-constant function or state variable:
- _charityFee
LiquidityGeneratorToken._previousLiquidityFee (#948) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
LiquidityGeneratorToken._previousTaxFee (#945) is set pre-construction with a non-constant function or state variable:
- _taxFee
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.functionStaticCall(address,bytes,string) (#570-579):
- (success,returndata) = target.staticcall(data) (#577)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#541-552):
- (success,returndata) = target.call{value: value}(data) (#550)
Low level call in Address.sendValue(address,uint256) (#473-478):
- (success) = recipient.call{value: amount}() (#476)
Low level call in Address.functionDelegateCall(address,bytes,string) (#597-606):
- (success,returndata) = target.delegatecall(data) (#604)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable LiquidityGeneratorToken._taxFee (#944) is not in mixedCase
Variable LiquidityGeneratorToken._liquidityFee (#947) is not in mixedCase
Variable LiquidityGeneratorToken._charityFee (#950) is not in mixedCase
Variable LiquidityGeneratorToken._charityAddress (#955) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateCharityFee(uint256)._amount (#1412) is not in mixedCase
Parameter LiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool)._enabled (#1265) is not in mixedCase
Function IUniswapV2Router01.WETH() (#645) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateLiquidityFee(uint256)._amount (#1404) is not in mixedCase
Parameter LiquidityGeneratorToken.calculateTaxFee(uint256)._amount (#1400) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1629)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#650) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#651)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken._charityAddress (#955) is too similar to LiquidityGeneratorToken.constructor(string,string,uint256,address,address,uint16,uint16,uint16,address,uint256).charityAddress_ (#981)
Variable LiquidityGeneratorToken._charityFee (#950) is too similar to LiquidityGeneratorToken._getTValues(uint256).tCharityFee (#1327)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._transferToExcluded(address,address,uint256).rTransferAmount (#1604) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken.reflectionFromToken(uint256,bool).rTransferAmount (#1173) is too similar to LiquidityGeneratorToken._getValues(uint256).tTransferAmount (#1292)
Variable LiquidityGeneratorToken._transferStandard(address,address,uint256).rTransferAmount (#1582) is too similar to LiquidityGeneratorToken._transferToExcluded(address,address,uint256).tTransferAmount (#1606)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1221) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._getValues(uint256).rTransferAmount (#1297) is too similar to LiquidityGeneratorToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable LiquidityGeneratorToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1627) is too similar to LiquidityGeneratorToken._getTValues(uint256).tTransferAmount (#1328-1330)
Variable LiquidityGeneratorToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1353-1355) is too similar to LiquidityGeneratorToken._transferStandard(address,address,uint256).tTransferAmount (#1584)
Prevent variables from having similar names.

Additional information: link

decreaseAllowance(address,uint256) should be declared external:
- LiquidityGeneratorToken.decreaseAllowance(address,uint256) (#1127-1141)
name() should be declared external:
- LiquidityGeneratorToken.name() (#1049-1051)
excludeFromReward(address) should be declared external:
- LiquidityGeneratorToken.excludeFromReward(address) (#1191-1199)
excludeFromFee(address) should be declared external:
- LiquidityGeneratorToken.excludeFromFee(address) (#1238-1240)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#169-171)
transferFrom(address,address,uint256) should be declared external:
- LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1097-1112)
isExcludedFromReward(address) should be declared external:
- LiquidityGeneratorToken.isExcludedFromReward(address) (#1143-1145)
symbol() should be declared external:
- LiquidityGeneratorToken.symbol() (#1053-1055)
includeInFee(address) should be declared external:
- LiquidityGeneratorToken.includeInFee(address) (#1242-1244)
setSwapAndLiquifyEnabled(bool) should be declared external:
- LiquidityGeneratorToken.setSwapAndLiquifyEnabled(bool) (#1265-1268)
deliver(uint256) should be declared external:
- LiquidityGeneratorToken.deliver(uint256) (#1151-1161)
approve(address,uint256) should be declared external:
- LiquidityGeneratorToken.approve(address,uint256) (#1088-1095)
decimals() should be declared external:
- LiquidityGeneratorToken.decimals() (#1057-1059)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#177-180)
allowance(address,address) should be declared external:
- LiquidityGeneratorToken.allowance(address,address) (#1079-1086)
isExcludedFromFee(address) should be declared external:
- LiquidityGeneratorToken.isExcludedFromFee(address) (#1439-1441)
reflectionFromToken(uint256,bool) should be declared external:
- LiquidityGeneratorToken.reflectionFromToken(uint256,bool) (#1163-1176)
totalFees() should be declared external:
- LiquidityGeneratorToken.totalFees() (#1147-1149)
increaseAllowance(address,uint256) should be declared external:
- LiquidityGeneratorToken.increaseAllowance(address,uint256) (#1114-1125)
transfer(address,uint256) should be declared external:
- LiquidityGeneratorToken.transfer(address,uint256) (#1070-1077)
totalSupply() should be declared external:
- LiquidityGeneratorToken.totalSupply() (#1061-1063)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1097-1112):
External calls:
- _transfer(sender,recipient,amount) (#1102)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1102)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1103-1110)
- _allowances[owner][spender] = amount (#1451)
Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1455-1493):
External calls:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _charityFee = _previousCharityFee (#1436)
- _charityFee = 0 (#1430)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _liquidityFee = _previousLiquidityFee (#1435)
- _liquidityFee = 0 (#1429)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _previousCharityFee = _charityFee (#1426)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _previousLiquidityFee = _liquidityFee (#1425)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _previousTaxFee = _taxFee (#1424)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1275)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- _taxFee = _previousTaxFee (#1434)
- _taxFee = 0 (#1428)
Reentrancy in LiquidityGeneratorToken.swapAndLiquify(uint256) (#1495-1516):
External calls:
- swapTokensForEth(half) (#1507)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
- addLiquidity(otherHalf,newBalance) (#1513)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1513)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1513)
- _allowances[owner][spender] = amount (#1451)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LiquidityGeneratorToken._transfer(address,address,uint256) (#1455-1493):
External calls:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1480)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Event emitted after the call(s):
- Transfer(_msgSender(),_charityAddress,tCharity) (#1396)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- Transfer(sender,recipient,tTransferAmount) (#1594)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- Transfer(sender,recipient,tTransferAmount) (#1640)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- Transfer(sender,recipient,tTransferAmount) (#1617)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
- Transfer(sender,recipient,tTransferAmount) (#1235)
- _tokenTransfer(from,to,amount,takeFee) (#1492)
Reentrancy in LiquidityGeneratorToken.transferFrom(address,address,uint256) (#1097-1112):
External calls:
- _transfer(sender,recipient,amount) (#1102)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1102)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1452)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1103-1110)
Reentrancy in LiquidityGeneratorToken.swapAndLiquify(uint256) (#1495-1516):
External calls:
- swapTokensForEth(half) (#1507)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1527-1533)
- addLiquidity(otherHalf,newBalance) (#1513)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1513)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1452)
- addLiquidity(otherHalf,newBalance) (#1513)
- SwapAndLiquify(half,newBalance,otherHalf) (#1515)
Apply the check-effects-interactions pattern.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#614-634) uses assembly
- INLINE ASM (#626-629)
Address.isContract(address) (#445-455) uses assembly
- INLINE ASM (#451-453)
Do not use evm assembly.

Additional information: link

LiquidityGeneratorToken.includeInReward(address) (#1201-1212) has costly operations inside a loop:
- _excluded.pop() (#1208)
Use a local variable to hold the loop computation result.

Additional information: link

Address.verifyCallResult(bool,bytes,string) (#614-634) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#253-258) is never used and should be removed
Address.sendValue(address,uint256) (#473-478) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#527-533) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#265-270) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#597-606) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#587-589) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#211-217) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#406-415) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#541-552) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#380-389) is never used and should be removed
Context._msgData() (#110-112) is never used and should be removed
Address.functionStaticCall(address,bytes) (#560-562) is never used and should be removed
SafeMath.mod(uint256,uint256) (#340-342) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#236-246) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#224-229) is never used and should be removed
Address.isContract(address) (#445-455) is never used and should be removed
Address.functionCall(address,bytes,string) (#508-514) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#570-579) is never used and should be removed
Address.functionCall(address,bytes) (#498-500) is never used and should be removed
Remove unused functions.

Additional information: link

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

Additional information: link

LiquidityGeneratorToken.addLiquidity(uint256,uint256) (#1536-1549) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1541-1548)
Ensure that all the return values of the function calls are used.

Additional information: link

LiquidityGeneratorToken.setTaxFeePercent(uint256) (#1246-1252) should emit an event for:
- _taxFee = taxFeeBps (#1247)
LiquidityGeneratorToken.setLiquidityFeePercent(uint256) (#1254-1263) should emit an event for:
- _liquidityFee = liquidityFeeBps (#1258)
Emit an event for critical parameter changes.

Additional information: link

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

Additional information: link

Holders:


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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 verify token contract address on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


Token has a considerable age, but we're still unable to find its website


Token has a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death

Price for DFSM

News for DFSM