Skip to main content

Smart contract

Openfabric is backed by the $OFN utility token, which is required to access Openfabric ecosystem.

Contract Details

OpenfabricToken.sol is an BEP20 standard smart contract. The contract inherits from the ERC20Burnable contract. It mints 500,000,000 $OFN tokens to the address that deploys the contract. After the deployment, it does not have the ability to mint any more tokens.

  • Token Name: Openfabric
  • Token Symbol: OFN
  • Total Supply: 500,000,000
  • Decimals: 18

Contract Address

The contract address for Openfabric can be located at the provided link:

Contract Audit

The $OFN token underwent comprehensive audits by Certik and Hacken, two of the most respected auditing firms in the industry:

Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract OpenfabricToken is ERC20Burnable {
constructor() ERC20("Openfabric", "OFN") {
_mint(msg.sender, 500000000 * 10 ** decimals());
}
}
warning

The information contained in our whitepaper, presentation website, and documentation is provided for informational purposes only and should not be construed as financial advice or an inducement to purchase our utility token, $OFN.

$OFN is intended solely for use within the Openfabric network, and we make no representations or warranties regarding its value, security, or suitability for other purposes. We strongly encourage you to conduct due diligence and seek professional advice before making investment decisions.

By accessing our whitepaper, presentation website, or documentation, you agree to release and hold us and our affiliates harmless from any liability for using the information contained therein.

OpenfabricAI Robot
OpenfabricAI FooterOpenfabricAI Footer