Soakmont - Audit Report

Summary

Soakmont Audit Report Soakmont ($SOAK) is a new BEP20 token on the Binance Smart Chain.

We reviewed the SOAKToken contract that is deployed at 0x841dc7A49e0825bDF3eE585cfB6E553495915AcE on the Binance Smart Chain Mainnet.

Notes on the Contract:
  • The total supply of the token is set to 100 billion $SOAK [100,000,000,000].
  • No mint 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, 76% of the total supply is split between 6 Gnosis multi-signature Proxy contracts.
  • 7.16% of the total supply is in Pancakeswap liquidity.
  • Of that liquidity, 94.87% of the LP tokens belong to a GnosisSafe Proxy contract.
  • The next five holders own a cumulative 7.3% of the total supply.

  • The contract complies with the BEP20 standard.
  • No ownership-restricted functions are present.
  • There are no fees associated with transferring tokens.
  • As the contract is deployed with Solidity v0.8.0 it is protected from overflows.
  • Some functions could have been declared external instead of public to save some gas, but as this contract is already deployed this is merely informational.

Audit Findings Summary
  • No external threats were identified.
  • Please be aware of the amount of liquidity available in proportion to the largest wallets.
  • Date: December 17th, 2021

Audit Results

Vulnerability CategoryNotesResult
Arbitrary Storage WriteN/APASS
Arbitrary JumpN/APASS
Centralization of ControlPlease be aware of the amount of liquidity available in proportion to the largest wallets.PASS
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

Function Graph

ERC20 Token Graph


Inheritance Chart

Multi-file Token


Functions Overview


 ($) = payable function
 # = non-constant function
 
 + [Int] IERC20 
    - [Ext] totalSupply
    - [Ext] balanceOf
    - [Ext] transfer #
    - [Ext] allowance
    - [Ext] approve #
    - [Ext] transferFrom #

 + [Int] IERC20Metadata (IERC20)
    - [Ext] name
    - [Ext] symbol
    - [Ext] decimals

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

 +  ERC20 (Context, IERC20, IERC20Metadata)
    - [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] _beforeTokenTransfer #
    - [Int] _afterTokenTransfer #

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