Welcome to BACTERIUM WORLD OFFICIAL, here will fight the most evil bacterium on the planet! Contract: 0xfd522e2ad13cf97ed89f32e9186bafac7288b1c6
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CoinManufactory.swapETHForTokens(uint256) (#1588-1605) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp + 300) (#1595-1602)
CoinManufactory.addLiquidity(uint256,uint256) (#1607-1620) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CoinManufactory._transfer(address,address,uint256) (#1419-1463):
External calls:
- swapTokens(contractTokenBalance) (#1452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1452)
- recipient.transfer(amount) (#1665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _balances[address(this)] = _balances[address(this)] + liquidity (#1524)
- _balances[from] = _balances[from] - amount (#1489)
- _balances[to] = _balances[to] + transferAmount (#1490)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _charityFee = _previousCharityFee (#1644)
- _charityFee = 0 (#1635)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _combinedLiquidityFee = _previousCombinedLiquidityFee (#1641)
- _combinedLiquidityFee = 0 (#1632)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _developerFee = _previousDeveloperFee (#1643)
- _developerFee = 0 (#1634)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _liquidityPoolFee = _previousLiquidityPoolFee (#1646)
- _liquidityPoolFee = 0 (#1637)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _marketingFee = _previousMarketingFee (#1642)
- _marketingFee = 0 (#1633)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Address.verifyCallResult(bool,bytes,string) (#350-370) uses assembly
- INLINE ASM (#362-365)
Do not use evm assembly.
Additional information: link
Pragma version^0.8.0 (#7) allows old versions
solc-0.8.12 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
CoinManufactory.slitherConstructorVariables() (#1210-1668) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#1220-1221)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CoinManufactory.constructor(string,string,uint256,uint8,address[5],uint256[5]) (#1269-1323) performs a multiplication on the result of a division:
-minimumTokensBeforeSwap = ((totalSupply_ * 10 ** decimals_) / 10000) * 2 (#1306)
CoinManufactory.swapTokens(uint256) (#1528-1566) performs a multiplication on the result of a division:
-liquidityBalance = (transferredBalance * ((_liquidityPoolFee * 10) / 2)) / ((_combinedLiquidityFee * 10) - ((_liquidityPoolFee * 10) / 2)) (#1555-1557)
Consider ordering multiplication before division.
Additional information: link
CoinManufactory.addLiquidity(uint256,uint256) (#1607-1620) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
Ensure that all the return values of the function calls are used.
Additional information: link
CoinManufactory.setLiquidityPoolFee(uint256) (#1339-1346) should emit an event for:
- _liquidityPoolFee = liquidityPoolFee_ (#1340)
- _combinedLiquidityFee = _liquidityPoolFee + _marketingFee + _developerFee + _charityFee (#1341-1345)
CoinManufactory.setBurnFee(uint256) (#1348-1350) should emit an event for:
- _burnFee = burnFee_ (#1349)
CoinManufactory.setMarketingFee(uint256) (#1352-1359) should emit an event for:
- _marketingFee = marketingFee_ (#1353)
- _combinedLiquidityFee = _liquidityPoolFee + _marketingFee + _developerFee + _charityFee (#1354-1358)
CoinManufactory.setDeveloperFee(uint256) (#1361-1368) should emit an event for:
- _developerFee = developerFee_ (#1362)
- _combinedLiquidityFee = _liquidityPoolFee + _marketingFee + _developerFee + _charityFee (#1363-1367)
CoinManufactory.setCharityFee(uint256) (#1370-1377) should emit an event for:
- _charityFee = charityFee_ (#1371)
- _combinedLiquidityFee = _liquidityPoolFee + _marketingFee + _developerFee + _charityFee (#1372-1376)
CoinManufactory.setNumTokensSellToAddToLiquidity(uint256) (#1379-1384) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1383)
CoinManufactory.setMaxTxAmount(uint256) (#1403-1405) should emit an event for:
- _maxTxAmount = maxTxAmount (#1404)
Emit an event for critical parameter changes.
Additional information: link
CoinManufactory.setMarketingAddress(address)._marketingAddress (#1386) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1387)
CoinManufactory.setDeveloperAddress(address)._developerAddress (#1390) lacks a zero-check on :
- developerAddress = address(_developerAddress) (#1391)
CoinManufactory.setCharityAddress(address)._charityAddress (#1394) lacks a zero-check on :
- charityAddress = address(_charityAddress) (#1395)
Check that the address is not zero.
Additional information: link
Reentrancy in CoinManufactory._transfer(address,address,uint256) (#1419-1463):
External calls:
- swapTokens(contractTokenBalance) (#1452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1452)
- recipient.transfer(amount) (#1665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _burnFee = _previousBurnFee (#1645)
- _burnFee = 0 (#1636)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousBurnFee = _burnFee (#1629)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousCharityFee = _charityFee (#1628)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousCombinedLiquidityFee = _combinedLiquidityFee (#1625)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousDeveloperFee = _developerFee (#1627)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousLiquidityPoolFee = _liquidityPoolFee (#1630)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousMarketingFee = _marketingFee (#1626)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _totalSupply = _totalSupply - burnFee (#1517)
Reentrancy in CoinManufactory.constructor(string,string,uint256,uint8,address[5],uint256[5]) (#1269-1323):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1309-1310)
State variables written after the call(s):
- _mint(_msgSender(),totalSupply_ * 10 ** decimals()) (#1321)
- _balances[account] += amount (#760)
- _isExcludedFromFee[owner()] = true (#1315)
- _isExcludedFromFee[marketingAddress] = true (#1316)
- _isExcludedFromFee[developerAddress] = true (#1317)
- _isExcludedFromFee[charityAddress] = true (#1318)
- _isExcludedFromFee[address(this)] = true (#1319)
- _mint(_msgSender(),totalSupply_ * 10 ** decimals()) (#1321)
- _totalSupply += amount (#759)
- uniswapV2Router = _uniswapV2Router (#1312)
Reentrancy in CoinManufactory.swapTokens(uint256) (#1528-1566):
External calls:
- swapTokensForEth(contractTokenBalance - otherLiquidityHalf) (#1535)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
External calls sending eth:
- transferToAddressETH(marketingAddress,((transferredBalance) * (_marketingFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1539-1543)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(developerAddress,((transferredBalance) * (_developerFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1544-1548)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(charityAddress,((transferredBalance) * (_charityFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1549-1553)
- recipient.transfer(amount) (#1665)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
State variables written after the call(s):
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- _allowances[owner][spender] = amount (#815)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CoinManufactory._transfer(address,address,uint256) (#1419-1463):
External calls:
- swapTokens(contractTokenBalance) (#1452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1452)
- recipient.transfer(amount) (#1665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
Event emitted after the call(s):
- Transfer(sender,address(this),amount) (#1525)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- Transfer(sender,address(0),burnFee) (#1518)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- Transfer(from,to,transferAmount) (#1495)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
Reentrancy in CoinManufactory.constructor(string,string,uint256,uint8,address[5],uint256[5]) (#1269-1323):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1309-1310)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#761)
- _mint(_msgSender(),totalSupply_ * 10 ** decimals()) (#1321)
Reentrancy in CoinManufactory.swapETHForTokens(uint256) (#1588-1605):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp + 300) (#1595-1602)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#1604)
Reentrancy in CoinManufactory.swapTokens(uint256) (#1528-1566):
External calls:
- swapTokensForEth(contractTokenBalance - otherLiquidityHalf) (#1535)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
External calls sending eth:
- transferToAddressETH(marketingAddress,((transferredBalance) * (_marketingFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1539-1543)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(developerAddress,((transferredBalance) * (_developerFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1544-1548)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(charityAddress,((transferredBalance) * (_charityFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1549-1553)
- recipient.transfer(amount) (#1665)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- SwapAndLiquify(liquidityHalf,liquidityBalance,otherLiquidityHalf) (#1561-1565)
Reentrancy in CoinManufactory.swapTokensForEth(uint256) (#1568-1586):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1577-1583)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#1585)
Apply the check-effects-interactions pattern.
Additional information: link
Address.functionCall(address,bytes) (#203-208) is never used and should be removed
Address.functionCall(address,bytes,string) (#216-222) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#235-247) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#255-271) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#315-325) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#333-342) is never used and should be removed
Address.functionStaticCall(address,bytes) (#279-290) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#298-307) is never used and should be removed
Address.isContract(address) (#148-154) is never used and should be removed
Address.sendValue(address,uint256) (#172-183) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#350-370) is never used and should be removed
CoinManufactory.swapETHForTokens(uint256) (#1588-1605) is never used and should be removed
Context._msgData() (#388-390) is never used and should be removed
ERC20._burn(address,uint256) (#777-792) is never used and should be removed
ERC20._transfer(address,address,uint256) (#720-743) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#172-183):
- (success) = recipient.call{value: amount}() (#178)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#255-271):
- (success,returndata) = target.call{value: value}(data) (#267-269)
Low level call in Address.functionStaticCall(address,bytes,string) (#298-307):
- (success,returndata) = target.staticcall(data) (#305)
Low level call in Address.functionDelegateCall(address,bytes,string) (#333-342):
- (success,returndata) = target.delegatecall(data) (#340)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable ERC20._balances (#495) is not in mixedCase
Variable ERC20._totalSupply (#499) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#927) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#929) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#959) is not in mixedCase
Function IUniswapV2Router01.WETH() (#1005) is not in mixedCase
Parameter CoinManufactory.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#1379) is not in mixedCase
Parameter CoinManufactory.setMarketingAddress(address)._marketingAddress (#1386) is not in mixedCase
Parameter CoinManufactory.setDeveloperAddress(address)._developerAddress (#1390) is not in mixedCase
Parameter CoinManufactory.setCharityAddress(address)._charityAddress (#1394) is not in mixedCase
Parameter CoinManufactory.setSwapAndLiquifyEnabled(bool)._enabled (#1398) is not in mixedCase
Parameter CoinManufactory.presale(bool)._presale (#1649) is not in mixedCase
Variable CoinManufactory._marketingFee (#1226) is not in mixedCase
Variable CoinManufactory._developerFee (#1229) is not in mixedCase
Variable CoinManufactory._charityFee (#1232) is not in mixedCase
Variable CoinManufactory._burnFee (#1235) is not in mixedCase
Variable CoinManufactory._liquidityPoolFee (#1238) is not in mixedCase
Variable CoinManufactory._maxTxAmount (#1241) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in CoinManufactory._transfer(address,address,uint256) (#1419-1463):
External calls:
- swapTokens(contractTokenBalance) (#1452)
- recipient.transfer(amount) (#1665)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1452)
- recipient.transfer(amount) (#1665)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _balances[address(this)] = _balances[address(this)] + liquidity (#1524)
- _balances[from] = _balances[from] - amount (#1489)
- _balances[to] = _balances[to] + transferAmount (#1490)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _burnFee = _previousBurnFee (#1645)
- _burnFee = 0 (#1636)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _charityFee = _previousCharityFee (#1644)
- _charityFee = 0 (#1635)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _combinedLiquidityFee = _previousCombinedLiquidityFee (#1641)
- _combinedLiquidityFee = 0 (#1632)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _developerFee = _previousDeveloperFee (#1643)
- _developerFee = 0 (#1634)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _liquidityPoolFee = _previousLiquidityPoolFee (#1646)
- _liquidityPoolFee = 0 (#1637)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _marketingFee = _previousMarketingFee (#1642)
- _marketingFee = 0 (#1633)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousBurnFee = _burnFee (#1629)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousCharityFee = _charityFee (#1628)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousCombinedLiquidityFee = _combinedLiquidityFee (#1625)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousDeveloperFee = _developerFee (#1627)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousLiquidityPoolFee = _liquidityPoolFee (#1630)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _previousMarketingFee = _marketingFee (#1626)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- _totalSupply = _totalSupply - burnFee (#1517)
Event emitted after the call(s):
- Transfer(sender,address(this),amount) (#1525)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- Transfer(sender,address(0),burnFee) (#1518)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
- Transfer(from,to,transferAmount) (#1495)
- _tokenTransfer(sender,recipient,amount,takeFee) (#1462)
Reentrancy in CoinManufactory.swapTokens(uint256) (#1528-1566):
External calls:
- transferToAddressETH(marketingAddress,((transferredBalance) * (_marketingFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1539-1543)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(developerAddress,((transferredBalance) * (_developerFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1544-1548)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(charityAddress,((transferredBalance) * (_charityFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1549-1553)
- recipient.transfer(amount) (#1665)
External calls sending eth:
- transferToAddressETH(marketingAddress,((transferredBalance) * (_marketingFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1539-1543)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(developerAddress,((transferredBalance) * (_developerFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1544-1548)
- recipient.transfer(amount) (#1665)
- transferToAddressETH(charityAddress,((transferredBalance) * (_charityFee * 10)) / (_combinedLiquidityFee * 10 - ((_liquidityPoolFee * 10) / 2))) (#1549-1553)
- recipient.transfer(amount) (#1665)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1612-1619)
State variables written after the call(s):
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- _allowances[owner][spender] = amount (#815)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- addLiquidity(otherLiquidityHalf,liquidityBalance) (#1559)
- SwapAndLiquify(liquidityHalf,liquidityBalance,otherLiquidityHalf) (#1561-1565)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1010) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1011)
Variable CoinManufactory._charityFee (#1232) is too similar to CoinManufactory.setCharityFee(uint256).charityFee_ (#1370)
Variable CoinManufactory._developerFee (#1229) is too similar to CoinManufactory.setDeveloperFee(uint256).developerFee_ (#1361)
Variable CoinManufactory._liquidityPoolFee (#1238) is too similar to CoinManufactory.setLiquidityPoolFee(uint256).liquidityPoolFee_ (#1339)
Variable CoinManufactory._marketingFee (#1226) is too similar to CoinManufactory.setMarketingFee(uint256).marketingFee_ (#1352)
Variable ERC20._totalSupply (#499) is too similar to CoinManufactory.constructor(string,string,uint256,uint8,address[5],uint256[5]).totalSupply_ (#1272)
Prevent variables from having similar names.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#442-444)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#450-456)
name() should be declared external:
- ERC20.name() (#521-523)
symbol() should be declared external:
- ERC20.symbol() (#529-531)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#578-586)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#591-599)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#608-616)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#631-648)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#662-673)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#689-704)
minimumTokensBeforeSwapAmount() should be declared external:
- CoinManufactory.minimumTokensBeforeSwapAmount() (#1335-1337)
isExcludedFromFee(address) should be declared external:
- CoinManufactory.isExcludedFromFee(address) (#1407-1409)
excludeFromFee(address) should be declared external:
- CoinManufactory.excludeFromFee(address) (#1411-1413)
includeInFee(address) should be declared external:
- CoinManufactory.includeInFee(address) (#1415-1417)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
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
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts