This contract manages the coupon auctions that the pool uses to sell the underlying ETH in exchange for USDC.

Git Source

Inherits: Initializable, UUPSUpgradeable

State Variables

pool

address public pool;

beneficiary

address public beneficiary;

buyCouponToken

address public buyCouponToken;

sellReserveToken

address public sellReserveToken;

endTime

uint256 public endTime;

totalBuyCouponAmount

uint256 public totalBuyCouponAmount;

liquidationThreshold

uint256 public liquidationThreshold;

state

State public state;