OBJECT

Auction

Domain auction.

link GraphQL Schema definition

  • type Auction implements Node {
  • # The sum of bids' amounts.
  • bidAmountSum: Mutez!
  • # Number of bids for this auction.
  • bidCount: Int!
  • # Auction bids.
  • bids: [Bid!]!
  • # The count of unique bidders.
  • countOfUniqueBidders: Int!
  • # Domain name.
  • domainName: String!
  • # Auction end `DateTime`.
  • endsAtUtc: DateTime!
  • # The current highest bid.
  • highestBid: Bid!
  • # Unique global ID of the object.
  • id: ID!
  • # The hash of the operation group that contained this/last change.
  • operationGroupHash: String!
  • # `DateTime` until an auction winner can claim the domain.
  • ownedUntilUtc: DateTime!
  • # Block level of the auction's first bid.
  • startedAtLevel: Int!
  • # The auction state.
  • state: AuctionState!
  • }