Purchase
Represents the purchase of an NFT.
type Purchase {
id: UUID!
mintId: UUID!
dropId: UUID
wallet: String!
spent: Int!
txSignature: String
status: CreationStatus!
createdAt: DateTime!
}
Fields
Purchase.id
● UUID!
non-null scalar
The ID of the purchase.
Purchase.mintId
● UUID!
non-null scalar
The ID of the NFT being purchased.
Purchase.dropId
● UUID
scalar
The ID of the drop that facilitated the purchase, if any.
Purchase.wallet
● String!
non-null scalar
The wallet address of the buyer.
Purchase.spent
● Int!
non-null scalar
The amount spent on the purchase.
Purchase.txSignature
● String
scalar
The signature of the transaction, if any.
Purchase.status
● CreationStatus!
non-null enum
The status of the creation of the NFT.
Purchase.createdAt
● DateTime!
non-null scalar
The date and time when the purchase was created.
Member of
Collection
object ● Drop
object