Musk Token Logo

MUSK Token

About MUSK

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinGecko] alert: We've received allegations that the team has abandoned the project/Rugpull. Please proceed with extreme caution.
white paper

$MUSK is the native token of MuskSwap platform, which is a decentralized exchange allowing users to swap BEP-20 tokens. participating in liquidity pools & earn fee; and farming $MUSK by staking $MUSK or staking LP tokens. MuskSwap focuses on the strengths of decentralization. It secures personal ownership and anonymity in transactions, and contributes to make a closed ecosystem for cryptocurrencies, which are full of shortcomings in the current platforms. MuskSwap is built on Binance Smart Chain, which is the most modern protocol which can magically boost the speed of transactions and, at the same time, the other features are extremely versatile. Moreover, BSC transaction cost is much cheaper than another popular protocol – Ethereum network.

MuskSwap.io allows for all the following: § Trade/Swap BEP20 tokens via MuskSwap § Provide liquidity to the exchange and earn fees § Stake your LP (liquidity provider) tokens to earn MUSK token § Stake MUSK to earn more MUSK Join the community to support ElonMusk Joining MuskSwap community, the members have the place to share their thoughts and update the latest actions of this billionaire.

Social

Laser Scorebeta Last Audit: 29 January 2023

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

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

MuskToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/MuskToken.sol#269-287) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/MuskToken.sol#279)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

