OBJECT

BuyOffer

Domain buy offer.

link GraphQL Schema definition

  • type BuyOffer implements Node {
  • # Domain buyer address.
  • buyerAddress: Address!
  • # `ReverseRecord` corresponding to `buyerAddress`.
  • buyerAddressReverseRecord: ReverseRecord
  • # Offer creation.
  • createdAtUtc: DateTime!
  • # Domain data.
  • domain: DomainData
  • # Offer expiration.
  • expiresAtUtc: DateTime
  • # Domain's offer fee.
  • fee: Mutez!
  • # Unique global ID of the object.
  • id: ID!
  • # The hash of the operation group that contained this/last change.
  • operationGroupHash: String!
  • # Total price for the domain.
  • price: Mutez!
  • # Amount to buy the domain without a fee.
  • priceWithoutFee: Mutez!
  • # Domain seller address.
  • sellerAddress: Address
  • # `ReverseRecord` corresponding to `sellerAddress`.
  • sellerAddressReverseRecord: ReverseRecord
  • # Offer state.
  • state: OfferState!
  • # NFT token contract.
  • tokenContract: String!
  • # Domain NFT token id.
  • tokenId: Int!
  • }