Minions is built on a daily leisure activity of most people. We are the first project to bring efficiency to the concept of singing entertainment and earning money. Our team is building a fully-fledged digital music market (Web + Mobile) which helps users relax and earning more money. It is acting as a pioneer in the “Sing to Earn” segment.
MinionsInu.rescueForeignTokens(address,address,uint256) (#303-306) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#305)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
MinionsInu.sendETHToFee(uint256) (#293-296) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MinionsInu._transfer(address,address,uint256) (#240-277):
External calls:
- swapTokensForEth(contractTokenBalance) (#252)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#284-290)
External calls sending eth:
- sendETHToFee(address(this).balance) (#255)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#276)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#334)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#324)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#325)
- _tokenTransfer(from,to,amount) (#276)
- _rTotal = _rTotal.sub(rFee) (#338)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
Pragma version^0.8.15 (#6) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.15 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
MinionsInu._approve(address,address,uint256).owner (#233) shadows:
- Ownable.owner() (#104-106) (function)
MinionsInu.allowance(address,address).owner (#212) shadows:
- Ownable.owner() (#104-106) (function)
Rename the local variables that shadow another component.
Additional information: link
MinionsInu._rTotal (#136) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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
Ownable._previousOwner (#96) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
MinionsInu.constructor() (#166-180) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#179)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MinionsInu._tOwned (#130) is never used in MinionsInu (#126-434)
Ownable._previousOwner (#96) is never used in MinionsInu (#126-434)
Remove unused state variables.
Additional information: link
Ownable.transferOwnership(address).newOwner (#119) lacks a zero-check on :
- _owner = newOwner (#121)
MinionsInu.setNewCharitableAddress(address).address_char (#316) lacks a zero-check on :
- _charitableAddress = address_char (#318)
MinionsInu.setNewDevAddress(address).dev (#309) lacks a zero-check on :
- _developmentAddress = dev (#311)
Check that the address is not zero.
Additional information: link
Reentrancy in MinionsInu.transferFrom(address,address,uint256) (#221-225):
External calls:
- _transfer(sender,recipient,amount) (#222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#284-290)
External calls sending eth:
- _transfer(sender,recipient,amount) (#222)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#223)
- _allowances[owner][spender] = amount (#236)
Reentrancy in MinionsInu._transfer(address,address,uint256) (#240-277):
External calls:
- swapTokensForEth(contractTokenBalance) (#252)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#284-290)
External calls sending eth:
- sendETHToFee(address(this).balance) (#255)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (#260)
- _redisFee = _redisFeeOnSell (#265)
- _redisFee = 0 (#270)
- _tokenTransfer(from,to,amount) (#276)
- _tFeeTotal = _tFeeTotal.add(tFee) (#339)
- _taxFee = _taxFeeOnBuy (#261)
- _taxFee = _taxFeeOnSell (#266)
- _taxFee = 0 (#271)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MinionsInu._transfer(address,address,uint256) (#240-277):
External calls:
- swapTokensForEth(contractTokenBalance) (#252)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#284-290)
External calls sending eth:
- sendETHToFee(address(this).balance) (#255)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#328)
- _tokenTransfer(from,to,amount) (#276)
Reentrancy in MinionsInu.transferFrom(address,address,uint256) (#221-225):
External calls:
- _transfer(sender,recipient,amount) (#222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#284-290)
External calls sending eth:
- _transfer(sender,recipient,amount) (#222)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#237)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#223)
Apply the check-effects-interactions pattern.
Additional information: link
Event MinionsInudevAddressUpdated(address,address) (#308) is not in CapWords
Parameter MinionsInu.setNewCharitableAddress(address).address_char (#316) is not in mixedCase
Parameter MinionsInu.rescueForeignTokens(address,address,uint256)._tokenAddr (#303) is not in mixedCase
Parameter MinionsInu.toggleSwap(bool)._swapEnabled (#401) is not in mixedCase
Event MinionsInutokensRescued(address,address,uint256) (#302) is not in CapWords
Function IUniswapV2Router02.WETH() (#37) is not in mixedCase
Constant MinionsInu._name (#148) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter MinionsInu.rescueForeignTokens(address,address,uint256)._amount (#303) is not in mixedCase
Event MinionsInucharitableAddressUpdated(address,address) (#315) is not in CapWords
Constant MinionsInu._decimals (#150) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MinionsInu._symbol (#149) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter MinionsInu.rescueForeignTokens(address,address,uint256)._to (#303) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in MinionsInu._transfer(address,address,uint256) (#240-277):
External calls:
- sendETHToFee(address(this).balance) (#255)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#276)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#334)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#324)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#325)
- _tokenTransfer(from,to,amount) (#276)
- _rTotal = _rTotal.sub(rFee) (#338)
- _redisFee = _redisFeeOnBuy (#260)
- _redisFee = _redisFeeOnSell (#265)
- _redisFee = 0 (#270)
- _tokenTransfer(from,to,amount) (#276)
- _tFeeTotal = _tFeeTotal.add(tFee) (#339)
- _taxFee = _taxFeeOnBuy (#261)
- _taxFee = _taxFeeOnSell (#266)
- _taxFee = 0 (#271)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#328)
- _tokenTransfer(from,to,amount) (#276)
Reentrancy in MinionsInu.transferFrom(address,address,uint256) (#221-225):
External calls:
- _transfer(sender,recipient,amount) (#222)
- _developmentAddress.transfer(amount.div(2)) (#294)
- _charitableAddress.transfer(amount.div(2)) (#295)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#223)
- _allowances[owner][spender] = amount (#236)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#237)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#223)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MinionsInu._transferStandard(address,address,uint256).rTransferAmount (#323) is too similar to MinionsInu._getTValues(uint256,uint256,uint256).tTransferAmount (#354)
Variable MinionsInu._transferStandard(address,address,uint256).rTransferAmount (#323) is too similar to MinionsInu._getValues(uint256).tTransferAmount (#345)
Variable MinionsInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#362) is too similar to MinionsInu._getTValues(uint256,uint256,uint256).tTransferAmount (#354)
Variable MinionsInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#362) is too similar to MinionsInu._getValues(uint256).tTransferAmount (#345)
Variable MinionsInu._getValues(uint256).rTransferAmount (#347) is too similar to MinionsInu._getValues(uint256).tTransferAmount (#345)
Variable MinionsInu._transferStandard(address,address,uint256).rTransferAmount (#323) is too similar to MinionsInu._transferStandard(address,address,uint256).tTransferAmount (#323)
Variable MinionsInu._getValues(uint256).rTransferAmount (#347) is too similar to MinionsInu._getTValues(uint256,uint256,uint256).tTransferAmount (#354)
Variable MinionsInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#362) is too similar to MinionsInu._transferStandard(address,address,uint256).tTransferAmount (#323)
Variable MinionsInu._getValues(uint256).rTransferAmount (#347) is too similar to MinionsInu._transferStandard(address,address,uint256).tTransferAmount (#323)
Prevent variables from having similar names.
Additional information: link
symbol() should be declared external:
- MinionsInu.symbol() (#191-193)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#113-116)
allowance(address,address) should be declared external:
- MinionsInu.allowance(address,address) (#212-214)
setNewCharitableAddress(address) should be declared external:
- MinionsInu.setNewCharitableAddress(address) (#316-320)
transferFrom(address,address,uint256) should be declared external:
- MinionsInu.transferFrom(address,address,uint256) (#221-225)
rescueForeignTokens(address,address,uint256) should be declared external:
- MinionsInu.rescueForeignTokens(address,address,uint256) (#303-306)
setNewDevAddress(address) should be declared external:
- MinionsInu.setNewDevAddress(address) (#309-313)
approve(address,uint256) should be declared external:
- MinionsInu.approve(address,uint256) (#216-219)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#119-122)
toggleSwap(bool) should be declared external:
- MinionsInu.toggleSwap(bool) (#401-403)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- MinionsInu.excludeMultipleAccountsFromFees(address[],bool) (#405-409)
decimals() should be declared external:
- MinionsInu.decimals() (#195-197)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- MinionsInu.setFee(uint256,uint256,uint256,uint256) (#390-399)
totalSupply() should be declared external:
- MinionsInu.totalSupply() (#199-201)
transfer(address,uint256) should be declared external:
- MinionsInu.transfer(address,uint256) (#207-210)
name() should be declared external:
- MinionsInu.name() (#187-189)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume 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.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token has only one trading pair
Token is deployed only at one blockchain
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Last post in Twitter was more than 180 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account