Using FlashLoans
Flash loans allow you to borrow assets without collateral, as long as the loan is borrowed and repaid within a single transaction.
What Are Flash Loans?
Flash loans are uncollateralized loans that leverage the atomic nature of blockchain transactions - either the entire transaction succeeds (including loan repayment) or it reverts completely.
Use Cases
Arbitrage: Profit from price differences between platforms
Collateral Swaps: Replace one collateral type with another
Liquidations: Provide capital for liquidating positions
Self-Liquidation: Save on liquidation fees by self-liquidating
Complex DeFi Strategies: Execute multi-step DeFi operations
Implementing a Flash Loan Receiver
To use a flash loan, you must create a contract that implements the IFlashLoanReceiver
interface:
Your implementation must:
Perform your desired operations
Approve the Five Protocol contract to withdraw the borrowed amount plus fees
Return true if successful
Flash Loan Fee Structure
Flash loans in Five Protocol incur a fee that is added to the repayment amount:
Current fee: 0.09% of the borrowed amount
Fee is configurable
Fees generated contribute to protocol revenue
Flash Loan Execution
To execute a flash loan:
Deploy your receiver contract that implements
IFlashLoanReceiver
Call the
flashLoan
function on the Five Protocol contract:
Where:
receiver
: Your contract address that implementsIFlashLoanReceiver
tokens
: Array of token addresses to borrowamounts
: Array of amounts to borrowparams
: Additional parameters to pass to your receiver contract
Flash Loan Limitations
Maximum loan amount is limited by the available liquidity in the protocol
All borrowed assets must be repaid in the same transaction
You cannot perform multiple flash loans in the same transaction
Last updated