Goblin Token - Smart Contract Audit Report

Summary

Goblin Audit Report Goblin Token ($GOBLIN) intends to be a decentralized community-oriented meme project that is inspired by Shiba Inu.

The Goblin Token contract is deployed at 0x9c15fd367aff03d7c7cc9e3e2bda90cd5dffb270 on the Binance Smart Chain Mainnet.

Notes of the contract:
  • The initial total supply is set to one quadrillion [1,000,000,000,000,000] $GOBLIN tokens.
  • A burn function is present that all $GOBLIN holders can access.
  • At the time of writing this report, 46.5% of the total supply has been burned.
  • The team retained the other 53.5% of the total supply which is spread across 4 wallets.
  • The token contract complies with the BEP20 standard.
  • The contract utilizes SafeMath to prevent overflows.
  • The owner has the ability to 'transfer ownership' and 'renounce ownership'. That is the full extent of the owner's control.
  • Ownership has been renounced. However, this does not impact the project in any capacity.
  • Some functions could have been declared external instead of public to save some gas, but as this is already deployed this is merely informational.
Audit Findings Summary
  • No external threats were identified.
  • There is no assurance that the team wallets will support any usecase that may be advertised.
  • As with any token, please ensure trust in the team prior to investing.
  • Date: June 21st, 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 #

 +  GoblinToken (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 #
    - [Int] _transfer #
    - [Int] _burn #
    - [Int] _approve #
    - [Int] _burnFrom #