Smart contract
Fabric is backed by the $FAI utility token, which is required to access Fabric ecosystem.
Contract Details
FabricToken.sol is an BEP20 standard smart contract. The contract inherits from the ERC20Burnable contract. It mints 500,000,000 $FAI tokens to the address that deploys the contract. After the deployment, it does not have the ability to mint any more tokens.
- Token Name: Fabric
- Token Symbol: OFN
- Total Supply: 500,000,000
- Decimals: 18
Contract Address
The contract address for Fabric can be located at the provided link:
Contract Audit
The $FAI token underwent comprehensive audits by Certik and Hacken, two of the most respected auditing firms in the industry:
- Certik Audit: https://skynet.certik.com/projects/fabric-ai
- Hacken Audit: https://hacken.io/audits/fabric-ai/
Solidity
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
contract FabricToken is ERC20Burnable {
constructor() ERC20("Fabric", "OFN") {
_mint(msg.sender, 500000000 * 10 ** decimals());
}
}
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, $FAI.
$FAI is intended solely for use within the Fabric 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.