MoonTrust Token Logo

MNTT [MoonTrust] Token

About MNTT

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: MNTT has swapped to MNTTBSC For more info click here
white paper

MoonTrust is a DeFi token built on BSC (Binance Smart Chain). Our App allows users to connect their software wallets to their mobile numbers and/or MoonTrust ID. Users are able to use our app to send crypto assets to their friends via mobile numbers or MoonTrust ID. The final confirmation will still be done by their native software wallets. Our app simplifies the complexity of ensuring the right public address is entered for users friends and family.

Laser Scorebeta Last Audit: 6 July 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

MoonTrustToken.setTaxMultiplicator(uint256) (#905-911) contains a tautology or contradiction:
- require(bool,string)((value >= 0 && value <= 200),Tax multiplicator must be between 0 and 200) (#906-909)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

MoonTrustToken.getPoolShare(address) (#789-802) performs a multiplication on the result of a division:
-sharePercent = (baseBalance.mul(ACCURACY)).div(totalSupply()) (#800)
-(poolBalance.mul(sharePercent)).div(ACCURACY) (#801)
MoonTrustToken.getPoolTransferShare(address,uint256) (#804-821) performs a multiplication on the result of a division:
-sharePercent = (transferAmount.mul(ACCURACY)).div(senderBalance) (#819)
-(senderPoolShare.mul(sharePercent)).div(ACCURACY) (#820)
MoonTrustToken.calculateTax(uint256) (#913-922) performs a multiplication on the result of a division:
-taxPercentage = (baseTax.mul(_taxMultiplicator)).div(100) (#918)
-tax = (value.mul(taxPercentage)).div(100) (#919)
Consider ordering multiplication before division.

Additional information: link

BEP20.constructor(string,string).name (#493) shadows:
- ERC20.name() (#168-170) (function)
BEP20.constructor(string,string).symbol (#493) shadows:
- ERC20.symbol() (#176-178) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonTrustToken.setTaxMultiplicator(uint256) (#905-911) should emit an event for:
- _taxMultiplicator = value (#910)
Emit an event for critical parameter changes.

Additional information: link

MoonTrustToken.constructor(uint256,address).liquidityPool (#757) lacks a zero-check on :
- _liquidityPool = liquidityPool (#764)
Check that the address is not zero.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.8.1', '^0.8.0']
- ^0.8.0 (#8)
- ^0.8.0 (#88)
- ^0.8.0 (#114)
- ^0.8.0 (#418)
- 0.8.1 (#487)
- ^0.8.0 (#507)
- 0.8.1 (#735)
Use one Solidity version.

Additional information: link

Context._msgData() (#105-108) is never used and should be removed
SafeMath.add(uint256,uint256) (#596-598) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#694-699) is never used and should be removed
SafeMath.mod(uint256,uint256) (#654-656) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#716-721) is never used and should be removed
SafeMath.sub(uint256,uint256) (#610-612) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#671-676) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#525-531) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#567-572) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#579-584) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#550-560) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#538-543) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#8) allows old versions
Pragma version^0.8.0 (#88) allows old versions
Pragma version^0.8.0 (#114) allows old versions
Pragma version^0.8.0 (#418) allows old versions
Pragma version0.8.1 (#487) allows old versions
Pragma version^0.8.0 (#507) allows old versions
Pragma version0.8.1 (#735) allows old versions
solc-0.8.1 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 ERC20._balances (#142) is not in mixedCase
Variable MoonTrustToken.ACCURACY (#747) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#106)" inContext (#100-109)
Remove redundant statements if they congest code but offer no value.

Additional information: link

MoonTrustToken.calculateBaseTax(uint256) (#924-948) uses literals with too many digits:
- value > 10000000000000000000000 && value <= 100000000000000000000000 (#932)
MoonTrustToken.calculateBaseTax(uint256) (#924-948) uses literals with too many digits:
- value > 100000000000000000000000 && value <= 500000000000000000000000 (#935)
MoonTrustToken.calculateBaseTax(uint256) (#924-948) uses literals with too many digits:
- value > 500000000000000000000000 && value <= 1000000000000000000000000 (#938)
MoonTrustToken.calculateBaseTax(uint256) (#924-948) uses literals with too many digits:
- value > 1000000000000000000000000 && value <= 250000000000000000000000000 (#941)
MoonTrustToken.calculateBaseTax(uint256) (#924-948) uses literals with too many digits:
- value > 250000000000000000000000000 && value <= 1000000000000000000000000000 (#944)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MoonTrustToken._holderToKnown (#754) is never used in MoonTrustToken (#737-950)
Remove unused state variables.

Additional information: link

MoonTrustToken.ACCURACY (#747) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#168-170)
symbol() should be declared external:
- ERC20.symbol() (#176-178)
decimals() should be declared external:
- ERC20.decimals() (#193-195)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#220-223)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#228-230)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#239-242)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#257-265)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#279-282)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#298-304)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#468-471)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#477-481)
getOwner() should be declared external:
- BEP20.getOwner() (#497-499)
ownerBurn(uint256) should be declared external:
- MoonTrustToken.ownerBurn(uint256) (#859-867)
setTaxMultiplicator(uint256) should be declared external:
- MoonTrustToken.setTaxMultiplicator(uint256) (#905-911)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 is deployed only at one blockchain

Contract has 5% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Unable to find Youtube account


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 Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinGecko rank

Price for MNTT

News for MNTT