-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
1618 lines (1524 loc) · 40 KB
/
Copy pathschema.graphql
File metadata and controls
1618 lines (1524 loc) · 40 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
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
type UtilCache @entity {
id: ID! @index
data: JSON!
}
"""
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!
decimals: Int!
}
"""
Daily historical exchange rates for selected FX pairs.
"""
type ExchangeRateDaily @entity {
"""
Format: 'chainId:date:pair' ex '1:2026-04-17:ETH_USD'
"""
id: ID!
chainId: Int! @index
date: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
pair: String! @index
base: String!
quote: String!
rate: BigInt!
decimals: Int!
}
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!
}
# Merkl reward campaigns created by Origin (filtered on-chain by `creator`).
#
# The on-chain NewCampaign event does NOT contain the targeted contract — that lives
# in Merkl's off-chain payload. So we capture our own campaigns trustlessly on-chain
# (by creator) and resolve `targetToken` (and `armAddress`, when the target is one of
# our ARMs) inline via the Merkl API at capture time, so each row is written complete.
type MerklCampaign @entity {
id: ID! # `${chainId}:${campaignId}`
chainId: Int! @index
campaignId: String! @index
# On-chain CampaignParameters.creator (msg.sender of createCampaign) — our filter key.
creator: String! @index
rewardToken: String! @index
# Reward token decimals (Merkl API params.decimalsRewardToken), for valuing `amount`.
rewardTokenDecimals: Int!
# Gross budget including Merkl fees; immutable after creation.
amount: BigInt!
campaignType: Int! @index
startTimestamp: DateTime!
endTimestamp: DateTime!
# Seconds; mutable via overrideCampaign.
duration: Int!
# Merkl distribution strategy (params.distributionMethodParameters.distributionMethod), e.g.
# "MAX_APR". Determines actual emission vs the max (amount/duration). null if unknown.
distributionMethod: String
# APR cap for MAX_APR campaigns (params.distributionSettings.apr, e.g. 0.02 = 2%); null when
# uncapped. Actual daily rewards = min(amount/duration, aprCap * TVL / 365).
aprCap: Float
# Raw 32-byte campaignData (off-chain payload pointer/hash), for reference.
campaignData: String!
# Resolved via Merkl API (params.targetToken) at capture time: the contract whose
# holders earn rewards. null only if the campaign genuinely has no target.
targetToken: String @index
# = targetToken when it is one of our ARM LP tokens, else null. For ARM APY joins.
armAddress: String @index
createdBlockNumber: Int! @index
createdTimestamp: DateTime! @index
createdTxHash: String! @index
lastUpdatedBlockNumber: Int!
lastUpdatedTimestamp: DateTime!
}
type ProtocolDailyStat @entity {
id: ID!
date: String! @index
timestamp: DateTime! @index
rateUSD: BigInt!
supply: BigInt!
earningTvl: BigInt! # TVL of the product, including fees.
tvl: BigInt!
yield: BigInt! # Yield generated, including fees.
revenue: BigInt! # Fees generated.
apy: Float!
meta: JSON!
}
type ProtocolDailyStatDetail @entity {
id: ID!
date: String! @index
product: String! @index
timestamp: DateTime! @index
rateUSD: BigInt!
rateETH: BigInt!
supply: BigInt!
earningTvl: BigInt!
tvl: BigInt!
yield: BigInt! # Yield generated by the product, including fees.
revenue: BigInt! # Fees generated by the product.
apy: Float!
inheritedTvl: BigInt! # TVL of the product that is inherited from another product.
inheritedYield: BigInt! # Yield of the product that is inherited from another product.
inheritedRevenue: BigInt! # Fees of the product that is inherited from another product.
bridgedTvl: BigInt! # TVL of the product that is bridged from another product.
}
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 CoinGeckoCoinData @entity {
id: ID!
product: String! @index
date: String! @index
vsCurrency: String!
price: Float!
marketCap: Float!
tradingVolume: Float!
}
type OGNBuyback @entity {
id: ID!
timestamp: DateTime! @index
blockNumber: Int! @index
operator: String! @index
tokenSold: String!
amountSold: BigInt!
ognBought: BigInt!
ognBoughtUSD: Float!
txHash: String!
}
type WalletLabels @entity {
id: ID! @index
address: String!
description: String!
labels: [String!]!
lastUpdated: DateTime!
}
type OGNDailyStat @entity {
id: ID!
blockNumber: Int! @index
timestamp: DateTime! @index
totalSupply: BigInt!
totalSupplyUSD: Float!
circulatingSupply: BigInt!
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 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 Pool @entity {
id: ID!
chainId: Int! @index
address: String! @index
exchange: String! @index
name: String
symbol: String
tokens: [String!]!
symbols: [String!]!
decimals: [Int!]!
type: String!
createdAtBlock: Int!
createdAt: DateTime!
}
# Pool Booster Events
type PoolBooster @entity {
id: ID! @index # chainId-address
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
registryAddress: String! @index
ammPoolAddress: String! @index
factoryAddress: String! @index
poolBoosterType: Int!
active: Boolean!
}
type PoolBoosterBribeExecuted @entity {
id: ID! @index # chainId-address-txHash
chainId: Int! @index
address: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
txHash: String!
amount: BigInt!
fee: 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!
creditsPerToken: BigInt!
holderCount: Int!
}
type OTokenRawData @entity {
id: ID! @index
chainId: Int! @index
otoken: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
type: String!
data: JSON!
}
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 WOTokenAddressYield @entity {
id: ID! # chainId:wotoken:address:date
chainId: Int! @index
wotoken: String! @index # wrapped ERC4626 token address (the ERC20 whose transfers are tracked)
otoken: String! @index # underlying OToken address (denomination of value/yield; used for USD valuation)
address: String! @index # holder
date: String! @index
timestamp: DateTime!
blockNumber: Int! @index
balance: BigInt! # wrapped-share balance
value: BigInt! # balance * assetsPerShare / 1e18, in underlying OToken units
costBasis: BigInt! # cost of the position, in underlying OToken units
yield: BigInt! # yield accrued on this date, in underlying OToken units
cumulativeYield: BigInt! # lifetime yield, in underlying OToken units
roi: Float!
lastR: BigInt! # last checkpointed assetsPerShare (previewRedeem(1e18))
yieldRemainder: BigInt! # sub-wei accrual carry
}
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!
credits: BigInt!
creditsPerToken: BigInt!
balance: BigInt!
earned: BigInt!
yieldTo: String # For delegation source
yieldFrom: String # For delegation target
blockNumber: Int!
lastUpdated: DateTime!
since: DateTime
history: [OTokenHistory!]! @derivedFrom(field: "address")
}
type OTokenAddressYield @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
address: String! @index
date: String! @index
timestamp: DateTime!
blockNumber: Int! @index
balance: BigInt!
costBasis: BigInt!
yield: BigInt!
cumulativeYield: BigInt!
roi: Float!
}
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!
claimable: BigInt!
}
type OTokenActivity @entity {
id: ID!
chainId: Int! @index
otoken: String! @index
account: String @index
counterparty: 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!
peg: BigInt!
rateUSD: BigInt!
rateETH: BigInt!
rateNative: BigInt!
totalSupply: BigInt!
rebasingSupply: BigInt!
nonRebasingSupply: BigInt!
wrappedSupply: BigInt!
rateWrapped: 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!
perSecondTarget: BigInt
perSecondMax: 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!
claimedAt: DateTime
claimableAt: DateTime
queueWait: BigInt
txHash: String! @index
}
type OTokenYieldForwarded @entity {
id: ID!
chainId: Int! @index
blockNumber: Int! @index
timestamp: DateTime! @index
otoken: String! @index
from: String!
to: String!
fromBalance: BigInt!
amount: BigInt!
}
enum RebasingOption {
OptIn
OptOut
YieldDelegationSource
YieldDelegationTarget
}
enum HistoryType {
Sent
Received
Yield
}
type MorphoVaultApy @entity {
"""
Format: '{chainId}:{vaultAddress}:{blockNumber}'
"""
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
vaultAddress: String! @index
apy: Float!
}
# - 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! # liquidity asset (WETH / USDe / wS)
token1: String! # primary base asset; == baseAssets[0] (legacy, kept for back-compat)
# Full asset registry (arm-oeth PR #221). Ordered and APPEND-ONLY: [0] = liquidity
# asset (== token0); [1+] = base assets, appended on BaseAssetAdded. Index i is the
# alignment key for every asset* array on ArmState / ArmDailyStat. Never reorder/remove.
assets: [String!]! # asset addresses, e.g. [WETH, stETH, wstETH]
assetSymbols: [String!]! # e.g. ["WETH", "stETH", "wstETH"]
assetDecimals: [Int!]! # ERC20 decimals, aligned to assets
assetPegged: [Boolean!]! # true = 1:1 with liquidity asset (rate 1.0); [0] is always true
# IAssetAdapter address per asset (from BaseAssetAdded), used for the rate via
# convertToAssets. Zero address for [0] (liquidity asset) and pre-upgrade base assets.
assetAdapters: [String!]!
# Block at which the first BaseAssetAdded was observed = the multi-base upgrade
# (arm-oeth PR #221). Null pre-upgrade. Drives old-format vs new-format reads.
upgradeBlock: Int
}
type ArmState @entity {
id: ID!
chainId: Int! @index
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
assets0: BigInt!
assets1: BigInt!
outstandingAssets1: BigInt!
marketAssets: BigInt!
feesAccrued: BigInt!
totalAssets: BigInt!
totalAssetsCap: BigInt!
totalSupply: BigInt!
assetsPerShare: BigInt!
totalDeposits: BigInt!
totalWithdrawals: BigInt!
totalWithdrawalsClaimed: BigInt!
totalYield: BigInt!
totalFees: BigInt!
claimable: BigInt!
# Aligned to Arm.assets (append-only). Decimal strings (Subsquid can't codegen BigInt arrays).
# assetBalances[i] = raw balanceOf(asset i); [0] = idle liquidity (== assets0).
assetBalances: [String!]!
# assetTotals[0] = assets0 + outstandingAssets1 + marketAssets (all liquidity-denominated value);
# assetTotals[i>0] = balanceOf(asset i). assetTotals[i] x assetRates[i] = value in liquidity terms.
assetTotals: [String!]!
# Per-asset protocol redemptions in-flight (adapter withdrawal queues), aligned to Arm.assets.
# [0] = liquidity asset (never redeems into itself) = 0; [i>0] = pendingRedeemAssets for base
# asset i, liquidity-denominated. Per-asset form of outstandingAssets1 (== sum of [1+]).
outstandingAssets: [String!]!
# Lending-market position factors (for yield-source attribution). marketShares =
# IERC4626(activeMarket).balanceOf(arm); marketPricePerShare = convertToAssets(1e18), 1e18-scaled
# (== 1e18 when no market). marketAssets == marketShares x marketPricePerShare / 1e18.
# activeMarket = current market address (ADDRESS_ZERO if none); a change signals a market switch.
marketShares: BigInt!
marketPricePerShare: BigInt!
activeMarket: String!
}
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!
marketAssets: BigInt!
feesAccrued: BigInt!
totalAssets: BigInt!
totalAssetsCap: BigInt!
totalSupply: BigInt!
assetsPerShare: BigInt!
totalDeposits: BigInt!
totalWithdrawals: BigInt!
totalWithdrawalsClaimed: BigInt!
apr: Float!
apy: Float!
# External incentive rewards (currently Merkl campaigns) targeting this ARM. Kept separate from
# the protocol numbers above — incentives are paid outside the pool, so they don't touch
# `yield`/`apr`/`apy`. The frontend sums them for a holder's total. 0 when no campaigns active.
incentiveYield: BigInt! # day's incentive reward value, in token0 units (parallel to `yield`)
incentiveApr: Float!
incentiveApy: Float!
yield: BigInt!
fees: BigInt!
cumulativeYield: BigInt!
cumulativeFees: BigInt!
rateUSD: Float!
rateETH: Float!
rateNative: Float!
rateAsset1: Float! # primary base->liquidity rate; == assetRates[1] (legacy)
# Historical asset registry for this snapshot. All arrays below use the same indexes;
# [0] = liquidity asset and [1+] = base assets active by the end of this day.
assets: [String!]!
assetSymbols: [String!]!
assetDecimals: [Int!]!
assetBalances: [String!]! # raw balanceOf(asset i); [0] = idle liquidity
# assetTotals[0] = assets0 + outstandingAssets1 + marketAssets; [i>0] = balanceOf(asset i).
assetTotals: [String!]!
# Raw-unit asset->liquidity conversion factor, 1e18-scaled. This keeps
# rawBalance * assetRates / 1e18 in raw liquidity units even when decimals differ.
assetRates: [String!]!
# Human-unit prices, all normalized to 1e18 and aligned to assets.
# assetRatesLiquidity[0] = 1e18; the other arrays start with the liquidity asset's price.
assetRatesLiquidity: [String!]!
assetRatesUSD: [String!]!
assetRatesETH: [String!]!
assetRatesNative: [String!]!
# Per-asset protocol redemptions in-flight, aligned to Arm.assets. [0] = 0 (liquidity asset);
# [i>0] = liquidity-denominated pendingRedeemAssets for base asset i. == sum is outstandingAssets1.
outstandingAssets: [String!]!
# Lending-market position snapshot (informational; ArmDailyAssetYield.lendingYield is accrued
# segment-by-segment, not derived from these). See ArmState for semantics.
marketShares: BigInt!
marketPricePerShare: BigInt!
activeMarket: String!
}
type ArmAddressYield @entity {
id: ID!
chainId: Int! @index
arm: String! @index
address: String! @index
date: String! @index
timestamp: DateTime!
blockNumber: Int! @index
balance: BigInt!
value: BigInt!
costBasis: BigInt!
yield: BigInt!
cumulativeYield: BigInt!
roi: Float!
lastR: BigInt!
yieldRemainder: BigInt!
}
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!
claimedAt: DateTime
claimableAt: DateTime
}
type ArmSwap @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
txFrom: String!
txTo: String!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
from: String!
# One row per (transaction, base asset, direction), paired from the tx's ERC20 Transfer logs.
# Modeled as an explicit swap: tokenIn/amountIn = what the trader supplied (ARM received);
# tokenOut/amountOut = what the trader received (ARM sent). amount* are RAW token units; rate*
# is each token's raw-unit asset0 (liquidity) conversion factor at the swap block, 1e18-scaled.
# Every swap has the liquidity asset on exactly one side (the contract forbids base<->base).
# Derived: raw asset0 value = raw amount x rate / 1e18;
# execution price = amountOut / amountIn; spread = valueOut / valueIn.
tokenIn: String! @index
tokenOut: String! @index
amountIn: BigInt!
amountOut: BigInt!
rateIn: BigInt!
rateOut: BigInt!
# Legacy ARM-perspective signed deltas in asset0 terms (assets1 = base x rate). Kept for
# back-compat; superseded by the token*/amount*/rate* fields above.
assets0: BigInt!
assets1: BigInt!
# Realized trading profit in liquidity (token0) terms: (amountIn*rateIn - amountOut*rateOut)/1e18.
# The redeemable-value delta this swap causes, valuing each leg at its redemption rate (liquidity
# asset = 1e18, base asset = adapter rate). >0 when the ARM acquires base below redeemable value;
# ~0 on rearm-to-liquidity legs. Summed per base asset per day into ArmDailyAssetYield.tradingYield.
spread: BigInt!
}
type TraderateChanged @entity {
id: ID!
chainId: Int! @index
txHash: String! @index
txFee: BigInt!
timestamp: DateTime! @index
blockNumber: Int! @index
address: String! @index
# One entity covers both event versions (arm-oeth PR #221 / withdraw-on-swap), dual-written:
# the old event maps traderate0->buyPrice, traderate1->sellPrice (asset = token1); the new
# event maps buyPrice->traderate0, sellPrice->traderate1. So traderate*/buy/sellPrice and asset
# are always set (non-null). The liquidity-remaining fields only exist on the new event -> nullable.
traderate0: BigInt!
traderate1: BigInt!
asset: String! @index
buyPrice: BigInt!
sellPrice: BigInt!
buyLiquidityRemaining: BigInt # new event only (per-side remaining swap-liquidity cap)
sellLiquidityRemaining: BigInt # new event only
}
# Per arm x day x asset yield-source attribution (star schema dimensioned by asset). Partitions
# the day's redeemable-value change into non-overlapping sources, so consumers can rank assets by
# yield. One row per entry in Arm.assets: the liquidity asset [0] carries lendingYield; each base
# asset carries tradingYield + appreciationYield. yield = trading + appreciation + lending.
# All amounts in liquidity (token0) terms. This is an economic (par-valued) attribution: the sum
# over assets converges to on-chain cumulative yield over time, not tick-for-tick per day.
type ArmDailyAssetYield @entity {
id: ID! # chainId:date:arm:asset
chainId: Int! @index
address: String! @index # arm address
asset: String! @index # the asset this row attributes (base asset, or the liquidity asset)
assetSymbol: String!
date: String! @index
timestamp: DateTime! @index
blockNumber: Int! @index
# Σ ArmSwap.spread for this asset over the day (redeemable-value delta from trading). 0 for the
# liquidity asset (it is not a traded base asset).
tradingYield: BigInt!
# Held base inventory drift between events: prevBalance x (rateNow - ratePrev) / 1e18. 0 for the
# liquidity asset and for pegged base assets (rate is constant). Captures wstETH/weETH/sUSDe-style
# adapter-rate appreciation. Does NOT capture rebasing balance growth (e.g. stETH).
appreciationYield: BigInt!
# ERC4626 lending-market growth: prevMarketShares x (ppsNow - ppsPrev) / 1e18. Only nonzero on the
# liquidity-asset row. Zeroed across a market switch (activeMarket changed day-over-day).
lendingYield: BigInt!
# tradingYield + appreciationYield + lendingYield.
yield: BigInt!
# Liquidity (token0) terms volume traded for this asset over the day (context for per-asset APY).
swapVolume: BigInt!
}
type ERC20 @entity {