event Point(bytes32 param, address value)
event FlashFeeFactorSet(uint256 fee)
event SeriesMatured(uint256 chiAtMaturity)
event Redeemed(address from, address to, uint256 amount, uint256 redeemed)
uint256 CHI_NOT_SET
uint256 MAX_TIME_TO_MATURITY
bytes32 FLASH_LOAN_RETURN
uint256 FLASH_LOANS_DISABLED
uint256 flashFeeFactor
contract IOracle oracle
contract IJoin join
Source of redemption funds.
address underlying
Asset that is returned on redemption.
bytes6 underlyingId
uint256 maturity
Unix time at which redemption of fyToken for underlying are possible
uint256 chiAtMaturity
constructor(bytes6 underlyingId_, contract IOracle oracle_, contract IJoin join_, uint256 maturity_, string name, string symbol) public
modifier afterMaturity()
modifier beforeMaturity()
function point(bytes32 param, address value) external
Point to a different Oracle or Join
function setFlashFeeFactor(uint256 flashFeeFactor_) external
Set the flash loan fee factor
function mature() external
Mature the fyToken by recording the chi. If called more than once, it will revert.
function _mature() private returns (uint256 _chiAtMaturity)
Mature the fyToken by recording the chi.
function accrual() external returns (uint256)
Retrieve the chi accrual since maturity, maturing if necessary.
function _accrual() private returns (uint256 accrual_)
Retrieve the chi accrual since maturity, maturing if necessary. Note: Call only after checking we are past maturity
function redeem(address to, uint256 amount) external returns (uint256 redeemed)
Burn fyToken after maturity for an amount that increases according to chi
If amount
is 0, the contract will redeem instead the fyToken balance of this contract. Useful for batches.
function mintWithUnderlying(address to, uint256 amount) external
Mint fyToken providing an equal amount of underlying to the protocol
function mint(address to, uint256 amount) external
Mint fyTokens.
function burn(address from, uint256 amount) external
Burn fyTokens. The user needs to have either transferred the tokens to this contract, or have approved this contract to take them.
function _burn(address from, uint256 amount) internal returns (bool)
Burn fyTokens.
Any tokens locked in this contract will be burned first and subtracted from the amount to burn from the user's wallet.
This feature allows someone to transfer fyToken to this contract to enable a burn
, potentially saving the cost of approve
or permit
.
function maxFlashLoan(address token) external view returns (uint256)
From ERC-3156. The amount of currency available to be lended.
Name | Type | Description |
---|---|---|
token | address | The loan currency. It must be a FYDai contract. |
Name | Type | Description |
---|---|---|
[0] | uint256 | The amount of token that can be borrowed. |
function flashFee(address token, uint256 amount) external view returns (uint256)
From ERC-3156. The fee to be charged for a given loan.
Name | Type | Description |
---|---|---|
token | address | The loan currency. It must be the asset. |
amount | uint256 | The amount of tokens lent. |
Name | Type | Description |
---|---|---|
[0] | uint256 | The amount of token to be charged for the loan, on top of the returned principal. |
function _flashFee(uint256 amount) internal view returns (uint256)
The fee to be charged for a given loan.
Name | Type | Description |
---|---|---|
amount | uint256 | The amount of tokens lent. |
Name | Type | Description |
---|---|---|
[0] | uint256 | The amount of token to be charged for the loan, on top of the returned principal. |
function flashLoan(contract IERC3156FlashBorrower receiver, address token, uint256 amount, bytes data) external returns (bool)
From ERC-3156. Loan amount
fyDai to receiver
, which needs to return them plus fee to this contract within the same transaction.
Note that if the initiator and the borrower are the same address, no approval is needed for this contract to take the principal + fee from the borrower.
If the borrower transfers the principal + fee to this contract, they will be burnt here instead of pulled from the borrower.
Name | Type | Description |
---|---|---|
receiver | contract IERC3156FlashBorrower | The contract receiving the tokens, needs to implement the onFlashLoan(address user, uint256 amount, uint256 fee, bytes calldata) interface. |
token | address | The loan currency. Must be a fyDai contract. |
amount | uint256 | The amount of tokens lent. |
data | bytes | A data parameter to be passed on to the receiver for any custom use. |