Muses Token - Smart Contract Audit Report

Summary

Muses Audit Report Muses Token ($MSS) is a new BEP20 token on the Binance Smart Chain.

The Muses Token contract is deployed at 0xce6de08d8a2689dfe2728ef110f6064437f14940 on the Binance Smart Chain Mainnet.

Notes of the contract:
  • The total supply of the token is 2.5 million [2,500,000] $MSS.
  • No minting or burn functions are present; though the circulating supply can be reduced by sending tokens to the 0x..dead address, if desired.
  • At the time of writing this report, 99.9% of the total $MSS token supply is in possession of the owner of the contract.
  • No ownership-restriction functions are present.
  • Some gas optimizations can be achieved through declaring functions external instead of public. As this contract is already deployed, this is merely informational.
  • The contract utilizes SafeMath libraries along with following the BEP20 standard.
Audit Findings Summary
  • No external threats were identified.
  • Please ensure trust in the team prior to investing as they have control over the total token supply.
  • Date: August 14th, 2021

Vulnerability CategoryNotesResult
Arbitrary Storage WriteN/APASS
Arbitrary JumpN/APASS
Delegate Call to Untrusted ContractN/APASS
Dependence on Predictable VariablesN/APASS
Deprecated OpcodesN/APASS
Ether ThiefN/APASS
ExceptionsN/APASS
External CallsN/APASS
Integer Over/UnderflowN/APASS
Multiple SendsN/APASS
SuicideN/APASS
State Change External CallsN/APASS
Unchecked RetvalN/APASS
User Supplied AssertionN/APASS
Critical Solidity CompilerN/APASS
Overall Contract Safety PASS

ERC20 Token Graph

Multi-file Token


 ($) = payable function
 # = non-constant function
 
 Int = Internal
 Ext = External
 Pub = Public

 + [Int] BEP20Interface 
    - [Ext] totalSupply
    - [Ext] balanceOf
    - [Ext] allowance
    - [Ext] transfer #
    - [Ext] approve #
    - [Ext] transferFrom #
    - [Ext] increaseAllowance #
    - [Ext] decreaseAllowance #

 +  SafeMath 
    - [Int] add
    - [Int] sub

 +  MusesNFTBEP20 (BEP20Interface, SafeMath)
    - [Pub]  #
    - [Pub] totalSupply
    - [Pub] balanceOf
    - [Pub] allowance
    - [Pub] approve #
       - modifiers: isNotZeroAddress,isNotTokenAddress
    - [Pub] increaseAllowance #
       - modifiers: isNotZeroAddress,isNotTokenAddress
    - [Pub] decreaseAllowance #
       - modifiers: isNotZeroAddress,isNotTokenAddress
    - [Pub] transfer #
       - modifiers: isNotZeroAddress,isNotTokenAddress
    - [Pub] transferFrom #
       - modifiers: isNotZeroAddress,isNotZeroAddress,isNotTokenAddress