OsTokenFlashLoanRecipientMock
Inherits: IOsTokenFlashLoanRecipient
Mock contract that acts both as the caller and receiver of the flash loan
State Variables
osToken
address public osToken;
shouldRepayLoan
bool public shouldRepayLoan;
flashLoanContract
address public flashLoanContract;
Functions
constructor
Constructor to set the osToken address and flash loan contract
constructor(address _osToken, address _flashLoanContract);
Parameters
Name | Type | Description |
---|---|---|
_osToken | address | The address of the OsToken contract |
_flashLoanContract | address | The address of the OsTokenFlashLoans contract |
receiveFlashLoan
function receiveFlashLoan(uint256 osTokenShares, bytes calldata) external override;
executeFlashLoan
Executes a flash loan from the OsTokenFlashLoans contract
function executeFlashLoan(uint256 osTokenShares, bytes calldata userData) external;
Parameters
Name | Type | Description |
---|---|---|
osTokenShares | uint256 | The amount of OsToken shares to borrow |
userData | bytes | Arbitrary data to pass along with the flash loan |
setShouldRepayLoan
Toggle the loan repayment behavior (for testing)
function setShouldRepayLoan(bool repay) external;
Parameters
Name | Type | Description |
---|---|---|
repay | bool | Set to true if the loan should be repaid, false otherwise |