Skip to main content

OsTokenFlashLoanRecipientMock

Git Source

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

NameTypeDescription
_osTokenaddressThe address of the OsToken contract
_flashLoanContractaddressThe 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

NameTypeDescription
osTokenSharesuint256The amount of OsToken shares to borrow
userDatabytesArbitrary data to pass along with the flash loan

setShouldRepayLoan

Toggle the loan repayment behavior (for testing)

function setShouldRepayLoan(bool repay) external;

Parameters

NameTypeDescription
repayboolSet to true if the loan should be repaid, false otherwise