Welcome to $MINU, your newest friend on the Binance Smart Chain! Mastiff Inu Token is a BEP-20 token issued on the Binance Smart Chain (BSC) that focuses on the investor’s needs and wishes. With buying Mastiff Inu investors get the possibility of a high impact product with sustainability. Certainly, the self-evident need of honesty, sustainability, transparency, and openness is a core value and should be placed above everything else. This gives Mastiff Inu the direction needed to be successful on a highly capable network.
Projects built on the foundation of community involvement are the untamed wilderness of the future of this pack. As we move further away from rigid socialist structures and traditional mindsets, we come to discover new ways to solve problems and relate to one another.
A community is held together by hundreds, if not thousands, of interconnected moments. By studying those drawn to our project, we realized that true power doesn’t come from a single perspective, but from working together in together in harmony. With that thought fresh in our minds, we became Mastiff Inu
MastiffInu.addLiquidity(uint256,uint256) (#939-952) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MastiffInu._transfer(address,address,uint256) (#845-887):
External calls:
- swapAndLiquify(contractTokenBalance) (#878)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#931-937)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#878)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- address(_marketWallet).transfer(marketFee) (#913)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#886)
- _rOwned[to] = _rOwned[to].add(rAmount) (#823)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#990)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1018)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1033)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#991)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1004)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1020)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1034)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#886)
- _rTotal = _rTotal.sub(rFee) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#886)
- _tOwned[to] = _tOwned[to].add(tAmount) (#825)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1003)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1032)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1019)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1005)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
MastiffInu.addLiquidity(uint256,uint256) (#939-952) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
Ensure that all the return values of the function calls are used.
Additional information: link
MastiffInu._approve(address,address,uint256).owner (#837) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.
Additional information: link
MastiffInu.setMaxTxPercent(uint256) (#728-730) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#729)
Emit an event for critical parameter changes.
Additional information: link
MastiffInu.setUniswapPair(address).p (#772) lacks a zero-check on :
- _uniswapV2Pair = p (#773)
Check that the address is not zero.
Additional information: link
Reentrancy in MastiffInu.transferFrom(address,address,uint256) (#624-628):
External calls:
- _transfer(sender,recipient,amount) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#931-937)
External calls sending eth:
- _transfer(sender,recipient,amount) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- address(_marketWallet).transfer(marketFee) (#913)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#626)
- _allowances[owner][spender] = amount (#841)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MastiffInu.transferFrom(address,address,uint256) (#624-628):
External calls:
- _transfer(sender,recipient,amount) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#931-937)
External calls sending eth:
- _transfer(sender,recipient,amount) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- address(_marketWallet).transfer(marketFee) (#913)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#842)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#626)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#253-258) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (#255)
Avoid relying on block.timestamp.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#152-155) is never used and should be removed
Remove unused functions.
Additional information: link
MastiffInu._rTotal (#523) 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
solc-0.8.4 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
Variable MastiffInu._uniswapV2Pair (#550) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#182)" inContext (#176-185)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MastiffInu.transferFrom(address,address,uint256) (#624-628):
External calls:
- _transfer(sender,recipient,amount) (#625)
- address(_marketWallet).transfer(marketFee) (#913)
External calls sending eth:
- _transfer(sender,recipient,amount) (#625)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#944-951)
- address(_marketWallet).transfer(marketFee) (#913)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#626)
- _allowances[owner][spender] = amount (#841)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#842)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#626)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MastiffInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1030) is too similar to MastiffInu._transferToExcluded(address,address,uint256).tTransferAmount (#1014)
Prevent variables from having similar names.
Additional information: link
MastiffInu.slitherConstructorVariables() (#505-1042) uses literals with too many digits:
- _minTokenBalance = 100000000 * 10 ** 9 (#544)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MastiffInu._tTotal (#522) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- MastiffInu.isExcludedFromFee(address) (#833-835)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find 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
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account