BEP20Extended._transfer(address,address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#300-323) contains a tautology or contradiction:
- _balances[sender].sub(amount).sub(receiedAmount) < 0 (contracts/libs/token/BEP20/BEP20Extended.sol#315)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is semi-renounced (passed to a contract)


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.

Different versions of Solidity are used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.6.2<0.8.0']
- 0.6.12 (contracts/MuskToken.sol#2)
- 0.6.12 (contracts/interfaces/ISellToken.sol#2)
- >=0.4.0 (contracts/libs/GSN/Context.sol#3)
- >=0.4.0 (contracts/libs/access/Ownable.sol#3)
- >=0.4.0 (contracts/libs/math/SafeMath.sol#3)
- >=0.4.0 (contracts/libs/token/BEP20/BEP20Extended.sol#3)
- >=0.4.0 (contracts/libs/token/BEP20/IBEP20.sol#3)
- >=0.6.2<0.8.0 (contracts/libs/utils/Address.sol#3)
Use one Solidity version.

Additional information: link

Pragma version>=0.4.0 (contracts/libs/token/BEP20/IBEP20.sol#3) allows old versions
Pragma version>=0.4.0 (contracts/libs/token/BEP20/BEP20Extended.sol#3) allows old versions
Pragma version>=0.4.0 (contracts/libs/math/SafeMath.sol#3) allows old versions
Pragma version>=0.4.0 (contracts/libs/GSN/Context.sol#3) allows old versions
Pragma version>=0.4.0 (contracts/libs/access/Ownable.sol#3) allows old versions
Pragma version>=0.6.2<0.8.0 (contracts/libs/utils/Address.sol#3) is too complex
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


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

Low level call in Address.functionStaticCall(address,bytes,string) (contracts/libs/utils/Address.sol#139-145):
- (success,returndata) = target.staticcall(data) (contracts/libs/utils/Address.sol#143)
Low level call in Address.sendValue(address,uint256) (contracts/libs/utils/Address.sol#53-59):
- (success) = recipient.call{value: amount}() (contracts/libs/utils/Address.sol#57)
Low level call in Address.functionDelegateCall(address,bytes,string) (contracts/libs/utils/Address.sol#163-169):
- (success,returndata) = target.delegatecall(data) (contracts/libs/utils/Address.sol#167)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (contracts/libs/utils/Address.sol#114-121):
- (success,returndata) = target.call{value: value}(data) (contracts/libs/utils/Address.sol#119)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

BEP20Extended.constructor(string,string).symbol (contracts/libs/token/BEP20/BEP20Extended.sol#67) shadows:
- BEP20Extended.symbol() (contracts/libs/token/BEP20/BEP20Extended.sol#106-108) (function)
- IBEP20.symbol() (contracts/libs/token/BEP20/IBEP20.sol#19) (function)
BEP20Extended.constructor(string,string).name (contracts/libs/token/BEP20/BEP20Extended.sol#67) shadows:
- BEP20Extended.name() (contracts/libs/token/BEP20/BEP20Extended.sol#92-94) (function)
- IBEP20.name() (contracts/libs/token/BEP20/IBEP20.sol#24) (function)
BEP20Extended.allowance(address,address).owner (contracts/libs/token/BEP20/BEP20Extended.sol#161) shadows:
- Ownable.owner() (contracts/libs/access/Ownable.sol#36-38) (function)
MuskToken.permit(address,address,uint256,uint256,uint8,bytes32,bytes32).owner (contracts/MuskToken.sol#81) shadows:
- Ownable.owner() (contracts/libs/access/Ownable.sol#36-38) (function)
BEP20Extended._approve(address,address,uint256).owner (contracts/libs/token/BEP20/BEP20Extended.sol#375) shadows:
- Ownable.owner() (contracts/libs/access/Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.

Additional information: link

BEP20Extended.setSellContract(address).sellContract (contracts/libs/token/BEP20/BEP20Extended.sol#256) lacks a zero-check on :
- SELL_CONTRACT = sellContract (contracts/libs/token/BEP20/BEP20Extended.sol#257)
BEP20Extended.dev(address)._devaddr (contracts/libs/token/BEP20/BEP20Extended.sol#77) lacks a zero-check on :
- devaddr = _devaddr (contracts/libs/token/BEP20/BEP20Extended.sol#79)
Check that the address is not zero.

Additional information: link

MuskToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/MuskToken.sol#135-176) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,MUSK::delegateBySig: signature expired) (contracts/MuskToken.sol#174)
MuskToken.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (contracts/MuskToken.sol#80-104) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,INVALID_EXPIRATION) (contracts/MuskToken.sol#91)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/libs/utils/Address.sol#26-35) uses assembly
- INLINE ASM (contracts/libs/utils/Address.sol#33)
Address._verifyCallResult(bool,bytes,string) (contracts/libs/utils/Address.sol#171-188) uses assembly
- INLINE ASM (contracts/libs/utils/Address.sol#180-183)
MuskToken.getChainId() (contracts/MuskToken.sol#294-298) uses assembly
- INLINE ASM (contracts/MuskToken.sol#296)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (contracts/libs/utils/Address.sol#53-59) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/libs/utils/Address.sol#104-106) is never used and should be removed
SafeMath.sqrt(uint256) (contracts/libs/math/SafeMath.sol#177-188) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (contracts/libs/utils/Address.sol#163-169) is never used and should be removed
Address.functionDelegateCall(address,bytes) (contracts/libs/utils/Address.sol#153-155) is never used and should be removed
SafeMath.min(uint256,uint256) (contracts/libs/math/SafeMath.sol#172-174) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/libs/math/SafeMath.sol#163-170) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/libs/utils/Address.sol#114-121) is never used and should be removed
BEP20Extended._burnFrom(address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#392-399) is never used and should be removed
Context._msgData() (contracts/libs/GSN/Context.sol#24-27) is never used and should be removed
Address.functionStaticCall(address,bytes) (contracts/libs/utils/Address.sol#129-131) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/libs/math/SafeMath.sol#147-149) is never used and should be removed
Address._verifyCallResult(bool,bytes,string) (contracts/libs/utils/Address.sol#171-188) is never used and should be removed
Address.isContract(address) (contracts/libs/utils/Address.sol#26-35) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/libs/utils/Address.sol#89-91) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (contracts/libs/utils/Address.sol#139-145) is never used and should be removed
Address.functionCall(address,bytes) (contracts/libs/utils/Address.sol#79-81) is never used and should be removed
Remove unused functions.

Additional information: link

Variable MuskToken.DOMAIN_SEPARATOR (contracts/MuskToken.sol#14) is not in mixedCase
Parameter BEP20Extended.removeTransferBurnAddress(address)._transferBurnAddress (contracts/libs/token/BEP20/BEP20Extended.sol#281) is not in mixedCase
Parameter BEP20Extended.dev(address)._devaddr (contracts/libs/token/BEP20/BEP20Extended.sol#77) is not in mixedCase
Parameter BEP20Extended.addTransferBurnAddress(address)._transferBurnAddress (contracts/libs/token/BEP20/BEP20Extended.sol#276) is not in mixedCase
Variable BEP20Extended.SELL_CONTRACT (contracts/libs/token/BEP20/BEP20Extended.sol#57) is not in mixedCase
Parameter MuskToken.mintTo(address,uint256)._amount (contracts/MuskToken.sol#29) is not in mixedCase
Parameter MuskToken.mintTo(address,uint256)._to (contracts/MuskToken.sol#29) is not in mixedCase
Parameter BEP20Extended.setFee(uint256)._enable (contracts/libs/token/BEP20/BEP20Extended.sol#266) is not in mixedCase
Parameter BEP20Extended.setTransferBurnRate(uint256)._rate (contracts/libs/token/BEP20/BEP20Extended.sol#271) is not in mixedCase
Variable MuskToken._nonces (contracts/MuskToken.sol#10) is not in mixedCase
Variable MuskToken._delegates (contracts/MuskToken.sol#41) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

enableFee() should be declared external:
- BEP20Extended.enableFee() (contracts/libs/token/BEP20/BEP20Extended.sol#134-136)
increaseAllowance(address,uint256) should be declared external:
- BEP20Extended.increaseAllowance(address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#215-218)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/libs/access/Ownable.sol#55-58)
decreaseAllowance(address,uint256) should be declared external:
- BEP20Extended.decreaseAllowance(address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#234-241)
addTransferBurnAddress(address) should be declared external:
- BEP20Extended.addTransferBurnAddress(address) (contracts/libs/token/BEP20/BEP20Extended.sol#276-279)
setTransferBurnRate(uint256) should be declared external:
- BEP20Extended.setTransferBurnRate(uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#271-274)
transfer(address,uint256) should be declared external:
- BEP20Extended.transfer(address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#153-156)
allowance(address,address) should be declared external:
- BEP20Extended.allowance(address,address) (contracts/libs/token/BEP20/BEP20Extended.sol#161-163)
removeTransferBurnAddress(address) should be declared external:
- BEP20Extended.removeTransferBurnAddress(address) (contracts/libs/token/BEP20/BEP20Extended.sol#281-284)
transferFrom(address,address,uint256) should be declared external:
- BEP20Extended.transferFrom(address,address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#189-201)
transferBurnRate() should be declared external:
- BEP20Extended.transferBurnRate() (contracts/libs/token/BEP20/BEP20Extended.sol#127-129)
setFee(uint256) should be declared external:
- BEP20Extended.setFee(uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#266-269)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/libs/access/Ownable.sol#64-66)
dev(address) should be declared external:
- BEP20Extended.dev(address) (contracts/libs/token/BEP20/BEP20Extended.sol#77-80)
decimals() should be declared external:
- BEP20Extended.decimals() (contracts/libs/token/BEP20/BEP20Extended.sol#99-101)
symbol() should be declared external:
- BEP20Extended.symbol() (contracts/libs/token/BEP20/BEP20Extended.sol#106-108)
setSellContract(address) should be declared external:
- BEP20Extended.setSellContract(address) (contracts/libs/token/BEP20/BEP20Extended.sol#256-259)
approve(address,uint256) should be declared external:
- BEP20Extended.approve(address,uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#172-175)
mintTo(address,uint256) should be declared external:
- MuskToken.mintTo(address,uint256) (contracts/MuskToken.sol#29-32)
mint(uint256) should be declared external:
- BEP20Extended.mint(uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#251-254)
burn(uint256) should be declared external:
- BEP20Extended.burn(uint256) (contracts/libs/token/BEP20/BEP20Extended.sol#261-264)
cap() should be declared external:
- BEP20Extended.cap() (contracts/libs/token/BEP20/BEP20Extended.sol#141-143)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


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


Last post in Twitter was more than 180 days ago


Twitter account has relatively few followers


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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


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

Additional information: link


Token has a considerable age, but we're still unable to find its website


Token has a considerable age, but social accounts / website are missing or have few users


Token has no active CoinMarketCap listing / rank


Token has no active CoinGecko listing / rank


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

Price for MUSK

News for MUSK