Hamster Token - Smart Contract Audit Report

Summary

Hamster Audit Report Hamster Token ($Ham) is a new DeFi token on the Binance Smart Chain.

The Hamster Token contract is deployed at 0xb7b36ca86685af52186f1f9394e91d115a9da654 on the Binance Smart Chain Mainnet.

Notes of the contract:
  • The total supply of the token is 10 quadrillion [10,000,000,000,000,000 ] $HAM.
  • The owner has the ability to mint new tokens at any time.
  • No burn functions exist, though the circulating supply can be decreased by sending tokens to the 0x..dead address.
  • At the time of writing this report, 30% of the token's supply is locked in a token locking contract and vests to the team in increments of 10% (1 quadrillion tokens). 10% of the total token supply can be claimed right now. Another 10% can be claimed on July 16th, 2021. The remaining 10% from this token locking contract will vest to the team on Aug 22nd, 2021.
  • 44.6% of the total supply has been burned.
  • 2.87% of the total supply belongs to the owner.
  • 1.72% of the total supply is in Pancakeswap liquidity.
  • The contract utilizes SafeMath to prevent overflows and complies with the BEP20 standard.
  • No other ownership-restriction functions are present.
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: July 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
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] IBEP20 
    - [Ext] totalSupply
    - [Ext] decimals
    - [Ext] symbol
    - [Ext] name
    - [Ext] getOwner
    - [Ext] balanceOf
    - [Ext] transfer #
    - [Ext] allowance
    - [Ext] approve #
    - [Ext] transferFrom #

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

 + [Lib] SafeMath 
    - [Int] add
    - [Int] sub
    - [Int] sub
    - [Int] mul
    - [Int] div
    - [Int] div
    - [Int] mod
    - [Int] mod

 +  Ownable (Context)
    - [Int]  #
    - [Pub] owner
    - [Pub] renounceOwnership #
       - modifiers: onlyOwner
    - [Pub] transferOwnership #
       - modifiers: onlyOwner
    - [Int] _transferOwnership #

 +  BEP20Token (Context, IBEP20, Ownable)
    - [Pub]  #
    - [Ext] getOwner
    - [Ext] decimals
    - [Ext] symbol
    - [Ext] name
    - [Ext] totalSupply
    - [Ext] balanceOf
    - [Ext] transfer #
    - [Ext] allowance
    - [Ext] approve #
    - [Ext] transferFrom #
    - [Pub] increaseAllowance #
    - [Pub] decreaseAllowance #
    - [Pub] mint #
       - modifiers: onlyOwner
    - [Int] _transfer #
    - [Int] _mint #
    - [Int] _burn #
    - [Int] _approve #
    - [Int] _burnFrom #