Metaxa Token Logo

METAXA Token

About METAXA

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise caution before taking any action and DYOR.
white paper

METAXA , It is the protocol established on the Binance Smart Chain network and intended to be used for purchases within the universe that Metaxa is developing.

METAXA is the token that is used for:
*In the purchase of the areas on the map developed by Metaxa *For the purchase of 3D model houses and buildings that can be added to the developed platform. *For product/service purchases from sales platforms that connect with the developed API.

METAXA Protocol launched its mainnet on April 27, 2022 with 1 quadrillion METAXA tokens created at genesis. 65% liquidated and locked in the decentralized exchange for the community and 25% burned. The remaining 10% is reserved and locked for team and project support.

Laser Scorebeta Last Audit: 27 August 2022

report
Token seems to be a scam (type: honeypot scam).


Contract creator or owner is blacklisted for past scams

Contract locking ether found:
Contract Metaxa (#665-1184) has payable functions:
- Metaxa.receive() (#869)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Metaxa.takeMarketing(address,uint256,uint256,uint256) (#1073-1084) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1077)
Consider ordering multiplication before division.

Additional information: link

Address.isContract(address) (#271-280) uses assembly
- INLINE ASM (#278)
Address._functionCallWithValue(address,bytes,uint256,string) (#364-385) uses assembly
- INLINE ASM (#377-380)
Do not use evm assembly.

Additional information: link

Metaxa.allowance(address,address).owner (#781) shadows:
- Ownable.owner() (#419-421) (function)
Metaxa._approve(address,address,uint256).owner (#941) shadows:
- Ownable.owner() (#419-421) (function)
Rename the local variables that shadow another component.

Additional information: link

Metaxa.setMaxWalletTokend(uint256) (#1128-1130) should emit an event for:
- maxWalletToken = _maxToken * (10 ** 9) (#1129)
Metaxa.setMinimumTokensBeforeSwap(uint256) (#1132-1134) should emit an event for:
- minimumTokensBeforeSwap = newAmt * (10 ** 9) (#1133)
Metaxa.setMaxBuyTxAmount(uint256) (#1136-1139) should emit an event for:
- _maxBuyTxAmount = maxBuyTxAmount * (10 ** 9) (#1138)
Metaxa.setMaxSellTxAmount(uint256) (#1141-1144) should emit an event for:
- _maxSellTxAmount = maxSellTxAmount * (10 ** 9) (#1143)
Metaxa.setSellCooldownperiod(uint256) (#1179-1182) should emit an event for:
- sellCooldownperiod = _seconds (#1181)
Emit an event for critical parameter changes.

Additional information: link

Metaxa.setMarketingWallet(address).newWallet (#1117) lacks a zero-check on :
- marketingWallet = newWallet (#1118)
Check that the address is not zero.

Additional information: link

Reentrancy in Metaxa._transfer(address,address,uint256) (#949-984):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#977)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#996-1002)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#982)
- _marketingFee = 0 (#921)
- _marketingFee = marketingFee (#1123)
- _marketingFee = _previousMarketingFee (#926)
- _tokenTransfer(from,to,amount) (#982)
- _tFeeTotal = _tFeeTotal.add(tFee) (#873)
- _tokenTransfer(from,to,amount) (#982)
- _taxFee = 0 (#920)
- _taxFee = taxFee (#1122)
- _taxFee = _previousTaxFee (#925)
Reentrancy in Metaxa.constructor() (#739-753):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#744-745)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#749)
- _isExcludedFromFee[marketingWallet] = true (#750)
- _isExcludedFromFee[address(this)] = true (#751)
- uniswapV2Router = _uniswapV2Router (#747)
Reentrancy in Metaxa.transferFrom(address,address,uint256) (#790-794):
External calls:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#996-1002)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
- _allowances[owner][spender] = amount (#945)
Apply the check-effects-interactions pattern.

Additional information: link

Metaxa.checkForCoolDown(address,address) (#1166-1176) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(coolDownTimestamp < block.timestamp,Wait till one hour Cool Down Pd) (#1172)
Avoid relying on block.timestamp.

Additional information: link

Metaxa.includeInReward(address) (#845-856) has costly operations inside a loop:
- _excluded.pop() (#852)
Use a local variable to hold the loop computation result.

Additional information: link

Metaxa._rTotal (#682) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Metaxa._previousTaxFee (#693) is set pre-construction with a non-constant function or state variable:
- _taxFee
Metaxa._previousMarketingFee (#696) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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 Address.sendValue(address,uint256) (#298-304):
- (success) = recipient.call{value: amount}() (#302)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#364-385):
- (success,returndata) = target.call{value: weiValue}(data) (#368)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#491) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#492) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#508) is not in mixedCase
Function IUniswapV2Router01.WETH() (#529) is not in mixedCase
Parameter Metaxa.calculateTaxFee(uint256)._amount (#912) is not in mixedCase
Parameter Metaxa.swapTokensForEth(uint256,address)._to (#1005) is not in mixedCase
Parameter Metaxa.setMaxWalletTokend(uint256)._maxToken (#1128) is not in mixedCase
Parameter Metaxa.setSwapAndLiquifyEnabled(bool)._enabled (#1146) is not in mixedCase
Parameter Metaxa.setSellCooldownperiod(uint256)._seconds (#1179) is not in mixedCase
Variable Metaxa._taxFee (#692) is not in mixedCase
Variable Metaxa._marketingFee (#695) is not in mixedCase
Variable Metaxa._saleTaxFee (#699) is not in mixedCase
Variable Metaxa._saleMarketingFee (#700) is not in mixedCase
Variable Metaxa._maxBuyTxAmount (#710) is not in mixedCase
Variable Metaxa._maxSellTxAmount (#711) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#18)" inContext (#12-21)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Metaxa.slitherConstructorVariables() (#665-1184) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#681)
Metaxa.slitherConstructorVariables() (#665-1184) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#689)
Metaxa.slitherConstructorVariables() (#665-1184) uses literals with too many digits:
- minimumTokensBeforeSwap = 250000000 * 10 ** 9 (#709)
Metaxa.slitherConstructorVariables() (#665-1184) uses literals with too many digits:
- _maxSellTxAmount = 500000000 * 10 ** 9 (#711)
Metaxa.slitherConstructorVariables() (#665-1184) uses literals with too many digits:
- maxWalletToken = 5000000000 * (10 ** 9) (#712)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#402) is never used in Metaxa (#665-1184)
Ownable._lockTime (#403) is never used in Metaxa (#665-1184)
Remove unused state variables.

Additional information: link

Metaxa._decimals (#687) should be constant
Metaxa._name (#685) should be constant
Metaxa._saleMarketingFee (#700) should be constant
Metaxa._saleTaxFee (#699) should be constant
Metaxa._symbol (#686) should be constant
Metaxa._tTotal (#681) should be constant
Metaxa.deadAddress (#689) should be constant
Ownable._lockTime (#403) should be constant
Ownable._previousOwner (#402) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#438-441)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#447-451)
name() should be declared external:
- Metaxa.name() (#755-757)
symbol() should be declared external:
- Metaxa.symbol() (#759-761)
decimals() should be declared external:
- Metaxa.decimals() (#763-765)
totalSupply() should be declared external:
- Metaxa.totalSupply() (#767-769)
transfer(address,uint256) should be declared external:
- Metaxa.transfer(address,uint256) (#776-779)
approve(address,uint256) should be declared external:
- Metaxa.approve(address,uint256) (#785-788)
transferFrom(address,address,uint256) should be declared external:
- Metaxa.transferFrom(address,address,uint256) (#790-794)
increaseAllowance(address,uint256) should be declared external:
- Metaxa.increaseAllowance(address,uint256) (#796-799)
decreaseAllowance(address,uint256) should be declared external:
- Metaxa.decreaseAllowance(address,uint256) (#801-804)
isExcludedFromReward(address) should be declared external:
- Metaxa.isExcludedFromReward(address) (#806-808)
deliver(uint256) should be declared external:
- Metaxa.deliver(uint256) (#810-817)
reflectionFromToken(uint256,bool) should be declared external:
- Metaxa.reflectionFromToken(uint256,bool) (#819-828)
excludeFromReward(address) should be declared external:
- Metaxa.excludeFromReward(address) (#836-843)
isExcludedFromFee(address) should be declared external:
- Metaxa.isExcludedFromFee(address) (#929-931)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Metaxa.excludeMultipleAccountsFromFees(address[],bool) (#933-939)
excludeFromFee(address) should be declared external:
- Metaxa.excludeFromFee(address) (#1105-1107)
includeInFee(address) should be declared external:
- Metaxa.includeInFee(address) (#1109-1111)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Metaxa.setSwapAndLiquifyEnabled(bool) (#1146-1149)
Use the external attribute for functions never called from the contract.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#534) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#535)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._transferFromExcluded(address,address,uint256).tTransferAmount (#1096)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._getValues(uint256).rTransferAmount (#878) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa._transferStandard(address,address,uint256).rTransferAmount (#1065) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable Metaxa._transferFromExcluded(address,address,uint256).rTransferAmount (#1096) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._getValues(uint256).tTransferAmount (#877)
Variable Metaxa.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1073) is too similar to Metaxa._getTValues(uint256).tTransferAmount (#884)
Variable Metaxa.reflectionFromToken(uint256,bool).rTransferAmount (#825) is too similar to Metaxa._transferStandard(address,address,uint256).tTransferAmount (#1065)
Variable Metaxa._getRValues(uint256,uint256,uint256).rTransferAmount (#891) is too similar to Metaxa.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1073)
Variable Metaxa._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to Metaxa._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Prevent variables from having similar names.

Additional information: link

Reentrancy in Metaxa._transfer(address,address,uint256) (#949-984):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#977)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#996-1002)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#982)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1088)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#861)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1081)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1098)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1067)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1068)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1090)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1099)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#863)
- _tokenTransfer(from,to,amount) (#982)
- _rTotal = _rTotal.sub(rFee) (#872)
- _tokenTransfer(from,to,amount) (#982)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#860)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1097)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1089)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#862)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Metaxa._transfer(address,address,uint256) (#949-984):
External calls:
- swapTokensForBUSD(contractTokenBalance) (#977)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#996-1002)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1082)
- _tokenTransfer(from,to,amount) (#982)
- Transfer(sender,recipient,tTransferAmount) (#1092)
- _tokenTransfer(from,to,amount) (#982)
- Transfer(sender,recipient,tTransferAmount) (#1070)
- _tokenTransfer(from,to,amount) (#982)
- Transfer(sender,recipient,tTransferAmount) (#1101)
- _tokenTransfer(from,to,amount) (#982)
- Transfer(sender,recipient,tTransferAmount) (#865)
- _tokenTransfer(from,to,amount) (#982)
Reentrancy in Metaxa.constructor() (#739-753):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#744-745)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#752)
Reentrancy in Metaxa.transferFrom(address,address,uint256) (#790-794):
External calls:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingWallet,block.timestamp) (#996-1002)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#946)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#364-385) is never used and should be removed
Address.functionCall(address,bytes) (#324-326) is never used and should be removed
Address.functionCall(address,bytes,string) (#334-336) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#349-351) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#359-362) is never used and should be removed
Address.isContract(address) (#271-280) is never used and should be removed
Address.sendValue(address,uint256) (#298-304) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
Metaxa.swapTokensForEth(uint256,address) (#1005-1026) is never used and should be removed
SafeMath.mod(uint256,uint256) (#227-229) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#243-246) is never used and should be removed
Remove unused functions.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


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


Twitter account link seems to be invalid


Unable to find Discord account


Unable to crawl data from the website


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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

Price for METAXA