Money Token Logo

Money Token

About Money

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 26 December 2021

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...)


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious

Money.setRate(uint256,uint256,uint256,uint256) (#484-499) should emit an event for:
- buyRate = _buyRate (#497)
Money.setRate2(uint256,uint256,uint256) (#501-510) should emit an event for:
- rate1 = _rate1 (#507)
- rate2 = _rate2 (#508)
- rate3 = _rate3 (#509)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address)._addr (#182) lacks a zero-check on :
- _owner = _addr (#183)
Money.setUsdt(address)._addr (#456) lacks a zero-check on :
- USDT = _addr (#458)
Money.setAddr(address,address,address)._devAddr (#520) lacks a zero-check on :
- devAddr = _devAddr (#524)
Money.setAddr(address,address,address)._devAddr2 (#521) lacks a zero-check on :
- devAddr2 = _devAddr2 (#525)
Money.setAddr(address,address,address)._devAddr3 (#522) lacks a zero-check on :
- devAddr3 = _devAddr3 (#526)
Check that the address is not zero.

Additional information: link

ERC20._transfer(address,address,uint256) (#299-309) compares to a boolean constant:
-require(bool,string)(blackList[msg.sender] == false && blackList[sender] == false && blackList[recipient] == false,ERC20: is black List !) (#301)
Remove the equality to the boolean constant.

Additional information: link

ERC20._beforeTokenTransfer(address,address,uint256) (#327) is never used and should be removed
Money.sendReff(address,address) (#385-392) is never used and should be removed
SafeMath.add(uint256,uint256) (#31-36) is never used and should be removed
SafeMath.div(uint256,uint256) (#109-111) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#125-135) is never used and should be removed
SafeMath.mod(uint256,uint256) (#149-151) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#165-172) is never used and should be removed
SafeMath.sub(uint256,uint256) (#48-50) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#62-71) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.1 (#6) 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

Contract relationship (#7-14) is not in CapWords
Variable ERC20._balances (#226) is not in mixedCase
Parameter Money.sendReff(address,address)._son (#386) is not in mixedCase
Parameter Money.sendReff(address,address)._father (#387) is not in mixedCase
Parameter Money.setPair(address,bool)._addr (#446) is not in mixedCase
Parameter Money.setPair(address,bool)._isUSDT (#447) is not in mixedCase
Parameter Money.setUsdt(address)._addr (#456) is not in mixedCase
Parameter Money.setWhiteList(address,uint256,bool)._addr (#463) is not in mixedCase
Parameter Money.setWhiteList(address,uint256,bool)._type (#464) is not in mixedCase
Parameter Money.setWhiteList(address,uint256,bool)._YorN (#465) is not in mixedCase
Parameter Money.setBlackList(address,bool)._addr (#478) is not in mixedCase
Parameter Money.setBlackList(address,bool)._YorN (#479) is not in mixedCase
Parameter Money.setRate(uint256,uint256,uint256,uint256)._shareRate (#485) is not in mixedCase
Parameter Money.setRate(uint256,uint256,uint256,uint256)._devRate (#486) is not in mixedCase
Parameter Money.setRate(uint256,uint256,uint256,uint256)._buyRate (#487) is not in mixedCase
Parameter Money.setRate(uint256,uint256,uint256,uint256)._sellRate (#488) is not in mixedCase
Parameter Money.setRate2(uint256,uint256,uint256)._rate1 (#502) is not in mixedCase
Parameter Money.setRate2(uint256,uint256,uint256)._rate2 (#503) is not in mixedCase
Parameter Money.setRate2(uint256,uint256,uint256)._rate3 (#504) is not in mixedCase
Parameter Money.setOpen(bool)._open (#513) is not in mixedCase
Parameter Money.setAddr(address,address,address)._devAddr (#520) is not in mixedCase
Parameter Money.setAddr(address,address,address)._devAddr2 (#521) is not in mixedCase
Parameter Money.setAddr(address,address,address)._devAddr3 (#522) is not in mixedCase
Parameter Money.setRP(address)._addr (#530) is not in mixedCase
Parameter Money.testSetStartTime(uint256)._time (#537) is not in mixedCase
Variable Money.USDT (#332) is not in mixedCase
Variable Money.pair_USDT (#334) is not in mixedCase
Variable Money.RP (#335) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Money.getLpTotalRate() (#394-414) uses literals with too many digits:
- total > 3000000000000000000000000 && total <= 10000000000000000000000000 (#407)
Money.getLpTotalRate() (#394-414) uses literals with too many digits:
- total > 10000000000000000000000000 && total <= 30000000000000000000000000 (#409)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Money._FIVE_MIN (#333) is never used in Money (#329-542)
Remove unused state variables.

Additional information: link

Money.mintPoolAddr (#353) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#209-212)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#218-222)
name() should be declared external:
- ERC20.name() (#249-251)
symbol() should be declared external:
- ERC20.symbol() (#253-255)
decimals() should be declared external:
- ERC20.decimals() (#257-259)
totalSupply() should be declared external:
- ERC20.totalSupply() (#261-263)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#269-272)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#274-276)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#278-281)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#283-287)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#289-292)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#294-297)
getLpTotalRate() should be declared external:
- Money.getLpTotalRate() (#394-414)
setRP(address) should be declared external:
- Money.setRP(address) (#529-533)
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.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Money