Meta Sport Token Logo

METASPORT [Meta Sport] Token

About METASPORT

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 15 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380):
External calls:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (METASPORT.sol#420-426)
- address(marketingWallet).sendValue(marketingAmt) (METASPORT.sol#392)
- address(devWallet).sendValue(devAmt) (METASPORT.sol#398)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (METASPORT.sol#361)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- super._transfer(from,address(0xdead),burnAmt) (METASPORT.sol#362)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
- super._transfer(from,to,amount) (METASPORT.sol#365)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#220)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#221)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#87-103):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#92)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (DividendPayingToken.sol#95)
Apply the check-effects-interactions pattern.

Additional information: link

METASPORT.rescueBEP20Tokens(address) (METASPORT.sol#199-201) ignores return value by IERC20(tokenAddress).transfer(msg.sender,IERC20(tokenAddress).balanceOf(address(this))) (METASPORT.sol#200)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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 METASPORT.updateDividendTracker(address) (METASPORT.sol#126-141):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (METASPORT.sol#133)
- newDividendTracker.excludeFromDividends(address(this)) (METASPORT.sol#134)
- newDividendTracker.excludeFromDividends(owner()) (METASPORT.sol#135)
- newDividendTracker.excludeFromDividends(address(router)) (METASPORT.sol#136)
State variables written after the call(s):
- dividendTracker = newDividendTracker (METASPORT.sol#140)
Apply the check-effects-interactions pattern.

Additional information: link

METASPORT._transfer(address,address,uint256).iterations (METASPORT.sol#373) is a local variable never initialized
METASPORT._transfer(address,address,uint256).claims (METASPORT.sol#373) is a local variable never initialized
METASPORT._transfer(address,address,uint256).lastProcessedIndex (METASPORT.sol#373) 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

METASPORT.claim() (METASPORT.sol#270-272) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (METASPORT.sol#271)
METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380) ignores return value by dividendTracker.process(gas) (METASPORT.sol#373-378)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (DividendPayingToken.sol#44) shadows:
- ERC20._name (ERC20.sol#42) (state variable)
DividendPayingToken.constructor(string,string)._symbol (DividendPayingToken.sol#44) shadows:
- ERC20._symbol (ERC20.sol#43) (state variable)
Rename the local variables that shadow another component.

Additional information: link

METASPORT.setSwapTokensAtAmount(uint256) (METASPORT.sol#164-166) should emit an event for:
- swapTokensAtAmount = amount * 10 ** 18 (METASPORT.sol#165)
METASPORT.setMaxSellPerDay(uint256) (METASPORT.sol#182-184) should emit an event for:
- maxSellPerDay = amount * 10 ** 18 (METASPORT.sol#183)
METASPORT.setBurnFee(uint256) (METASPORT.sol#282-284) should emit an event for:
- burnFee = amount (METASPORT.sol#283)
METASPORT.setMarketingFee(uint256) (METASPORT.sol#286-289) should emit an event for:
- marketingFee = newFee (METASPORT.sol#287)
- totalFees = BNBRewardsFee + marketingFee + devFee (METASPORT.sol#288)
METASPORT.setBNBRewardsFee(uint256) (METASPORT.sol#291-294) should emit an event for:
- BNBRewardsFee = newFee (METASPORT.sol#292)
- totalFees = BNBRewardsFee + marketingFee + devFee (METASPORT.sol#293)
METASPORT.setDevFee(uint256) (METASPORT.sol#296-299) should emit an event for:
- devFee = newFee (METASPORT.sol#297)
- totalFees = BNBRewardsFee + marketingFee + devFee (METASPORT.sol#298)
Emit an event for critical parameter changes.

Additional information: link

METASPORT.setMarketingWallet(address).newWallet (METASPORT.sol#301) lacks a zero-check on :
- marketingWallet = newWallet (METASPORT.sol#302)
METASPORT.setDevWallet(address).newWallet (METASPORT.sol#305) lacks a zero-check on :
- devWallet = newWallet (METASPORT.sol#306)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#87-103) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#92)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'METASPORT._transfer(address,address,uint256).lastProcessedIndex (METASPORT.sol#373)' in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (METASPORT.sol#374)
Variable 'METASPORT._transfer(address,address,uint256).claims (METASPORT.sol#373)' in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (METASPORT.sol#374)
Variable 'METASPORT._transfer(address,address,uint256).iterations (METASPORT.sol#373)' in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (METASPORT.sol#374)
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 METASPORT.constructor() (METASPORT.sol#87-119):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (METASPORT.sol#93-94)
State variables written after the call(s):
- pair = _pair (METASPORT.sol#97)
- router = _router (METASPORT.sol#96)
Reentrancy in METASPORT.constructor() (METASPORT.sol#87-119):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (METASPORT.sol#93-94)
- _setAutomatedMarketMakerPair(_pair,true) (METASPORT.sol#99)
- dividendTracker.excludeFromDividends(newPair) (METASPORT.sol#191)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (METASPORT.sol#102)
- dividendTracker.excludeFromDividends(address(this)) (METASPORT.sol#103)
- dividendTracker.excludeFromDividends(owner()) (METASPORT.sol#104)
- dividendTracker.excludeFromDividends(address(0xdead)) (METASPORT.sol#105)
- dividendTracker.excludeFromDividends(address(_router)) (METASPORT.sol#106)
State variables written after the call(s):
- _mint(owner(),500_000_000_000 * (10 ** 18)) (METASPORT.sol#118)
- _balances[account] = _balances[account].add(amount) (ERC20.sol#240)
- excludeFromFees(owner(),true) (METASPORT.sol#109)
- _isExcludedFromFees[account] = excluded (METASPORT.sol#151)
- excludeFromFees(address(this),true) (METASPORT.sol#110)
- _isExcludedFromFees[account] = excluded (METASPORT.sol#151)
- excludeFromFees(marketingWallet,true) (METASPORT.sol#111)
- _isExcludedFromFees[account] = excluded (METASPORT.sol#151)
- excludeFromFees(devWallet,true) (METASPORT.sol#112)
- _isExcludedFromFees[account] = excluded (METASPORT.sol#151)
- _mint(owner(),500_000_000_000 * (10 ** 18)) (METASPORT.sol#118)
- _totalSupply = _totalSupply.add(amount) (ERC20.sol#239)
Reentrancy in METASPORTDividendTracker.processAccount(address,bool) (METASPORT.sol#631-641):
External calls:
- amount = _withdrawDividendOfUser(account) (METASPORT.sol#632)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#92)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (METASPORT.sol#635)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in METASPORT._setAutomatedMarketMakerPair(address,bool) (METASPORT.sol#186-195):
External calls:
- dividendTracker.excludeFromDividends(newPair) (METASPORT.sol#191)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(newPair,value) (METASPORT.sol#194)
Reentrancy in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380):
External calls:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (METASPORT.sol#420-426)
- address(marketingWallet).sendValue(marketingAmt) (METASPORT.sol#392)
- address(devWallet).sendValue(devAmt) (METASPORT.sol#398)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (METASPORT.sol#365)
- Transfer(sender,recipient,amount) (ERC20.sol#222)
- super._transfer(from,address(0xdead),burnAmt) (METASPORT.sol#362)
- Transfer(sender,recipient,amount) (ERC20.sol#222)
- super._transfer(from,address(this),fees) (METASPORT.sol#361)
Reentrancy in METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380):
External calls:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (METASPORT.sol#420-426)
- address(marketingWallet).sendValue(marketingAmt) (METASPORT.sol#392)
- address(devWallet).sendValue(devAmt) (METASPORT.sol#398)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
- dividendTracker.setBalance(address(from),balanceOf(from)) (METASPORT.sol#367)
- dividendTracker.setBalance(address(to),balanceOf(to)) (METASPORT.sol#368)
- dividendTracker.process(gas) (METASPORT.sol#373-378)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount) (METASPORT.sol#346)
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (METASPORT.sol#374)
Reentrancy in METASPORT.constructor() (METASPORT.sol#87-119):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (METASPORT.sol#93-94)
- _setAutomatedMarketMakerPair(_pair,true) (METASPORT.sol#99)
- dividendTracker.excludeFromDividends(newPair) (METASPORT.sol#191)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(newPair,value) (METASPORT.sol#194)
- _setAutomatedMarketMakerPair(_pair,true) (METASPORT.sol#99)
Reentrancy in METASPORT.constructor() (METASPORT.sol#87-119):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (METASPORT.sol#93-94)
- _setAutomatedMarketMakerPair(_pair,true) (METASPORT.sol#99)
- dividendTracker.excludeFromDividends(newPair) (METASPORT.sol#191)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (METASPORT.sol#102)
- dividendTracker.excludeFromDividends(address(this)) (METASPORT.sol#103)
- dividendTracker.excludeFromDividends(owner()) (METASPORT.sol#104)
- dividendTracker.excludeFromDividends(address(0xdead)) (METASPORT.sol#105)
- dividendTracker.excludeFromDividends(address(_router)) (METASPORT.sol#106)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (METASPORT.sol#153)
- excludeFromFees(address(this),true) (METASPORT.sol#110)
- ExcludeFromFees(account,excluded) (METASPORT.sol#153)
- excludeFromFees(owner(),true) (METASPORT.sol#109)
- ExcludeFromFees(account,excluded) (METASPORT.sol#153)
- excludeFromFees(devWallet,true) (METASPORT.sol#112)
- ExcludeFromFees(account,excluded) (METASPORT.sol#153)
- excludeFromFees(marketingWallet,true) (METASPORT.sol#111)
- Transfer(address(0),account,amount) (ERC20.sol#241)
- _mint(owner(),500_000_000_000 * (10 ** 18)) (METASPORT.sol#118)
Reentrancy in METASPORTDividendTracker.processAccount(address,bool) (METASPORT.sol#631-641):
External calls:
- amount = _withdrawDividendOfUser(account) (METASPORT.sol#632)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#92)
Event emitted after the call(s):
- Claim(account,amount,automatic) (METASPORT.sol#636)
Reentrancy in METASPORT.processDividendTracker(uint256) (METASPORT.sol#265-268):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (METASPORT.sol#266)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (METASPORT.sol#267)
Reentrancy in METASPORT.swapAndLiquify(uint256) (METASPORT.sol#382-408):
External calls:
- swapTokensForBNB(tokens) (METASPORT.sol#385)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (METASPORT.sol#420-426)
- address(marketingWallet).sendValue(marketingAmt) (METASPORT.sol#392)
- address(devWallet).sendValue(devAmt) (METASPORT.sol#398)
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
External calls sending eth:
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (METASPORT.sol#405)
Reentrancy in METASPORT.updateDividendTracker(address) (METASPORT.sol#126-141):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (METASPORT.sol#133)
- newDividendTracker.excludeFromDividends(address(this)) (METASPORT.sol#134)
- newDividendTracker.excludeFromDividends(owner()) (METASPORT.sol#135)
- newDividendTracker.excludeFromDividends(address(router)) (METASPORT.sol#136)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (METASPORT.sol#138)
Apply the check-effects-interactions pattern.

Additional information: link

METASPORT._transfer(address,address,uint256) (METASPORT.sol#317-380) uses timestamp for comparisons
Dangerous comparisons:
- newCycle = block.timestamp - userLastSell[from].lastSellTime >= 86400 (METASPORT.sol#326)
METASPORTDividendTracker.getAccount(address) (METASPORT.sol#495-538) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (METASPORT.sol#535-537)
METASPORTDividendTracker.canAutoClaim(uint256) (METASPORT.sol#559-565) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (METASPORT.sol#560)
- block.timestamp.sub(lastClaimTime) >= claimWait (METASPORT.sol#564)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (Context.sol#20-23) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (DividendPayingToken.sol#143-149) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#90-92) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#106-112) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#142-145) is never used and should be removed
SafeMathInt.abs(int256) (SafeMath.sol#200-203) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMath.sol#171-177) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMath.sol#159-166) is never used and should be removed
Remove unused functions.

Additional information: link

METASPORT.totalFees (METASPORT.sol#37) is set pre-construction with a non-constant function or state variable:
- BNBRewardsFee + marketingFee + devFee
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

Low level call in DividendPayingToken._withdrawDividendOfUser(address) (DividendPayingToken.sol#87-103):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (DividendPayingToken.sol#92)
Low level call in Address.sendValue(address,uint256) (METASPORT.sol#12-17):
- (success) = recipient.call{value: amount}() (METASPORT.sol#15)
Low level call in METASPORT.swapAndLiquify(uint256) (METASPORT.sol#382-408):
- (success) = address(dividendTracker).call{value: dividends}() (METASPORT.sol#404)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter DividendPayingToken.dividendOf(address)._owner (DividendPayingToken.sol#109) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (DividendPayingToken.sol#116) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (DividendPayingToken.sol#123) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#133) is not in mixedCase
Constant DividendPayingToken.magnitude (DividendPayingToken.sol#24) is not in UPPER_CASE_WITH_UNDERSCORES
Function IRouter.WETH() (IDex.sol#16) is not in mixedCase
Variable METASPORT.BNBRewardsFee (METASPORT.sol#33) is not in mixedCase
Parameter METASPORTDividendTracker.getAccount(address)._account (METASPORT.sol#495) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-25)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#88) is too similar to METASPORTDividendTracker.getAccount(address).withdrawableDividends (METASPORT.sol#500)
Prevent variables from having similar names.

Additional information: link

METASPORT.updateGasForProcessing(uint256) (METASPORT.sol#208-213) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,METASPORT: gasForProcessing must be between 200,000 and 500,000) (METASPORT.sol#209)
METASPORT.slitherConstructorVariables() (METASPORT.sol#20-429) uses literals with too many digits:
- gasForProcessing = 300000 (METASPORT.sol#52)
METASPORTDividendTracker.getAccountAtIndex(uint256) (METASPORT.sol#540-557) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (METASPORT.sol#551)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMath.sol#154) is never used in SafeMathInt (SafeMath.sol#152-210)
Remove unused state variables.

Additional information: link

withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (DividendPayingToken.sol#81-83)
- METASPORTDividendTracker.withdrawDividend() (METASPORT.sol#460-462)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (DividendPayingToken.sol#109-111)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (DividendPayingToken.sol#123-125)
name() should be declared external:
- ERC20.name() (ERC20.sol#62-64)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#70-72)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#87-89)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#113-116)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#121-123)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#132-135)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#150-158)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#172-175)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#191-194)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (IterableMapping.sol#13-15)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (IterableMapping.sol#17-22)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (IterableMapping.sol#24-26)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (IterableMapping.sol#30-32)
updateDividendTracker(address) should be declared external:
- METASPORT.updateDividendTracker(address) (METASPORT.sol#126-141)
updaterouter(address) should be declared external:
- METASPORT.updaterouter(address) (METASPORT.sol#143-147)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- METASPORT.excludeMultipleAccountsFromFees(address[],bool) (METASPORT.sol#156-162)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- METASPORT.setAutomatedMarketMakerPair(address,bool) (METASPORT.sol#168-172)
updateGasForProcessing(uint256) should be declared external:
- METASPORT.updateGasForProcessing(uint256) (METASPORT.sol#208-213)
isExcludedFromFees(address) should be declared external:
- METASPORT.isExcludedFromFees(address) (METASPORT.sol#227-229)
withdrawableDividendOf(address) should be declared external:
- METASPORT.withdrawableDividendOf(address) (METASPORT.sol#231-233)
dividendTokenBalanceOf(address) should be declared external:
- METASPORT.dividendTokenBalanceOf(address) (METASPORT.sol#235-237)
getAccountAtIndex(uint256) should be declared external:
- METASPORTDividendTracker.getAccountAtIndex(uint256) (METASPORT.sol#540-557)
process(uint256) should be declared external:
- METASPORTDividendTracker.process(uint256) (METASPORT.sol#584-629)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#43-46)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#52-56)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for METASPORT