AuctionInfo

Git Source

Struct of dutch auction information

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