Kangal Token - Smart Contract Audit Report

Summary

Kangal Token Audit Report Kangal Token is a meme token and a decentralized community experiment.

For this audit, we analyzed Kangal's token smart contract, deployed at 0x6e765d26388a17a6e86c49a8e41df3f58abcd337.

Features of the token contract:
  • The total supply of the token is 100 billion.
  • No mint functions are accessible.

  • The token was listed directly on Uniswap with 1 ETH being paired against the total supply.
  • Directly after listing, multiple fresh wallets bought a substantial number of tokens. It is a risk that these wallets may sell large amounts.

  • No ownership-related functions are present.
  • Utilization of Solidity 0.8.0, which has built-in overflow checks; thereby removing the need for SafeMath.
Audit Findings Summary
  • No security issues were identified.
  • Purchases which occurred directly after listing have enabled some wallets to hold and distribute a large number of tokens.
  • Date: March 16th, 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
 
 +  Context 
    - [Int] _msgSender
    - [Int] _msgData

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

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