Skip to main content
Version: mainnet (v0.71)

AuctionDuration

An auction duration is used to configure 3 auction periods:

  1. duration > 0, volume == 0: The auction will last for at least N seconds.
  2. duration == 0, volume > 0: The auction will end once the given volume will match at uncrossing.
  3. duration > 0, volume > 0: The auction will take at least N seconds, but can end sooner if the market can trade a certain volume.
type AuctionDuration {
durationSecs: Int!
volume: Int!
}

Fields

AuctionDuration.durationSecs ● Int! non-null scalar

Duration of the auction in seconds

AuctionDuration.volume ● Int! non-null scalar

Target uncrossing trading volume

Member of

Market object