FyToken
Last updated
Was this helpful?
Last updated
Was this helpful?
An fyToken is an instantiation of a Hifi zero-coupon bond, with a specific configuration. It is pegged to a unique Erc20 collateral type, Erc20 underlying type and expiration time. The FyToken contract is itself an Erc20.
Gas usage is not deterministic due to requisite calls to third-party Erc20 tokens. We provide the table below for guidance only:
Action
Typical Gas Cost
Borrow
<130K
Liquidate Borrow
<100K
Repay Borrow
<80K
Repay Borrow Behalf
<80K
All functions are implemented: allowance()
, balanceOf()
, decimals()
, name()
, symbol()
, totalSupply()
, approve()
, transfer()
and transferFrom().
All functions are implemented: permit()
, nonces()
and DOMAIN_SEPARATOR()
. Erc2612 allows users to permit another account (or contract) to use their funds using a signed message. This enables gas-less transactions and single approval/transfer transactions.
The address of the BalanceSheet contract, the global debt registry of Hifi.
The Erc20 asset that backs the borrows of this fyToken.
The ratio between mantissa precision (1e18) and the collateral precision.
Unix timestamp in seconds for when this token expires.
The unique Fintroller associated with this contract.
The unique Redemption Pool associated with this contract.
The Erc20 underlying, or target, asset for this fyToken.
The ratio between mantissa precision (1e18) and the underlying precision.
Checks if the bond matured.
RETURN
: true = bond matured, otherwise it didn't.
Increases the debt of the caller and mints new fyToken. Emits a "Borrow" event.
borrowAmount
: The amount of fyTokens to borrow and print into existence.
RETURN
: true = success, otherwise it reverts.
Requirements
The vault must be open.
Must be called prior to maturation.
The amount to borrow cannot be zero.
The "Fintroller" must allow this action to be performed.
The locked collateral cannot be zero.
The total supply of fyTokens cannot exceed the debt ceiling.
The caller must not fall below the threshold collateralization ratio.
Destroys burnAmount
tokens from holder
, reducing the token supply. Emits a "Burn" event.
holder
: The account whose fyTokens to burn.
burnAmount
: The amount of fyTokens to burn.
RETURN
: true = success, otherwise it reverts.
Requirements
Must be called prior to maturation.
Can only be called by the "RedemptionPool".
The amount to burn cannot be zero.
Repays the debt of the borrower and rewards the liquidator with a surplus of collateral. Emits a "LiquidateBorrow" event.
borrower
: The account to liquidate.
repayAmount
: The amount of fyTokens to repay.
RETURN
: true = success, otherwise it reverts.
Requirements
The vault must be open.
The liquidator cannot liquidate themselves.
The amount to repay cannot be zero.
The "Fintroller" must allow this action to be performed.
The borrower must be underwater if the bond didn't mature.
The caller must have at least "repayAmount" fyTokens.
The borrower must have at least "repayAmount" debt.
The amount of clutched collateral cannot be more than what the borrower has in the vault.
Prints new tokens into existence and assigns them to beneficiary
, increasing the total supply. Emits a "Mint" event.
beneficiary
: The borrower account for which to mint the tokens.
mintAmount
: The amount of fyTokens to print into existence.
RETURN
: true = success, otherwise it reverts.
Requirements
Can only be called by the Redemption Pool.
The amount to mint cannot be zero.
Deletes the borrower account's debt from the registry and take the fyTokens out of circulation. Emits a "RepayBorrow" event.
repayAmount
: The amount of fyTokens to repay.
RETURN
true = success, otherwise it reverts.
Requirements
The vault must be open.
The amount to repay cannot be zero.
The Fintroller must allow this action to be performed.
The caller must have at least repayAmount
fyTokens.
The caller must have at least repayAmount
debt.
Clears the borrower account's debt from the registry and take the fyTokens out of circulation. Emits a "RepayBorrow" event.
borrower
: The borrower account for which to repay the borrow.
repayAmount
: The amount of fyTokens to repay.
RETURN
: true = success, otherwise it reverts.
Requirements
same as the "repayBorrow" function, but here "msg.sender" is the account that must have at least "repayAmount" fyTokens to repay the borrow for the "borrower".
Updates the Fintroller contract's address saved in storage. Emits a "SetFintroller" event.
newFintroller
: The address of the new Fintroller contract.
RETURN
: true = success, otherwise it reverts.
Requirements
The caller must be the admin.
The new Fintroller must pass the inspection.