AuctionInfo
Struct of dutch auction information
refunded
Flag indicating if refunds are enabledstepLength
Duration (in seconds) of each auction stepprices
Array of prices for each step of the auction
struct AuctionInfo {
bool refunded;
uint248 stepLength;
uint256[] prices;
}