-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.graphql
277 lines (225 loc) · 5.7 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
type Auction @entity {
id: ID! #generated auction ID
orderId: BigInt!
type: String! #erc1155 or erc721
tokenId: BigInt!
contractAddress: Bytes! #the contract address
highestBid: BigInt! #highest bid
highestBidder: Bytes! #highest bidder
lastBidTime: BigInt!
totalBids: BigInt!
claimed: Boolean!
#Auction Settings
hammerTimeDuration: BigInt
bidDecimals: BigInt!
stepMin: BigInt!
incMin: BigInt!
incMax: BigInt!
bidMultiplier: BigInt!
dueIncentives: BigInt
seller: Bytes
createdAt: BigInt
startsAt: BigInt
endsAt: BigInt
endsAtOriginal: BigInt
claimAt: BigInt
quantity: BigInt
presetId: Int
cancelled: Boolean
# bids: [Bid!]! @derivedFrom(field: "auction")
# incentives: [Incentive!]! @derivedFrom(field: "auction")
totalBidsVolume: BigInt!
cancellationPeriodDuration: BigInt!
cancellationTime: BigInt
auctionDebt: BigInt!
sellerProceeds: BigInt!
platformFees: BigInt!
gbmFees: BigInt!
royaltyFees: BigInt!
category: Int!
buyNowPrice: BigInt!
startBidPrice: BigInt!
startBidFeePercent: BigInt!
isBought: Boolean!
}
type Bid @entity {
id: ID!
tokenId: BigInt
auctionID: BigInt
# auction: Auction
auctionOrderId: BigInt
bidder: Bytes
amount: BigInt
outbid: Boolean
bidTime: BigInt
previousBid: BigInt
previousBidder: Bytes
auctionTimeLeft: BigInt
auctionEndTime: BigInt # timestamp when auction is supposed to end
contractAddress: Bytes
claimed: Boolean
type: String
bidMultiplier: BigInt!
auctionCreatedAt: BigInt! # timestamp when auction was created
category: Int!
presetId: Int
}
type Incentive @entity {
id: ID!
auctionOrderId: BigInt!
tokenId: BigInt!
contractAddress: Bytes!
earner: Bytes!
amount: BigInt!
auctionID: BigInt!
# auction: Auction!
receiveTime: BigInt!
type: String!
bidMultiplier: BigInt!
auctionCreatedAt: BigInt! # timestamp of when auction was created
presetId: Int
}
type Contract @entity {
id: ID!
biddingAllowed: Boolean!
}
type Statistic @entity {
id: ID!
erc1155Auctions: BigInt!
erc721Auctions: BigInt!
totalBidsVolume: BigInt!
totalSalesVolume: BigInt!
}
type User @entity {
id: Bytes!
bids: BigInt! #how many bids this user has placed
bidAmount: BigInt! #cumulative amount of bids in GHST
outbids: BigInt! # of times this user has outbid someone
payouts: BigInt! # of times this user has received payout
payoutAmount: BigInt! #cumulative amount of payouts in GHST
wins: BigInt!
totalAuctionsCreated: BigInt!
# events: [Event!]! @derivedFrom(field: "emitter")
}
interface Event {
id: ID!
transaction: Transaction!
emitter: User!
timestamp: BigInt!
}
type Transaction @entity(immutable: true) {
id: ID!
timestamp: BigInt!
blockNumber: BigInt!
events: [Event!]! @derivedFrom(field: "transaction")
}
type AuctionCancelled implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
tokenId: BigInt!
# auction: Auction!
}
type Auction_ItemClaimed implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
# auction: Auction!
}
type Contract_BiddingAllowed implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
contract: Bytes
biddingAllowed: Boolean
}
type Auction_StartTimeUpdated implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
startTime: BigInt!
endTime: BigInt!
# auction: Auction!
}
type Auction_Initialized implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
tokenID: BigInt!
tokenAmount: BigInt!
contractAddress: Bytes!
tokenKind: Bytes!
presetID: BigInt!
# auction: Auction!
}
type Auction_IncentivePaid implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
earner: Bytes!
incentiveAmount: BigInt!
# auction: Auction!
}
type Auction_EndTimeUpdated implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
endTime: BigInt!
# auction: Auction!
}
type Auction_BidRemoved implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
bidder: Bytes!
bidAmount: BigInt!
# auction: Auction!
}
type Auction_BidPlaced implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
bidder: Bytes!
bidAmount: BigInt!
# auction: Auction!
}
type Auction_BuyItNowUpdated implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
buyNowPrice: BigInt!
}
type Auction_StartingPriceUpdated implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
startBidPrice: BigInt!
}
type Auction_BoughtNow implements Event @entity(immutable: true) {
id: ID!
emitter: User!
transaction: Transaction!
timestamp: BigInt!
auctionId: BigInt!
}