MyTeamFinance Token Logo

MYF [MyTeamFinance] Token

About MYF

Listings

Token 2 years

MyteamFinance is a decentralized token made for supporting sport and e-sport in Myteamcoin ecosystem.

Social

Laser Scorebeta Last Audit: 1 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

MyTeamFinance.addLiquidity(uint256,uint256) (#3020-3033) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3025-3032)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MyTeamFinance._transfer(address,address,uint256) (#2859-2947):
External calls:
- swapAndSendToFee(marketingTokens) (#2892)
- IERC20(marketingToken).transfer(_marketingWalletAddress,newBalance) (#2958)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3011-3017)
- swapAndLiquify(swapTokens) (#2897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3025-3032)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#2993-2999)
- swapAndSendDividends(sellTokens) (#2900)
- success = IERC20(rewardToken).transfer(address(dividendTracker),dividends) (#3038-3041)
- dividendTracker.distributeCAKEDividends(dividends) (#3044)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#3011-3017)
External calls sending eth:
- swapAndLiquify(swapTokens) (#2897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3025-3032)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2919)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1413)
- _balances[recipient] = _balances[recipient].add(amount) (#1414)
- super._transfer(from,to,amount) (#2922)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#1413)
- _balances[recipient] = _balances[recipient].add(amount) (#1414)
- swapping = false (#2902)
Apply the check-effects-interactions pattern.

Additional information: link

OwnableUpgradeable.__gap (#1654) shadows:
- ContextUpgradeable.__gap (#892)
Remove the state variable shadowing.

Additional information: link

MyTeamFinance.swapAndSendToFee(uint256) (#2949-2959) ignores return value by IERC20(marketingToken).transfer(_marketingWalletAddress,newBalance) (#2958)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


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.

Reentrancy in MyTeamFinance.updateDividendTracker(address) (#2641-2664):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#2656)
- newDividendTracker.excludeFromDividends(address(this)) (#2657)
- newDividendTracker.excludeFromDividends(owner()) (#2658)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#2659)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#2663)
Apply the check-effects-interactions pattern.

Additional information: link

MyTeamFinance._transfer(address,address,uint256).iterations (#2933) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

MyTeamFinance.addLiquidity(uint256,uint256) (#3020-3033) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#3025-3032)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#2418) shadows:
- OwnableUpgradeable._owner (#1600) (state variable)
Rename the local variables that shadow another component.

Additional information: link

MyTeamFinance.setMarketingFee(uint256) (#2713-2716) should emit an event for:
- marketingFee = value (#2714)
- totalFees = tokenRewardsFee.add(liquidityFee).add(marketingFee) (#2715)
Emit an event for critical parameter changes.

Additional information: link

MyTeamFinance.setMarketingWallet(address).wallet (#2699) lacks a zero-check on :
- _marketingWalletAddress = wallet (#2700)
Check that the address is not zero.

Additional information: link

Variable 'MyTeamFinance._transfer(address,address,uint256).claims (#2934)' in MyTeamFinance._transfer(address,address,uint256) (#2859-2947) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2937-2944)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in MyTeamFinance.updateUniswapV2Router(address) (#2666-2676):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#2673-2674)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#2675)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MyTeamFinance.updateDividendTracker(address) (#2641-2664):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#2656)
- newDividendTracker.excludeFromDividends(address(this)) (#2657)
- newDividendTracker.excludeFromDividends(owner()) (#2658)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#2659)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#2661)
Apply the check-effects-interactions pattern.

Additional information: link

BABYTOKENDividendTracker.canAutoClaim(uint256) (#3205-3211) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#3206)
- block.timestamp.sub(lastClaimTime) >= claimWait (#3210)
Avoid relying on block.timestamp.

Additional information: link

Clones.predictDeterministicAddress(address,bytes32,address) (#1716-1728) uses assembly
- INLINE ASM (#1718-1727)
Do not use evm assembly.

Additional information: link

SafeMathUpgradeable.trySub(uint256,uint256) (#1011-1014) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in AddressUpgradeable.functionStaticCall(address,bytes,string) (#774-780):
- (success,returndata) = target.staticcall(data) (#778)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BABYTOKENDividendTracker.getAccount(address)._account (#3133) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#889)" inContextUpgradeable (#877-893)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#2358) is too similar to BABYTOKENDividendTracker.getAccount(address).withdrawableDividends (#3140)
Prevent variables from having similar names.

Additional information: link

MyTeamFinance.slitherConstructorVariables() (#2493-3048) uses literals with too many digits:
- gasForProcessing = 300000 (#2520)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OwnableUpgradeable.__gap (#1654) is never used in BABYTOKENDividendTracker (#3050-3300)
Remove unused state variables.

Additional information: link

process(uint256) should be declared external:
- BABYTOKENDividendTracker.process(uint256) (#3230-3282)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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/project description on the website or on BscScan, CoinMarketCap


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 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 CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for MYF