Musketeer - Smart Contract Audit Report

Summary

Musketeer Audit Report Musketeer is a new token on the Ethereum blockchain.

For this audit we reviewed the project's token contract, deployed at 0xbc93d1aba134cc81f431de04f2d9f46fc5d6d6bc on the Ethereum mainnet.

Notes of the Token Contract:
  • The total supply of the token is 1 quadrillion.
  • No minting or burning functions are accessible after deployment; though the circulating supply can be decreased by sending tokens to the burn address.
  • Vitalik Buterin's wallet holds 50% of the token's supply.
  • The team hold 5% of the token's supply.
  • 28 other wallets hold more tokens than the liquidity pool.
  • 0.187% of the token's supply is held in the Uniswap liquidity pool.
  • 55.7% of the liquidity has been locked with DxSale. The remainder of the liquidity is held by various community members.
  • No ownership-protected functions are present.
  • The contract utilizes SafeMath to prevent overflow issues.
Audit Findings Summary
  • No issues from external attackers were identified.
  • Ensure trust in Vitalik as he controls 50% of the supply.
  • Be aware of the low amount of liquidity available.
  • Date: May 15th, 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
Flash LoansN/APASS
Integer Over/UnderflowN/APASS
Multiple SendsN/APASS
OraclesN/APASS
SuicideN/APASS
State Change External CallsN/APASS
Unchecked RetvalN/APASS
User Supplied AssertionN/APASS
Critical Solidity CompilerN/APASS
Overall Contract Safety PASS

Details: Token Contract

ERC20 Token Graph

Multi-file Token


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

 +  Context 
    - [Int] _msgSender
    - [Int] _msgData

 + [Int] IERC20 
    - [Ext] totalSupply
    - [Ext] balanceOf
    - [Ext] transfer #
    - [Ext] allowance
    - [Ext] approve #
    - [Ext] transferFrom #

 + [Lib] SafeMath 
    - [Int] tryAdd
    - [Int] trySub
    - [Int] tryMul
    - [Int] tryDiv
    - [Int] tryMod
    - [Int] add
    - [Int] sub
    - [Int] mul
    - [Int] div
    - [Int] mod
    - [Int] sub
    - [Int] div
    - [Int] mod

 +  ERC20 (Context, IERC20)
    - [Pub]  #
    - [Pub] name
    - [Pub] symbol
    - [Pub] decimals
    - [Pub] totalSupply
    - [Pub] balanceOf
    - [Pub] transfer #
    - [Pub] allowance
    - [Pub] approve #
    - [Pub] transferFrom #
    - [Pub] increaseAllowance #
    - [Pub] decreaseAllowance #
    - [Int] _transfer #
    - [Int] _mint #
    - [Int] _burn #
    - [Int] _approve #
    - [Int] _setupDecimals #
    - [Int] _beforeTokenTransfer #

 +  Musketeer (ERC20)
    - [Pub]  #
       - modifiers: ERC20