Non-Fungible Defi Token - Smart Contract Audit Report

Summary

Non-Fungible Defi Audit Report Non-Fungible Defi ($NFD) is a new community-driven BEP20 token on the Binance Smart Chain that intends to make yield farming easy for its holders.

The Non-Fungible Defi Token contract is deployed at 0x36579d6d9c4a121f047e21b83784e9bfe408c478 on the Binance Smart Chain mainnet.

Notes of the contract:
  • The initial total supply is set to fifty thousand [50,000] $NFD tokens.
  • There is no burning or minting functionality present in the contract.
  • The burn address cannot be the recipient in any transaction.
  • At the time of writing this report, there are 142 Holders, however the top 10 wallets contain over 96% of the total $NFD supply.
  • 3% of the total supply is locked and will vest to the team in about 2 years. [Tuesday, June 20, 2023]
  • There is not currently a liquidity pool that is associated with $NFD.
  • The token contract complies with the ERC20 standard.
  • The contract utilizes SafeMath to prevent overflows.
  • The owner has the ability to transfer ownership or renounce ownership. That is the full extent of the owner's control within the ecosystem now that the token has been deployed.
  • Some functions could have been declared external instead of public to save on gas; this is merely informational as the project has been deployed.
Audit Findings Summary:
  • No external threats were identified.
  • The top 5 wallets have been allocated a notable amount of the total supply.
  • As with any presale, please ensure trust in the team prior to investing.
  • Date: June 24th, 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 #

 +  NonFungibleDefi (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] _approve #