Skip to content

Commit

Permalink
Add detailed description of the contract.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Malek committed Aug 10, 2020
1 parent 135cbae commit 033a9d4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions contracts/FantomFMint.sol
Expand Up @@ -11,9 +11,12 @@ import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "./FantomCollateral.sol";
import "./IPriceOracle.sol";

// FantomFMint implements the contract for handling stable coin
// and synthetic tokens liquidity pool and providing core DeFi
// function for minting tokens for the deposited collateral.
// FantomFMint implements the contract of core DeFi function
// for minting tokens againts a deposited collateral. The collateral
// management is linked from the Fantom Collateral implementation.
// Minting is burdened with a minting fee defined as the amount
// of percent of the minted tokens value in fUSD. Burning is free
// of any fee.
contract FantomFMint is Ownable, ReentrancyGuard, FantomCollateral {
// define used libs
using SafeMath for uint256;
Expand Down

0 comments on commit 033a9d4

Please sign in to comment.