-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
1853 lines (1719 loc) · 36.5 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
# GENERATED, DO NOT MODIFY
"""
Any entity which has a price associated with it should have that price go in here.
Prices can change very frequently and we don't want those changes on the same track
as values which change less frequently.
"""
type ExchangeRate @entity {
"""
Format: 'chainId:blockNumber:pair' ex '1:123456789:ETH_USD'
"""
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
pair: String!
base: String!
quote: String!
rate: BigInt!
}
type NativeBalance @entity {
"""
Format: 'account:blockNumber'
"""
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
account: String!
balance: BigInt!
}
type LegacyStaker @entity {
id: ID! @index
inputAmount: BigInt!
outputAmount: BigInt!
balance: BigInt!
rewardAmount: BigInt!
}
type CurvePool @entity {
id: ID!
address: String! @index
name: String!
tokenCount: Int!
token0: String!
token1: String!
token2: String
}
type CurvePoolBalance @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String!
balance0: BigInt!
balance1: BigInt!
balance2: BigInt!
}
type CurvePoolRate @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String!
name: String!
rate: BigInt!
}
type ProtocolDailyStat @entity {
id: ID!
date: String! @index
timestamp: DateTime! @index
rateUSD: BigInt!
earningTVL: BigInt!
tvl: BigInt!
revenue: BigInt!
apy: Float!
meta: JSON!
}
type ProtocolDailyStatDetail @entity {
id: ID!
date: String! @index
product: String! @index
timestamp: DateTime! @index
rateUSD: BigInt!
earningTVL: BigInt!
tvl: BigInt!
revenue: BigInt!
apy: Float!
}
type BeaconDepositEvent @entity {
id: ID! # `chainId:logId`
chainId: Int! @index
address: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
caller: String! @index
# Event Data
pubkey: BeaconDepositPubkey!
withdrawalCredentials: String!
amount: String!
signature: String!
index: String!
}
type BeaconDepositPubkey @entity {
id: ID! # `pubkey`
createDate: DateTime!
lastUpdated: DateTime!
count: Int!
deposits: [BeaconDepositEvent!] @derivedFrom(field: "pubkey")
}
type AccountingConsensusRewards @entity {
id: ID! # `chainId:logId`
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
rewards: BigInt!
}
type ExecutionRewardsCollected @entity {
id: ID! # `chainId:logId`
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
strategy: String! @index
amount: BigInt!
}
type BalancerPool @entity {
id: ID!
address: String! @index
name: String!
tokenCount: Int!
token0: String!
token1: String!
token2: String
token3: String
}
type BalancerPoolBalance @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String!
balance0: BigInt!
balance1: BigInt!
balance2: BigInt!
balance3: BigInt!
}
type BalancerPoolRate @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String!
rate0: BigInt!
rate1: BigInt!
rate2: BigInt!
rate3: BigInt!
}
type CoinGeckoCoinData @entity {
id: ID!
product: String! @index
date: String! @index
vsCurrency: String!
price: Float!
marketCap: Float!
tradingVolume: Float!
}
type OGNDailyStat @entity {
id: ID!
blockNumber: Int! @index
timestamp: DateTime! @index
totalSupply: BigInt!
totalSupplyUSD: Float!
totalStaked: BigInt!
tradingVolumeUSD: Float!
marketCapUSD: Float!
priceUSD: Float!
holdersOverThreshold: Int!
}
type OGV @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
circulating: BigInt!
staked: BigInt!
total: BigInt!
}
type OGVAddress @entity {
id: ID! @index
balance: BigInt!
staked: BigInt!
veogvBalance: BigInt!
votingPower: BigInt!
delegatee: OGVAddress
lastUpdated: DateTime!
}
enum OGVLockupEventType {
Staked
Unstaked
Extended
}
type OGVLockupTxLog @entity {
id: ID!
hash: String!
event: OGVLockupEventType!
timestamp: DateTime!
blockNumber: Int!
totalSupply: BigInt!
ogvLockup: OGVLockup!
}
type OGVLockup @entity {
id: ID!
lockupId: String! @index
address: OGVAddress! @index
logs: [OGVLockupTxLog]! @derivedFrom(field: "ogvLockup")
amount: BigInt!
end: DateTime!
veogv: BigInt! # Amount of veOGV received
timestamp: DateTime!
# active: Boolean
}
enum OGVProposalState {
Pending
Active
Canceled
Defeated
Succeeded
Queued
Expired
Executed
}
enum OGVProposalEvent {
Created
Queued
Canceled
Extended
Executed
}
enum OGVVoteType {
Against
For
Abstain
}
type OGVProposalTxLog @entity {
id: ID!
hash: String!
event: OGVProposalEvent!
timestamp: DateTime!
proposal: OGVProposal! @index
}
type OGVProposal @entity {
id: ID! @index
description: String
proposer: OGVAddress!
timestamp: DateTime!
startBlock: BigInt!
endBlock: BigInt!
lastUpdated: DateTime!
status: OGVProposalState!
logs: [OGVProposalTxLog]! @derivedFrom(field: "proposal")
quorum: BigInt!
choices: [String]!
scores: [String]!
}
type OGVProposalVote @entity {
id: ID!
proposal: OGVProposal! @index
voter: OGVAddress! @index
weight: BigInt!
type: OGVVoteType!
txHash: String!
timestamp: DateTime!
}
type OGVDailyStat @entity {
id: ID!
blockNumber: Int! @index
timestamp: DateTime! @index
totalSupply: BigInt!
totalSupplyUSD: Float!
totalStaked: BigInt!
tradingVolumeUSD: Float!
marketCapUSD: Float!
priceUSD: Float!
holdersOverThreshold: Int!
}
type BridgeTransfer @entity {
id: ID! # chain + log id
timestamp: DateTime! @index
blockNumber: Int! @index
txHashIn: String!
txHashOut: String # Initially null
messageId: String! @index
bridge: String! @index
transactor: String! @index
sender: String! @index
receiver: String! @index
chainIn: Int! @index
chainOut: Int!
tokenIn: String!
tokenOut: String!
amountIn: BigInt!
amountOut: BigInt!
state: Int!
}
type BridgeTransferState @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
state: Int!
}
type TransactionDetails @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
from: String! @index
to: String! @index
gasUsed: BigInt!
effectiveGasPrice: BigInt!
transactionFee: BigInt!
}
type OToken @entity {
id: ID! @index
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
unallocatedSupply: BigInt!
totalSupply: BigInt!
rebasingSupply: BigInt!
nonRebasingSupply: BigInt!
holderCount: Int!
}
type WOToken @entity {
id: ID! @index
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
totalAssets: BigInt!
totalSupply: BigInt!
assetsPerShare: BigInt!
}
type OTokenAsset @entity {
id: ID! @index
chainId: Int! @index
otoken: String! @index
address: String! @index
symbol: String!
}
type OTokenAddress @entity {
id: ID! @index
chainId: Int! @index
otoken: String! @index
address: String! @index
isContract: Boolean!
rebasingOption: RebasingOption!
balance: BigInt!
earned: BigInt!
credits: BigInt!
delegatedTo: String
blockNumber: Int!
lastUpdated: DateTime!
history: [OTokenHistory!]! @derivedFrom(field: "address")
}
type OTokenHistory @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
address: OTokenAddress! @index
value: BigInt!
balance: BigInt!
timestamp: DateTime!
blockNumber: Int! @index
txHash: String! @index
type: HistoryType!
}
type OTokenRebase @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
totalSupply: BigInt!
rebasingCredits: BigInt!
rebasingCreditsPerToken: BigInt!
apy: OTokenAPY!
fee: BigInt!
feeETH: BigInt!
feeUSD: BigInt!
yield: BigInt!
yieldETH: BigInt!
yieldUSD: BigInt!
}
type OTokenRebaseOption @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
address: OTokenAddress!
status: RebasingOption!
delegatedTo: String
}
type OTokenAPY @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
date: String! @index
apr: Float!
apy: Float!
apy7DayAvg: Float!
apy14DayAvg: Float!
apy30DayAvg: Float!
rebasingCreditsPerToken: BigInt!
}
type OTokenVault @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
vaultBuffer: BigInt!
totalValue: BigInt!
}
type OTokenActivity @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String! @index
type: OTokenActivityType
data: JSON
}
enum OTokenActivityType {
Approval
Bridge
ClaimRewards
DelegateVote
ExtendStake
Migrate
Stake
Transfer
Swap
Wrap
Unwrap
Mint
Redeem
Zap
Unstake
Vote
}
type OTokenDailyStat @entity {
id: ID! # chain-otokenAddress-YYYY-MM-DD
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
date: String! @index
apr: Float!
apy: Float!
apy7: Float!
apy14: Float!
apy30: Float!
rateUSD: BigInt!
rateETH: BigInt!
totalSupply: BigInt!
rebasingSupply: BigInt!
nonRebasingSupply: BigInt!
wrappedSupply: BigInt!
amoSupply: BigInt
dripperWETH: BigInt!
yield: BigInt!
fees: BigInt!
cumulativeYield: BigInt!
cumulativeFees: BigInt!
marketCapUSD: Float!
accountsOverThreshold: Int!
}
type OTokenDripperState @entity {
id: ID! # chain-otokenAddress-blockNumber
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
wethBalance: BigInt!
availableFunds: BigInt!
lastCollect: BigInt!
perSecond: BigInt!
dripDuration: BigInt!
}
type OTokenHarvesterYieldSent @entity {
id: ID! # log.id
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
txHash: String!
yield: BigInt!
fee: BigInt!
}
type OTokenRewardTokenCollected @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
strategy: String!
recipient: String!
rewardToken: String!
amount: BigInt!
}
type OTokenWithdrawalRequest @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
requestId: BigInt!
withdrawer: String!
amount: BigInt!
queued: BigInt!
claimed: Boolean!
txHash: String! @index
}
enum RebasingOption {
OptIn
OptOut
YieldDelegationSource
YieldDelegationTarget
}
enum HistoryType {
Sent
Received
Yield
}
# - P1: For UI
# - stETH ARM TVL
# - stETH ARM APY 30 day trailing
# - stETH ARM historical APY chart
# - Deposited balance per wallet address
# - stETH ARM deposits/ withdrawals (notification in bot channel)
# - Nice to Have (not launch blocking):
# - Breakout of what is external liquidity vs. deposited by Origin
# - stETH ARM # of external LPs
# - stETH ARM size of holdings of external LPs
# - stETH redemption queue length
# - Activity history (deposits/withdrawals per wallet address)
# - Earnings per wallet address
type Arm @entity {
id: ID!
chainId: Int!
address: String!
name: String!
symbol: String!
decimals: Int!
token0: String!
token1: String!
}
type ArmState @entity {
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
assets0: BigInt!
assets1: BigInt!
outstandingAssets1: BigInt!
totalAssets: BigInt!
totalAssetsCap: BigInt!
totalSupply: BigInt!
assetsPerShare: BigInt!
totalDeposits: BigInt!
totalWithdrawals: BigInt!
totalYield: BigInt!
totalFees: BigInt!
}
type ArmDailyStat @entity {
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
date: String! @index
address: String! @index
assets0: BigInt!
assets1: BigInt!
outstandingAssets1: BigInt!
totalAssets: BigInt!
totalAssetsCap: BigInt!
totalSupply: BigInt!
assetsPerShare: BigInt!
apr: Float!
apy: Float!
yield: BigInt!
fees: BigInt!
rateUSD: Float!
}
type ArmWithdrawalRequest @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
account: String! @index
requestId: BigInt!
amount: BigInt!
queued: BigInt!
claimed: Boolean!
}
type ArmSwap @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
from: String!
assets0: BigInt!
assets1: BigInt!
}
type TraderateChanged @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
traderate0: BigInt!
traderate1: BigInt!
}
type ERC20 @entity {
id: ID!
chainId: Int! @index
address: String! @index
name: String!
decimals: Int!
symbol: String!
}
type ERC20Holder @entity {
id: ID!
chainId: Int! @index
address: String! @index
account: String! @index
balance: BigInt!
}
type ERC20State @entity {
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String!
totalSupply: BigInt!
holderCount: Int!
}
type ERC20Balance @entity {
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
account: String! @index
balance: BigInt!
}
type ERC20Transfer @entity {
id: ID!
chainId: Int! @index
txHash: String!
blockNumber: Int!
timestamp: DateTime!
address: String! @index
from: String! @index
fromBalance: BigInt!
to: String! @index
toBalance: BigInt!
value: BigInt!
}
type ProcessingStatus @entity {
id: ID!
timestamp: DateTime!
blockNumber: Int!
startTimestamp: DateTime! # when we started processing
headTimestamp: DateTime # when we first hit head block
}
type AeroCLGaugeClaimFees @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
claimed0: BigInt!
claimed1: BigInt!
}
type AeroCLGaugeClaimRewards @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
amount: BigInt!
}
type AeroCLGaugeDeposit @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
user: String! @index
tokenId: BigInt! @index
liquidityToStake: BigInt!
}
type AeroCLGaugeNotifyReward @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
amount: BigInt!
}
type AeroCLGaugeWithdraw @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
user: String! @index
tokenId: BigInt! @index
liquidityToStake: BigInt!
}
type AeroCLPoolBurn @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
owner: String! @index
tickLower: Int!
tickUpper: Int!
amount: BigInt!
amount0: BigInt!
amount1: BigInt!
}
type AeroCLPoolCollect @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
owner: String! @index
recipient: String!
tickLower: Int!
tickUpper: Int!
amount0: BigInt!
amount1: BigInt!
}
type AeroCLPoolCollectFees @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
recipient: String! @index
amount0: BigInt!
amount1: BigInt!
}
type AeroCLPoolFlash @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
sender: String! @index
recipient: String! @index
amount0: BigInt!
amount1: BigInt!
paid0: BigInt!
paid1: BigInt!
}
type AeroCLPoolIncreaseObservationCardinalityNext @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
observationCardinalityNextOld: Int!
observationCardinalityNextNew: Int!
}
type AeroCLPoolInitialize @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
sqrtPriceX96: BigInt!
tick: Int!
}
type AeroCLPoolMint @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
sender: String!
owner: String! @index
tickLower: Int!
tickUpper: Int!
amount: BigInt!
amount0: BigInt!
amount1: BigInt!
}
type AeroCLPoolSetFeeProtocol @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
feeProtocol0Old: Int!
feeProtocol1Old: Int!
feeProtocol0New: Int!
feeProtocol1New: Int!
}
type AeroCLPoolSwap @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
sender: String! @index
recipient: String! @index
amount0: BigInt!
amount1: BigInt!
sqrtPriceX96: BigInt!
liquidity: BigInt!
tick: Int!
}
type AeroGaugeClaimFees @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
claimed0: BigInt!
claimed1: BigInt!
}
type AeroGaugeClaimRewards @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
amount: BigInt!
}
type AeroGaugeDeposit @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
to: String! @index
amount: BigInt!
}
type AeroGaugeNotifyReward @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
amount: BigInt!
}
type AeroGaugeWithdraw @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
from: String! @index
amount: BigInt!
}
type AeroPoolCreated @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
pool: String!
token0: String!
token1: String!
stable: Boolean!
}
type AeroCLPoolCreated @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
pool: String!
token0: String!
token1: String!
tickSpacing: Int!
}
type AeroPoolApproval @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
address: String! @index
owner: String! @index
spender: String! @index
value: BigInt!
}
type AeroPoolBurn @entity {