-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
975 lines (880 loc) · 21.8 KB
/
schema.graphql
File metadata and controls
975 lines (880 loc) · 21.8 KB
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
type AuthorizedCallerAdded @entity(immutable: true) {
id: Bytes!
caller: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuthorizedCallerRemoved @entity(immutable: true) {
id: Bytes!
caller: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ListingCancelled @entity(immutable: true) {
id: Bytes!
listingId: BigInt! # uint256
seller: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ListingCreated @entity(immutable: true) {
id: Bytes!
listingId: BigInt! # uint256
seller: Bytes! # address
assetType: Int! # uint8
price: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ListingSold @entity(immutable: true) {
id: Bytes!
listingId: BigInt! # uint256
buyer: Bytes! # address
seller: Bytes! # address
price: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type NFTListingCreated @entity(immutable: true) {
id: Bytes!
listingId: BigInt! # uint256
seller: Bytes! # address
nftContract: Bytes! # address
tokenId: BigInt! # uint256
quantity: BigInt! # uint256
price: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Paused @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PriceUpdated @entity(immutable: true) {
id: Bytes!
listingId: BigInt! # uint256
oldPrice: BigInt! # uint256
newPrice: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Unpaused @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# RoleManager entities
type RoleGrantScheduled @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
account: Bytes! # address
scheduler: Bytes! # address
executeAfter: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type RoleGrantExecuted @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
account: Bytes! # address
executor: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type RoleGrantCancelled @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
account: Bytes! # address
canceller: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type RoleGranted @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
account: Bytes! # address
sender: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type RoleRevoked @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
account: Bytes! # address
sender: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type EmergencyPaused @entity(immutable: true) {
id: Bytes!
pauser: Bytes! # address
reason: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type EmergencyUnpaused @entity(immutable: true) {
id: Bytes!
unpauser: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type RoleAdminChanged @entity(immutable: true) {
id: Bytes!
role: Bytes! # bytes32
previousAdminRole: Bytes! # bytes32
newAdminRole: Bytes! # bytes32
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedRoleManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedRoleManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# FeeDistributor entities
type FeesReceived @entity(immutable: true) {
id: Bytes!
from: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type FeesWithdrawn @entity(immutable: true) {
id: Bytes!
collector: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PaymentDistributed @entity(immutable: true) {
id: Bytes!
seller: Bytes! # address
buyer: Bytes! # address
totalAmount: BigInt! # uint256
platformFee: BigInt! # uint256
royaltyFee: BigInt! # uint256
sellerNet: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PlatformFeeUpdated @entity(immutable: true) {
id: Bytes!
oldFee: BigInt! # uint256
newFee: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type FeeCollectorUpdated @entity(immutable: true) {
id: Bytes!
oldCollector: Bytes! # address
newCollector: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedFeeDistributor @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedFeeDistributor @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# VerificationRegistry entities
type VerificationAdded @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
owner: Bytes! # address
verifier: Bytes! # address
assetType: Int! # uint8
proofHash: Bytes! # bytes32
expiresAt: BigInt! # uint256
metadataURI: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserVerificationSubmitted @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
owner: Bytes! # address
assetType: Int! # uint8
proofHash: Bytes! # bytes32
expiresAt: BigInt! # uint256
metadataURI: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserVerificationFinalized @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
owner: Bytes! # address
assetType: Int! # uint8
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VerificationRevoked @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
owner: Bytes! # address
revokedBy: Bytes! # address
reason: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VerificationRenewed @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
owner: Bytes! # address
newExpiresAt: BigInt! # uint256
renewalCount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VerificationChallenged @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
challenger: Bytes! # address
evidence: String! # string
stake: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ChallengeResolved @entity(immutable: true) {
id: Bytes!
verificationId: BigInt! # uint256
challengeApproved: Boolean! # bool
challenger: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VerifierAdded @entity(immutable: true) {
id: Bytes!
verifier: Bytes! # address
addedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type VerifierRemoved @entity(immutable: true) {
id: Bytes!
verifier: Bytes! # address
removedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedVerificationRegistry @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedVerificationRegistry @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# ReputationManager entities
type ReputationUpdated @entity(immutable: true) {
id: Bytes!
user: Bytes! # address
action: Int! # uint8
pointsChange: Int! # int256
newScore: Int! # int256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserBanned @entity(immutable: true) {
id: Bytes!
user: Bytes! # address
reason: String! # string
bannedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserUnbanned @entity(immutable: true) {
id: Bytes!
user: Bytes! # address
unbannedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuthorizedContractAdded @entity(immutable: true) {
id: Bytes!
contractAddress: Bytes! # address
addedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuthorizedContractRemoved @entity(immutable: true) {
id: Bytes!
contractAddress: Bytes! # address
removedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedReputationManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedReputationManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# EscrowManager entities
type EscrowCreated @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
buyer: Bytes! # address
seller: Bytes! # address
amount: BigInt! # uint256
assetType: Int! # uint8
releaseTime: BigInt! # uint256
metadataURI: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AssetDelivered @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
seller: Bytes! # address
deliveryTimestamp: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AssetReceiptConfirmed @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
buyer: Bytes! # address
confirmationTimestamp: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type EscrowReleased @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
seller: Bytes! # address
amount: BigInt! # uint256
platformFee: BigInt! # uint256
sellerNet: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type EscrowCancelled @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
buyer: Bytes! # address
refundAmount: BigInt! # uint256
sellerCompensation: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type DisputeOpened @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
disputedBy: Bytes! # address
reason: String! # string
timestamp: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type DisputeResolved @entity(immutable: true) {
id: Bytes!
escrowId: BigInt! # uint256
winner: Bytes! # address
amount: BigInt! # uint256
resolver: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type MarketplaceAuthorized @entity(immutable: true) {
id: Bytes!
marketplace: Bytes! # address
authorizedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type MarketplaceDeauthorized @entity(immutable: true) {
id: Bytes!
marketplace: Bytes! # address
deauthorizedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PlatformFeeUpdatedEscrow @entity(immutable: true) {
id: Bytes!
oldFeeBps: BigInt! # uint256
newFeeBps: BigInt! # uint256
updatedBy: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedEscrowManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedEscrowManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# NFTFactory entities
type Collection721Created @entity(immutable: true) {
id: Bytes!
collection: Bytes! # address
creator: Bytes! # address
name: String! # string
symbol: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Collection1155Created @entity(immutable: true) {
id: Bytes!
collection: Bytes! # address
creator: Bytes! # address
name: String! # string
symbol: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type CreationFeeUpdated @entity(immutable: true) {
id: Bytes!
oldFee: BigInt! # uint256
newFee: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# NFTMarketplace entities
type NFTTransferred @entity(immutable: true) {
id: Bytes!
nftContract: Bytes! # address
tokenId: BigInt! # uint256
from: Bytes! # address
to: Bytes! # address
quantity: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PaymentDistributedNFT @entity(immutable: true) {
id: Bytes!
seller: Bytes! # address
sellerNet: BigInt! # uint256
platformFee: BigInt! # uint256
royaltyReceiver: Bytes! # address
royaltyAmount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# OfferManager entities
type OfferMade @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
seller: Bytes! # address
amount: BigInt! # uint256
expiresAt: BigInt! # uint256
assetType: Int! # uint8
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferAccepted @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
seller: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferCancelled @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
refundAmount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferRejected @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
seller: Bytes! # address
reason: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferExpired @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferInvalidated @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
listingId: BigInt! # uint256
buyer: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OfferRefunded @entity(immutable: true) {
id: Bytes!
offerId: BigInt! # uint256
buyer: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PlatformFeeUpdatedOffer @entity(immutable: true) {
id: Bytes!
oldFee: BigInt! # uint256
newFee: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedOfferManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedOfferManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# AuctionManager entities
type AuctionCreated @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
seller: Bytes! # address
assetType: Int! # uint8
nftContract: Bytes! # address
tokenId: BigInt! # uint256
bidIncrementBps: BigInt! # uint256
reservePrice: BigInt! # uint256
startTime: BigInt! # uint256
endTime: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type BidPlaced @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
bidder: Bytes! # address
bidAmount: BigInt! # uint256
newEndTime: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuctionEnded @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
seller: Bytes! # address
winner: Bytes! # address
finalBid: BigInt! # uint256
platformFee: BigInt! # uint256
royaltyFee: BigInt! # uint256
sellerNet: BigInt! # uint256
royaltyReceiver: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuctionCancelled @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
seller: Bytes! # address
reason: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type AuctionFailedReserveNotMet @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
highestBid: BigInt! # uint256
reservePrice: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type BidRefunded @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
bidder: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type BidRefundQueued @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
bidder: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type NFTEscrowed @entity(immutable: true) {
id: Bytes!
auctionId: BigInt! # uint256
nftContract: Bytes! # address
tokenId: BigInt! # uint256
quantity: BigInt! # uint256
standard: Int! # uint8
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Withdrawn @entity(immutable: true) {
id: Bytes!
user: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedAuctionManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedAuctionManager @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# VertixSinglesNFT721 entities
type SingleNFTMinted @entity(immutable: true) {
id: Bytes!
minter: Bytes! # address
tokenId: BigInt! # uint256
uri: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Transfer @entity(immutable: true) {
id: Bytes!
from: Bytes! # address
to: Bytes! # address
tokenId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Approval @entity(immutable: true) {
id: Bytes!
owner: Bytes! # address
approved: Bytes! # address
tokenId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ApprovalForAll @entity(immutable: true) {
id: Bytes!
owner: Bytes! # address
operator: Bytes! # address
approved: Boolean! # bool
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedSinglesNFT @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedSinglesNFT @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# SinglesNFTHelper entities
type SingleNFTMintedAndListed @entity(immutable: true) {
id: Bytes!
creator: Bytes! # address
tokenId: BigInt! # uint256
listingId: BigInt! # uint256
price: BigInt! # uint256
nftContract: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
# VertixSinglesNFT1155 entities
type SingleEditionMinted @entity(immutable: true) {
id: Bytes!
minter: Bytes! # address
tokenId: BigInt! # uint256
amount: BigInt! # uint256
maxSupply: BigInt! # uint256
uri: String! # string
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type TransferSingle @entity(immutable: true) {
id: Bytes!
operator: Bytes! # address
from: Bytes! # address
to: Bytes! # address
tokenId: BigInt! # uint256
value: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type TransferBatch @entity(immutable: true) {
id: Bytes!
operator: Bytes! # address
from: Bytes! # address
to: Bytes! # address
ids: [BigInt!]! # uint256[]
values: [BigInt!]! # uint256[]
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type ApprovalForAll1155 @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
operator: Bytes! # address
approved: Boolean! # bool
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type URIUpdated @entity(immutable: true) {
id: Bytes!
value: String! # string
tokenId: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PausedSinglesNFT1155 @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UnpausedSinglesNFT1155 @entity(immutable: true) {
id: Bytes!
account: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}