event FlashFeeFactorSet(uint256 fee)
bytes32 FLASH_LOAN_RETURN
uint256 FLASH_LOANS_DISABLED
constructor(address asset_) public
function setFlashFeeFactor(uint256 flashFeeFactor_) external
Set the flash loan fee factor
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
asset
to receiver
, which needs to return them plus fee to this contract within the same transaction.
If the principal + fee are transferred to this contract, they won't be pulled from the receiver.
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. |