Liquidfy Token - Smart Contract Audit Report

Summary

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

For this audit, we analyzed Liquidfy's token smart contract, deployed at 0x54ce0f7792060bb51d1e60aadf8bd0c8dd117d5b.

Features of the token contract:
  • The total token supply upon deployment is 150,000,000 $LFY.
  • At the time of writing this report, the project team holds 100% of the circulating supply, and 0% has been burned.
  • No mint functions are accessible. After deployment, the total supply can only decrease.
  • A burn function exists, allowing any user to burn their own tokens.
  • Liquidfy’s code allows for a Batch Transfer which enables a sender to transfer tokens to multiple addresses in one transaction.
  • Liquidfy's code uses SafeMath to prevent overflows.
Audit Findings Summary
  • No security issues were identified.
  • Date: June 3rd, 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] IBEP20 
    - [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

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

 +  BEP20 (Context, IBEP20)
    - [Pub]  #
    - [Pub] name
    - [Pub] symbol
    - [Pub] decimals
    - [Pub] totalSupply
    - [Pub] balanceOf
    - [Pub] transfer #
    - [Ext] transferBatched #
    - [Pub] allowance
    - [Pub] approve #
    - [Pub] transferFrom #
    - [Pub] increaseAllowance #
    - [Pub] decreaseAllowance #
    - [Int] _transfer #
    - [Int] _mint #
    - [Int] _burn #
    - [Int] _approve #
    - [Int] _beforeTokenTransfer #

 +  LiquidfyToken (BEP20)
    - [Pub]  ($)
       - modifiers: BEP20
    - [Ext] burn #