forked from juanmardefago/loopring-subgraph-v2
-
Notifications
You must be signed in to change notification settings - Fork 8
/
schema.graphql
1736 lines (1257 loc) · 47.3 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
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
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type Proxy @entity {
"Proxy ID is always '0' since it's a singleton entity."
id: ID!
"Current implementation is represented by a link to the current Exchange entity"
currentImplementation: Exchange
"List of all historical Exchange entities"
implementations: [Exchange!]! @derivedFrom(field: "proxy")
"Total amount of tokens supported"
tokenCount: BigInt!
"Total amount of blocks processed"
blockCount: BigInt!
"Total amount of transactions processed across all blocks"
transactionCount: BigInt!
"Total amount of Deposit transactions processed across all blocks"
depositCount: BigInt!
"Total amount of Withdrawal transactions processed across all blocks"
withdrawalCount: BigInt!
"Total amount of WithdrawalNFT transactions processed across all blocks"
withdrawalNFTCount: BigInt!
"Total amount of Transfer transactions processed across all blocks"
transferCount: BigInt!
"Total amount of TransferNFT transactions processed across all blocks"
transferNFTCount: BigInt!
"Total amount of Add transactions processed across all blocks"
addCount: BigInt!
"Total amount of Remove transactions processed across all blocks"
removeCount: BigInt!
"Total amount of OrderbookTrade transactions processed across all blocks"
orderbookTradeCount: BigInt!
"Total amount of Swap transactions processed across all blocks"
swapCount: BigInt!
"Total amount of TradeNFT transactions processed across all blocks"
tradeNFTCount: BigInt!
"Total amount of SwapNFT transactions processed across all blocks"
swapNFTCount: BigInt!
"Total amount of AccountUpdate transactions processed across all blocks"
accountUpdateCount: BigInt!
"Total amount of AMMUpdate transactions processed across all blocks"
ammUpdateCount: BigInt!
"Total amount of SignatureVerification transactions processed across all blocks"
signatureVerificationCount: BigInt!
"Total amount of NFT Mint transactions processed across all blocks"
nftMintCount: BigInt!
"Total amount of NFT Data transactions processed across all blocks"
nftDataCount: BigInt!
"Total amount of unique NFTs"
nftCount: BigInt!
"Total amount of unique User entities"
userCount: BigInt!
"Total amount of unique Pool entities"
poolCount: BigInt!
}
type Exchange @entity {
"Address of the exchange implementation"
id: ID!
"Proxy link. Used to generate derived array of implementations."
proxy: Proxy!
"List of all tokens supported during the time this Exchange was the current implementation"
tokens: [Token!]! @derivedFrom(field: "exchange")
}
type Token @entity {
"Internal ID of the token within Loopring"
id: ID!
"Internal ID of the token within loopring expressed as a number for ordering"
internalID: BigInt!
"Exchange active when the token was registered"
exchange: Exchange!
"Address of the token within the Ethereum network"
address: Bytes!
decimals: Int!
name: String!
symbol: String!
"Total traded volume for this token across all token pairs. Denominated in it's own currency"
tradedVolume: BigInt!
"Total traded volume for this token across all token pairs. Denominated in it's own currency"
tradedVolumeSwap: BigInt!
"Total traded volume for this token across all token pairs. Denominated in it's own currency"
tradedVolumeOrderbook: BigInt!
dailyEntities: [TokenDailyData!]! @derivedFrom(field: "token")
weeklyEntities: [TokenWeeklyData!]! @derivedFrom(field: "token")
}
type Pair @entity {
"ID is recreated following the next pattern to standardize pair IDs: <LOWEST Token ID>-<HIGHEST Token ID>"
id: ID!
"ID represented as a decimal number. Follows the same pattern but with a comma instead"
internalID: BigDecimal!
token0: Token!
token1: Token!
"Last price of Token 0. Denominated in Token 1"
token0Price: BigInt!
"Last price of Token 1. Denominated in Token 0"
token1Price: BigInt!
"Total traded volume of token0 within this pair. Includes both Swaps and Orderbook trades. Denominated in it's own currency"
tradedVolumeToken0: BigInt!
"Total traded volume of token1 within this pair. Includes both Swaps and Orderbook trades. Denominated in it's own currency"
tradedVolumeToken1: BigInt!
"Total traded volume of token0 within this pair exclusively on Swaps. Denominated in it's own currency"
tradedVolumeToken0Swap: BigInt!
"Total traded volume of token1 within this pair exclusively on Swaps. Denominated in it's own currency"
tradedVolumeToken1Swap: BigInt!
"Total traded volume of token0 within this pair exclusively on Orderbook trades. Denominated in it's own currency"
tradedVolumeToken0Orderbook: BigInt!
"Total traded volume of token1 within this pair exclusively on Orderbook trades. Denominated in it's own currency"
tradedVolumeToken1Orderbook: BigInt!
swaps: [Swap!]! @derivedFrom(field: "pair")
trades: [OrderbookTrade!]! @derivedFrom(field: "pair")
dailyEntities: [PairDailyData!]! @derivedFrom(field: "pair")
weeklyEntities: [PairWeeklyData!]! @derivedFrom(field: "pair")
}
type Block @entity {
id: ID!
"Same as ID but expressed as a BigInt so it can be used for sorting properly"
internalID: BigInt!
"Transaction hash for the L1 Transaction where the L2 Block was submitted"
txHash: String!
"Amount of gas limit used"
gasLimit: BigInt!
"Gas price for the L1 transaction"
gasPrice: BigInt!
"L1 Block height where the L2 Block was submitted"
height: BigInt!
"L1 Block timestamp when the L2 Block was submitted"
timestamp: BigInt!
"Hash of the L1 Block where the L2 block was submitted"
blockHash: String!
# Raw block data
"L2 Block type represented as an Integer"
blockType: Int!
"L2 Block size. Represents the maximum amount of L2 transactions that it could handle."
blockSize: Int!
"L2 Block version"
blockVersion: Int!
"Raw data for the L2 block. Represented as a Hex String."
data: String!
"L2 proof data"
proof: [BigInt!]!
storeBlockInfoOnchain: Boolean!
offchainData: Bytes!
# Parsed data from block
"Protocol fee applied to the 'taker' for L2 transactions within this block"
protocolFeeTakerBips: Int!
"Protocol fee applied to the 'maker' for L2 transactions within this block"
protocolFeeMakerBips: Int!
numConditionalTransactions: Int!
"Account ID for the operator of this L2 Block"
operatorAccountID: Int!
"Account entity for the operator of this L2 Block"
operatorAccount: Account!
"List of L2 Transactions for this L2 Block"
transactions: [Transaction!]! @derivedFrom(field: "block")
"Total amount of transactions processed on this block. Should coincide with the lenght of the transactions list"
transactionCount: BigInt!
"Total amount of Deposit transactions processed on this block"
depositCount: BigInt!
"Total amount of Withdrawal transactions processed on this block"
withdrawalCount: BigInt!
"Total amount of WithdrawalNFT transactions processed on this block"
withdrawalNFTCount: BigInt!
"Total amount of Transfer transactions processed on this block"
transferCount: BigInt!
"Total amount of Transfer transactions processed on this block"
transferNFTCount: BigInt!
"Total amount of Add transactions processed on this block"
addCount: BigInt!
"Total amount of Remove transactions processed on this block"
removeCount: BigInt!
"Total amount of OrderbookTrade transactions processed on this block"
orderbookTradeCount: BigInt!
"Total amount of Swap transactions processed on this block"
swapCount: BigInt!
"Total amount of TradeNFT transactions processed on this block"
tradeNFTCount: BigInt!
"Total amount of SwapNFT transactions processed on this block"
swapNFTCount: BigInt!
"Total amount of AccountUpdate transactions processed on this block"
accountUpdateCount: BigInt!
"Total amount of AMMUpdate transactions processed on this block"
ammUpdateCount: BigInt!
"Total amount of SignatureVerification transactions processed on this block"
signatureVerificationCount: BigInt!
"Total amount of NFT Mint transactions processed on this block"
nftMintCount: BigInt!
"Total amount of NFT Data transactions processed on this block"
nftDataCount: BigInt!
}
interface Account {
"Internal ID used in the L2 transactions. Users will be of type User and have an ID > 10000. Pools will be of type Pool and have an id < 10000. ProtocolAccount is a special account with ID 0 which handles all token balances generated by protocol fees."
id: ID!
"Same as ID but expressed as a BigInt for sorting purposes"
internalID: BigInt!
"Address linked to the account ID"
address: Bytes!
"List of all the balances for each specific token the account has interacted with"
balances: [AccountTokenBalance!]! @derivedFrom(field: "account")
"L2 transaction internalID where the account was first created and linked to an address. Useful for sorting and filtering purposes"
createdAt: BigDecimal!
"L2 transaction internalID that last updated the account entity. Useful for sorting and filtering purposes"
lastUpdatedAt: BigDecimal!
"L2 transaction where the account was first created and linked to an address"
createdAtTransaction: Transaction!
"L2 transaction that last updated the account entity"
lastUpdatedAtTransaction: Transaction!
"L2 transactions that involved this account"
transactions: [Transaction!]! @derivedFrom(field: "accounts")
"List of all the AccountNFTSlot entities that this account has. Those slots can be empty but will only exist if they held an NFT at some point."
slots: [AccountNFTSlot!]! @derivedFrom(field: "account")
}
type User implements Account @entity {
"Internal ID used in the L2 transactions"
id: ID!
"Same as ID but expressed as a BigInt for sorting purposes"
internalID: BigInt!
address: Bytes!
"String representing the public key for the User"
publicKey: String
balances: [AccountTokenBalance!]! @derivedFrom(field: "account")
"L2 transaction internalID where the account was first created and linked to an address. Useful for sorting and filtering purposes"
createdAt: BigDecimal!
"L2 transaction internalID that last updated the account entity. Useful for sorting and filtering purposes"
lastUpdatedAt: BigDecimal!
"L2 transaction where the account was first created and linked to an address"
createdAtTransaction: Transaction!
"L2 transaction that last updated the account entity"
lastUpdatedAtTransaction: Transaction!
"L2 transactions that involved this account"
transactions: [Transaction!]! @derivedFrom(field: "accounts")
"List of all the AccountNFTSlot entities that this account has. Those slots can be empty but will only exist if they held an NFT at some point."
slots: [AccountNFTSlot!]! @derivedFrom(field: "account")
}
type Pool implements Account @entity {
"Internal ID used in the L2 transactions"
id: ID!
"Same as ID but expressed as a BigInt for sorting purposes"
internalID: BigInt!
address: Bytes!
feeBipsAMM: Int
balances: [AccountTokenBalance!]! @derivedFrom(field: "account")
"L2 transaction internalID where the account was first created and linked to an address. Useful for sorting and filtering purposes"
createdAt: BigDecimal!
"L2 transaction internalID that last updated the account entity. Useful for sorting and filtering purposes"
lastUpdatedAt: BigDecimal!
"L2 transaction where the account was first created and linked to an address"
createdAtTransaction: Transaction!
"L2 transaction that last updated the account entity"
lastUpdatedAtTransaction: Transaction!
"L2 transactions that involved this account"
transactions: [Transaction!]! @derivedFrom(field: "accounts")
"List of all the AccountNFTSlot entities that this account has. Those slots can be empty but will only exist if they held an NFT at some point."
slots: [AccountNFTSlot!]! @derivedFrom(field: "account")
}
type ProtocolAccount implements Account @entity {
"ID is always 0 since there's only a single ProtocolAccount and uses the reserved id 0"
id: ID!
"Same as ID but expressed as a BigInt for sorting purposes"
internalID: BigInt!
address: Bytes!
balances: [AccountTokenBalance!]! @derivedFrom(field: "account")
"L2 transaction internalID where the account was first created and linked to an address. Useful for sorting and filtering purposes"
createdAt: BigDecimal!
"L2 transaction internalID that last updated the account entity. Useful for sorting and filtering purposes"
lastUpdatedAt: BigDecimal!
"L2 transaction where the account was first created and linked to an address"
createdAtTransaction: Transaction!
"L2 transaction that last updated the account entity"
lastUpdatedAtTransaction: Transaction!
"L2 transactions that involved this account"
transactions: [Transaction!]! @derivedFrom(field: "accounts")
"List of all the AccountNFTSlot entities that this account has. Those slots can be empty but will only exist if they held an NFT at some point."
slots: [AccountNFTSlot!]! @derivedFrom(field: "account")
}
type AccountTokenBalance @entity {
"ID is recreated following this pattern: <ACCOUNT ID>-<TOKEN ID>. Example: 10001-1"
id: ID!
balance: BigInt!
"Link to the Account entity. Can be a Pool or User entity"
account: Account!
"Link to the Token entity. Holds all details of the token itself."
token: Token!
transactions: [Transaction!]! @derivedFrom(field: "tokenBalances")
dailyData: [AccountTokenBalanceDailyData!]!
@derivedFrom(field: "accountTokenBalance")
weeklyData: [AccountTokenBalanceWeeklyData!]!
@derivedFrom(field: "accountTokenBalance")
}
type NonFungibleToken @entity {
"ID is the Poseidon hash reported by L2"
id: ID!
"L2 transaction internalID where the NFT was minted. Useful for sorting and filtering purposes"
mintedAt: BigDecimal!
"L2 transaction where the NFT was minted"
mintedAtTransaction: MintNFT!
minter: Account!
nftType: Int!
token: String!
creatorFeeBips: Int!
nftID: String!
"List of all the AccountNFTSlot where this NFT is currently active."
slots: [AccountNFTSlot!]! @derivedFrom(field: "nft")
"List of all the transactions that this particular NFT was a part of"
transactions: [TransactionNFT!]! @derivedFrom(field:"nfts")
}
type AccountNFTSlot @entity {
"ID is compounded from the account ID and the token ID used as an NFT slot."
id: ID!
"Owner of this slot"
account: Account!
"NonFungibleToken saved in this slot. Null if empty"
nft: NonFungibleToken
"Amount of copies of this NonFungibleToken saved in this slot."
balance: BigInt!
"L2 transaction internalID where the slot was first created. Useful for sorting and filtering purposes"
createdAt: BigDecimal!
"L2 transaction internalID that last updated the slot entity. Useful for sorting and filtering purposes"
lastUpdatedAt: BigDecimal!
"L2 transaction where the slot was first created"
createdAtTransaction: Transaction!
"L2 transaction that last updated the slot entity"
lastUpdatedAtTransaction: Transaction!
"List of all the transactions that this particular NFT was a part of"
transactions: [TransactionNFT!]! @derivedFrom(field: "slots")
}
enum TransactionType {
Deposit
Withdrawal
Transfer
Swap
OrderbookTrade
AccountUpdate
AmmUpdate
SignatureVerification
MintNFT
DataNFT
Add
Remove
TransferNFT
WithdrawalNFT
TradeNFT
SwapNFT
}
interface Transaction {
"All transactions IDs follow the same pattern: <BLOCK ID>-<TX INDEX>"
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
"Hex string representation of the encoded L2 data for this Transaction"
data: String!
"Link to the Block entity where this Transaction took place"
block: Block!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
interface TransactionNFT {
"All transactions IDs follow the same pattern: <BLOCK ID>-<TX INDEX>"
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
"Hex string representation of the encoded L2 data for this Transaction"
data: String!
"Link to the Block entity where this Transaction took place"
block: Block!
nfts: [NonFungibleToken!]!
slots: [AccountNFTSlot!]!
}
type Deposit implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that deposited the tokens"
toAccount: Account!
"Token entity with information about the deposited token"
token: Token!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Address string of the account that deposited"
to: String!
"[RAW L2 DATA] Account ID for the account that deposited"
toAccountID: Int!
"[RAW L2 DATA] Token ID of the deposited token"
tokenID: Int!
"[RAW L2 DATA] Amount deposited"
amount: BigInt!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type Withdrawal implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that withdrew the tokens"
fromAccount: Account!
"Token entity with information about the withdrawn token"
token: Token
"Token entity with information about the token used to pay the operator fees"
feeToken: Token
"Whether the withdrawal transaction is valid. Only type 3 withdrawals are invalid."
valid: Boolean!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Withdrawal type"
type: Int!
"[RAW L2 DATA] Address string of the account that withdrew"
from: String!
"[RAW L2 DATA] Account ID for the account that withdrew"
fromAccountID: Int!
"[RAW L2 DATA] Token ID of the withdrawn token"
tokenID: Int!
"[RAW L2 DATA] Amount withdrawn"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] On-chain data hash"
onchainDataHash: String!
"[RAW L2 DATA] StorageID"
storageID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type WithdrawalNFT implements Transaction & TransactionNFT @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that withdrew the tokens"
fromAccount: Account!
"Slot entity with information about the withdrawn NFT"
slot: AccountNFTSlot!
"Token entity with information about the token used to pay the operator fees"
feeToken: Token
"Whether the withdrawal transaction is valid. Only type 3 withdrawals are invalid."
valid: Boolean!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Withdrawal type"
type: Int!
"[RAW L2 DATA] Address string of the account that withdrew"
from: String!
"[RAW L2 DATA] Account ID for the account that withdrew"
fromAccountID: Int!
"[RAW L2 DATA] Token ID of the withdrawn token"
tokenID: Int!
"[RAW L2 DATA] Amount withdrawn"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] On-chain data hash"
onchainDataHash: String!
"[RAW L2 DATA] StorageID"
storageID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
nfts: [NonFungibleToken!]!
slots: [AccountNFTSlot!]!
}
type Transfer implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that sent the tokens"
fromAccount: Account!
"Account entity that received the tokens"
toAccount: Account!
"Token entity with information about the token transfered"
token: Token!
"Token entity with information about the token used to pay the operator fees"
feeToken: Token!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Transfer type"
type: Int!
"[RAW L2 DATA] Account ID for the account that sent the tokens"
accountFromID: Int!
"[RAW L2 DATA] Account ID for the account that received the tokens"
accountToID: Int!
"[RAW L2 DATA] Token ID of the token transfered"
tokenID: Int!
"[RAW L2 DATA] Amount transfered"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] StorageID"
storageID: Int!
"[RAW L2 DATA] Address string of the account that sent the tokens"
from: String!
"[RAW L2 DATA] Address string of the account that received the tokens"
to: String!
"[RAW L2 DATA] Token ID of the token transfered. Mainly used for NFT transfers"
toTokenID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type TransferNFT implements Transaction & TransactionNFT @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that sent the tokens"
fromAccount: Account!
"Account entity that received the tokens"
toAccount: Account!
"Slot entity from where the NFT is moved"
fromSlot: AccountNFTSlot!
"Slot entity to where the NFT is moved"
toSlot: AccountNFTSlot!
"Token entity with information about the token used to pay the operator fees"
feeToken: Token!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Transfer type"
type: Int!
"[RAW L2 DATA] Account ID for the account that sent the tokens"
accountFromID: Int!
"[RAW L2 DATA] Account ID for the account that received the tokens"
accountToID: Int!
"[RAW L2 DATA] Token ID of the token transfered"
tokenID: Int!
"[RAW L2 DATA] Amount transfered"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] StorageID"
storageID: Int!
"[RAW L2 DATA] Address string of the account that sent the tokens"
from: String!
"[RAW L2 DATA] Address string of the account that received the tokens"
to: String!
"[RAW L2 DATA] Token ID of the token transfered. Mainly used for NFT transfers"
toTokenID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
nfts: [NonFungibleToken!]!
slots: [AccountNFTSlot!]!
}
type Add implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that triggered the addition of liquidity from the pool"
account: Account!
"Pool entity where the liquidity was added"
pool: Pool!
"Token entity with information about the token transfered"
token: Token!
"Token entity with information about the token used to pay the operator fees"
feeToken: Token!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Transfer type"
type: Int!
"[RAW L2 DATA] Account ID for the account that sent the tokens"
accountFromID: Int!
"[RAW L2 DATA] Account ID for the account that received the tokens"
accountToID: Int!
"[RAW L2 DATA] Token ID of the token transfered"
tokenID: Int!
"[RAW L2 DATA] Amount transfered"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] StorageID"
storageID: Int!
"[RAW L2 DATA] Address string of the account that sent the tokens"
from: String!
"[RAW L2 DATA] Address string of the account that received the tokens"
to: String!
"[RAW L2 DATA] Token ID of the token transfered. Mainly used for NFT transfers"
toTokenID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type Remove implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity that triggered the removal of liquidity from the pool"
account: Account!
"Pool entity where the liquidity was removed"
pool: Pool!
"Token entity with information about the token transfered"
token: Token!
"Token entity with information about the token used to pay the operator fees"
feeToken: Token!
# Raw data parsed from the L2 data
"[RAW L2 DATA] Transfer type"
type: Int!
"[RAW L2 DATA] Account ID for the account that sent the tokens"
accountFromID: Int!
"[RAW L2 DATA] Account ID for the account that received the tokens"
accountToID: Int!
"[RAW L2 DATA] Token ID of the token transfered"
tokenID: Int!
"[RAW L2 DATA] Amount transfered"
amount: BigInt!
"[RAW L2 DATA] Token ID of token used to pay the operator fees"
feeTokenID: Int!
"[RAW L2 DATA] Fee amount paid"
fee: BigInt!
"[RAW L2 DATA] StorageID"
storageID: Int!
"[RAW L2 DATA] Address string of the account that sent the tokens"
from: String!
"[RAW L2 DATA] Address string of the account that received the tokens"
to: String!
"[RAW L2 DATA] Token ID of the token transfered. Mainly used for NFT transfers"
toTokenID: Int!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type OrderbookTrade implements Transaction @entity {
id: ID!
"Explicit copy of __typename to make it usable when filtering"
typename: TransactionType!
"ID represented as a BigDecimal for sorting purposes"
internalID: BigDecimal!
data: String!
block: Block!
"Account entity A"
accountA: Account!
"Account entity B"
accountB: Account!
"Token A. Supplied by Account A"
tokenA: Token!
"Token B. Supplied by Account B"
tokenB: Token!
"Price for 1 unit of token A for this trade. Denominated in token B"
tokenAPrice: BigInt!
"Price for 1 unit of token B for this trade. Denominated in token A"
tokenBPrice: BigInt!
"Standardized Pair entity for this trade"
pair: Pair!
# Raw data parsed from the L2 data
"[RAW L2 DATA] StorageID for account A"
storageIdA: Int!
"[RAW L2 DATA] StorageID for account B"
storageIdB: Int!
"[RAW L2 DATA] Account ID of account A"
accountIdA: Int!
"[RAW L2 DATA] Account ID of account B"
accountIdB: Int!
"[RAW L2 DATA] Token ID of token sold by account A"
tokenIDAS: Int!
"[RAW L2 DATA] Token ID of token sold by account B"
tokenIDBS: Int!
"[RAW L2 DATA] Token ID of token bought by account A. Should coincide with tokenIDBS"
tokenIDAB: Int!
"[RAW L2 DATA] Token ID of token bought by account B. Should coincide with tokenIDAS"
tokenIDBB: Int!
"[RAW L2 DATA] Float encoded value for fillSA represented as an Int"
fFillSA: Int!
"[RAW L2 DATA] Float encoded value for fillSB represented as an Int"
fFillSB: Int!
"[RAW L2 DATA] Amount of token A sold by Account A"
fillSA: BigInt!
"[RAW L2 DATA] Amount of token B sold by Account B"
fillSB: BigInt!
"[RAW L2 DATA] Order data A"
orderDataA: BigInt!
"[RAW L2 DATA] Order data B"
orderDataB: BigInt!
"[RAW L2 DATA] Order data A"
feeBipsHiA: BigInt!
"[RAW L2 DATA] Order data B"
feeBipsHiB: BigInt!
"[RAW L2 DATA] Limit mask value for order A"
limitMaskA: BigInt!
"[RAW L2 DATA] Fee bips for order A"
feeBipsA: BigInt!
"[RAW L2 DATA] Is fill amount for buy or sell for order A"
fillAmountBorSA: Boolean!
"[RAW L2 DATA] Limit mask value for order B"
limitMaskB: BigInt!
"[RAW L2 DATA] Fee bips for order B"
feeBipsB: BigInt!
"[RAW L2 DATA] Is fill amount for buy or sell for order B"
fillAmountBorSB: Boolean!
"[RAW L2 DATA] Amount of token B bought by Account A"
fillBA: BigInt!
"[RAW L2 DATA] Amount of token A bought by Account B"
fillBB: BigInt!
"[RAW L2 DATA] Fee paid by Account A with Token B"
feeA: BigInt!
"[RAW L2 DATA] Protocol fees paid by Account A"
protocolFeeA: BigInt!
"[RAW L2 DATA] Fee paid by Account B with token A"
feeB: BigInt!
"[RAW L2 DATA] Protocol fees paid by Account B"
protocolFeeB: BigInt!
tokenBalances: [AccountTokenBalance!]
accounts: [Account!]
}
type Swap implements Transaction @entity {