OBJECT

Bid

Auction bid.

link GraphQL Schema definition

  • type Bid implements Node {
  • # Bid amount.
  • amount: Mutez!
  • # Bidder address.
  • bidder: Address!
  • # `ReverseRecord` corresponding to `bidder`.
  • bidderReverseRecord: ReverseRecord
  • # Unique global ID of the object.
  • id: ID!
  • # The hash of the operation group that contained this/last change.
  • operationGroupHash: String!
  • # Bid timestamp.
  • timestamp: DateTime!
  • }