Our Layer 1 blockchain built specifically to be scalable and efficient with decentralised media in mind will change the way everyday users interact with the blockchain.
Our social media dApp is designed to provide our users with a familiar interface while incorporating blockchain features that traditional platforms cannot offer. DeMe's dApp will redistribute ad revenue algorithmically via smart smart-contract to our users and content creators rewarding them for quality content and interaction with content and in real-time. This gives our community greater ownership and sovereignty over their content.
DeMeToken.addLiquidity(uint256,uint256) (#1343-1357) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
DeMeToken.withdrawalToken(address,uint256,address) (#1418-1422) ignores return value by token.transfer(to,_amount) (#1420)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in DeMeToken._transfer(address,address,uint256) (#1214-1288):
External calls:
- swapAndLiquify(contractTokenBalance) (#1251)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1251)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- _liquidityFee = _buyLiquidityFee (#1276)
- _liquidityFee = _sellLiquidityFee (#1283)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _liquidityFee = 0 (#1199)
- _marketingFee = _buyMarketingFee (#1275)
- _marketingFee = _sellMarketingFee (#1282)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _marketingFee = 0 (#1198)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1165)
- _rOwned[address(this)] = _rOwned[address(this)].add(rdev) (#1173)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1387)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1377)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1399)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1378)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1014)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1400)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1389)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _rTotal = _rTotal.sub(rFee) (#1118)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1167)
- _tOwned[address(this)] = _tOwned[address(this)].add(tdev) (#1175)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1398)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1013)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1388)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1015)
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. 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)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
DeMeToken.withdrawalBNB(uint256,address).to (#1424) lacks a zero-check on :
- address(to).transfer(_amount) (#1426)
Check that the address is not zero.
Additional information: link
Address.isContract(address) (#198-208) uses assembly
- INLINE ASM (#204-206)
Address.verifyCallResult(bool,bytes,string) (#367-387) uses assembly
- INLINE ASM (#379-382)
Do not use evm assembly.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#685) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#686)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1012)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._getTValues(uint256).tTransferAmount (#1132)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1397)
Variable DeMeToken._transferStandard(address,address,uint256).rTransferAmount (#1376) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1386) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken.reflectionFromToken(uint256,bool).rTransferAmount (#978) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1012) is too similar to DeMeToken._transferStandard(address,address,uint256).tTransferAmount (#1376)
Variable DeMeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1397) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Variable DeMeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to DeMeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1386)
Variable DeMeToken._getValues(uint256).rTransferAmount (#1124) is too similar to DeMeToken._getValues(uint256).tTransferAmount (#1123)
Prevent variables from having similar names.
Additional information: link
DeMeToken.slitherConstructorVariables() (#814-1434) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000 * 10 ** 9 (#870)
DeMeToken.slitherConstructorConstantVariables() (#814-1434) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 9 (#833)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#157-159)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#165-168)
excludeFromReward(address) should be declared external:
- DeMeToken.excludeFromReward(address) (#989-996)
Use the external attribute for functions never called from the contract.
Additional information: link
DeMeToken.addLiquidity(uint256,uint256) (#1343-1357) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Ensure that all the return values of the function calls are used.
Additional information: link
DeMeToken.allowance(address,address).owner (#939) shadows:
- Ownable.owner() (#138-140) (function)
DeMeToken._approve(address,address,uint256).owner (#1206) shadows:
- Ownable.owner() (#138-140) (function)
Rename the local variables that shadow another component.
Additional information: link
DeMeToken.setBuyTaxFeePercent(uint256) (#1031-1034) should emit an event for:
- _buyTaxFee = taxFee (#1032)
DeMeToken.setBuyMarketingFeePercent(uint256) (#1036-1039) should emit an event for:
- _buyMarketingFee = marketingFee (#1037)
DeMeToken.setBuyLiquidityFeePercent(uint256) (#1041-1044) should emit an event for:
- _buyLiquidityFee = liquidityFee (#1042)
DeMeToken.setSellTaxFeePercent(uint256) (#1046-1049) should emit an event for:
- _sellTaxFee = taxFee (#1047)
DeMeToken.setSellMarketingFeePercent(uint256) (#1051-1054) should emit an event for:
- _sellMarketingFee = marketingFee (#1052)
DeMeToken.setSellLiquidityFeePercent(uint256) (#1056-1059) should emit an event for:
- _sellLiquidityFee = liquidityFee (#1057)
DeMeToken.setMaxTxPercent(uint256) (#1061-1065) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1062-1064)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DeMeToken._setRouter(address) (#1100-1108):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1104)
State variables written after the call(s):
- setIsPair(uniswapV2Pair,true) (#1106)
- _isPair[_address] = value (#1408)
- uniswapV2Router = _uniswapV2Router (#1105)
Reentrancy in DeMeToken._transfer(address,address,uint256) (#1214-1288):
External calls:
- swapAndLiquify(contractTokenBalance) (#1251)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1251)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1119)
- _taxFee = _buyTaxFee (#1274)
- _taxFee = _sellTaxFee (#1281)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _taxFee = 0 (#1197)
Reentrancy in DeMeToken.constructor() (#896-911):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#900)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1104)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#905)
- _isExcludedFromFee[_marketingWallet] = true (#906)
- _isExcludedFromFee[_liqWalletAddress] = true (#907)
- _isExcludedFromFee[address(this)] = true (#908)
- _liqWalletAddress = 0x60E5384F9bdC3Fc33f3F4A35c841a32B4b10cfee (#902)
- _marketingWallet = address(0xDd155CC31F70B31630a3fA8041875c21DB14Fc54) (#901)
Reentrancy in DeMeToken.swapAndLiquify(uint256) (#1290-1323):
External calls:
- swapTokensForEth(half) (#1307)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1313)
- _allowances[owner][spender] = amount (#1210)
Reentrancy in DeMeToken.swapAndLiquify(uint256) (#1290-1323):
External calls:
- swapTokensForEth(half) (#1307)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- swapTokensForEth(tokensForMarketing) (#1318)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- swapTokensForEth(tokensForMarketing) (#1318)
- _allowances[owner][spender] = amount (#1210)
Reentrancy in DeMeToken.transferFrom(address,address,uint256) (#948-952):
External calls:
- _transfer(sender,recipient,amount) (#949)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- _transfer(sender,recipient,amount) (#949)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#950)
- _allowances[owner][spender] = amount (#1210)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DeMeToken._setRouter(address) (#1100-1108):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1104)
Event emitted after the call(s):
- RouterSet(_router) (#1107)
- SetIsPair(_address,value) (#1409)
- setIsPair(uniswapV2Pair,true) (#1106)
Reentrancy in DeMeToken._transfer(address,address,uint256) (#1214-1288):
External calls:
- swapAndLiquify(contractTokenBalance) (#1251)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1251)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1382)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1404)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1393)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1020)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
Reentrancy in DeMeToken.addLiquidity(uint256,uint256) (#1343-1357):
External calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Event emitted after the call(s):
- Transfer(address(this),uniswapV2Pair,tokenAmount) (#1356)
Reentrancy in DeMeToken.constructor() (#896-911):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#900)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1104)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#910)
Reentrancy in DeMeToken.swapAndLiquify(uint256) (#1290-1323):
External calls:
- swapTokensForEth(half) (#1307)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- addLiquidity(otherHalf,newBalance) (#1313)
- SwapAndLiquify(half,newBalance,otherHalf) (#1315)
- Transfer(address(this),uniswapV2Pair,tokenAmount) (#1356)
- addLiquidity(otherHalf,newBalance) (#1313)
Reentrancy in DeMeToken.swapAndLiquify(uint256) (#1290-1323):
External calls:
- swapTokensForEth(half) (#1307)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- swapTokensForEth(tokensForMarketing) (#1318)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1313)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- swapTokensForEth(tokensForMarketing) (#1318)
Reentrancy in DeMeToken.transferFrom(address,address,uint256) (#948-952):
External calls:
- _transfer(sender,recipient,amount) (#949)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1334-1340)
External calls sending eth:
- _transfer(sender,recipient,amount) (#949)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#950)
Reentrancy in DeMeToken.withdrawalToken(address,uint256,address) (#1418-1422):
External calls:
- token.transfer(to,_amount) (#1420)
Event emitted after the call(s):
- WithdrawalToken(_tokenAddr,_amount,to) (#1421)
Apply the check-effects-interactions pattern.
Additional information: link
DeMeToken.includeInReward(address) (#998-1009) has costly operations inside a loop:
- _excluded.pop() (#1005)
Use a local variable to hold the loop computation result.
Additional information: link
Address.functionCall(address,bytes) (#251-253) is never used and should be removed
Address.functionCall(address,bytes,string) (#261-267) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#280-286) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#294-305) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#340-342) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#350-359) is never used and should be removed
Address.functionStaticCall(address,bytes) (#313-315) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#323-332) is never used and should be removed
Address.sendValue(address,uint256) (#226-231) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#367-387) is never used and should be removed
Context._msgData() (#106-108) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#573-582) is never used and should be removed
SafeMath.mod(uint256,uint256) (#533-535) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#599-608) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#404-410) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#446-451) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#458-463) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#429-439) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#417-422) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.14 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.14 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#226-231):
- (success) = recipient.call{value: amount}() (#229)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#294-305):
- (success,returndata) = target.call{value: value}(data) (#303)
Low level call in Address.functionStaticCall(address,bytes,string) (#323-332):
- (success,returndata) = target.staticcall(data) (#330)
Low level call in Address.functionDelegateCall(address,bytes,string) (#350-359):
- (success,returndata) = target.delegatecall(data) (#357)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#642) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#643) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#660) is not in mixedCase
Function IUniswapV2Router01.WETH() (#680) is not in mixedCase
Event DeMeTokensetMarketingWalletAddress(address) (#885) is not in CapWords
Parameter DeMeToken.setSwapAndLiquifyEnabled(bool)._enabled (#1067) is not in mixedCase
Parameter DeMeToken.setSwapEnabled(bool)._enabled (#1072) is not in mixedCase
Parameter DeMeToken.setMarketingWallet(address)._address (#1077) is not in mixedCase
Parameter DeMeToken.setLiqWalletAddress(address)._address (#1083) is not in mixedCase
Parameter DeMeToken.setNumTokensSellToAddToLiquidity(uint256)._amount (#1089) is not in mixedCase
Parameter DeMeToken.setContractFeesEnabled(bool)._bool (#1095) is not in mixedCase
Parameter DeMeToken.setRouter(address)._router (#1110) is not in mixedCase
Parameter DeMeToken.calculateTaxFee(uint256)._amount (#1178) is not in mixedCase
Parameter DeMeToken.calculateMarketingFee(uint256)._amount (#1184) is not in mixedCase
Parameter DeMeToken.calculateLiquidityFee(uint256)._amount (#1190) is not in mixedCase
Parameter DeMeToken.setIsPair(address,bool)._address (#1407) is not in mixedCase
Parameter DeMeToken.setIsBanned(address,bool)._address (#1412) is not in mixedCase
Parameter DeMeToken.withdrawalToken(address,uint256,address)._tokenAddr (#1418) is not in mixedCase
Parameter DeMeToken.withdrawalToken(address,uint256,address)._amount (#1418) is not in mixedCase
Parameter DeMeToken.withdrawalBNB(uint256,address)._amount (#1424) is not in mixedCase
Variable DeMeToken._isPair (#827) is not in mixedCase
Variable DeMeToken._isBanned (#830) is not in mixedCase
Constant DeMeToken._tTotal (#833) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeMeToken._name (#837) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeMeToken._symbol (#838) is not in UPPER_CASE_WITH_UNDERSCORES
Constant DeMeToken._decimals (#839) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DeMeToken._marketingWallet (#842) is not in mixedCase
Variable DeMeToken._liqWalletAddress (#843) is not in mixedCase
Variable DeMeToken._buyTaxFee (#846) is not in mixedCase
Variable DeMeToken._buyMarketingFee (#847) is not in mixedCase
Variable DeMeToken._buyLiquidityFee (#848) is not in mixedCase
Variable DeMeToken._sellTaxFee (#851) is not in mixedCase
Variable DeMeToken._sellMarketingFee (#852) is not in mixedCase
Variable DeMeToken._sellLiquidityFee (#853) is not in mixedCase
Variable DeMeToken._contractFeesEnabled (#860) is not in mixedCase
Variable DeMeToken._maxTxAmount (#869) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in DeMeToken._transfer(address,address,uint256) (#1214-1288):
External calls:
- swapAndLiquify(contractTokenBalance) (#1251)
- recipient.transfer(amount) (#1431)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1251)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- _liquidityFee = _buyLiquidityFee (#1276)
- _liquidityFee = _sellLiquidityFee (#1283)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _liquidityFee = 0 (#1199)
- _marketingFee = _buyMarketingFee (#1275)
- _marketingFee = _sellMarketingFee (#1282)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _marketingFee = 0 (#1198)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1165)
- _rOwned[address(this)] = _rOwned[address(this)].add(rdev) (#1173)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1387)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1377)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1399)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1378)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1014)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1400)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1389)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _rTotal = _rTotal.sub(rFee) (#1118)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1119)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1167)
- _tOwned[address(this)] = _tOwned[address(this)].add(tdev) (#1175)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1398)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1013)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1388)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1015)
- _taxFee = _buyTaxFee (#1274)
- _taxFee = _sellTaxFee (#1281)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- _taxFee = 0 (#1197)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1382)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1404)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1393)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
- Transfer(sender,recipient,tTransferAmount) (#1020)
- _tokenTransfer(from,to,amount,takeFee) (#1287)
Reentrancy in DeMeToken.transferFrom(address,address,uint256) (#948-952):
External calls:
- _transfer(sender,recipient,amount) (#949)
- recipient.transfer(amount) (#1431)
External calls sending eth:
- _transfer(sender,recipient,amount) (#949)
- recipient.transfer(amount) (#1431)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (#1348-1355)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#950)
- _allowances[owner][spender] = amount (#1210)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1211)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#950)
Reentrancy in DeMeToken.withdrawalBNB(uint256,address) (#1424-1428):
External calls:
- address(to).transfer(_amount) (#1426)
Event emitted after the call(s):
- WithdrawalBNB(_amount,to) (#1427)
Apply the check-effects-interactions pattern.
Additional information: link
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
Unable to find token on CoinMarketCap
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Discord account