-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.graphql
More file actions
1448 lines (1059 loc) · 33.9 KB
/
schema.graphql
File metadata and controls
1448 lines (1059 loc) · 33.9 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
enum RewardTokenType {
" For reward tokens awarded to LPs/lenders "
DEPOSIT
" For reward tokens awarded to borrowers "
BORROW
}
###########################
#### Deployer Metadata ####
###########################
type Deployer @entity {
" Smart contract address of the Deployer "
id: ID!
" Deployer version, in SemVer format (e.g. 2.1.0)"
deployerVersion: String!
" Block number of Deployer registration "
blockNumber: BigInt!
}
#############################
##### Protocol Metadata #####
#############################
type Protocol @entity {
" Smart contract address of the protocol's main contract (Factory, Registry, etc) "
id: ID!
" Name of the protocol, including version. e.g. Uniswap v3 "
name: String!
" Slug of protocol, including version. e.g. uniswap-v3 "
slug: String!
" Version of the subgraph schema, in SemVer format (e.g. 1.0.0) "
schemaVersion: String!
" Version of the subgraph implementation, in SemVer format (e.g. 1.0.0) "
subgraphVersion: String!
" Version of the methodology used to compute metrics, loosely based on SemVer format (e.g. 1.0.0) "
methodologyVersion: String!
##### Quantitative Data #####
" RSR amount currently locked on the protocol "
rsrStaked: BigInt!
" RSR amount currently locked on the protocol "
rsrLocked: BigInt!
" USD equivalent RSR staked amount on the protocol "
rsrStakedUSD: BigDecimal!
" USD equivalent RSR locked amount on the protocol "
rsrLockedUSD: BigDecimal!
" Current TVL (Total Value Locked) of the entire protocol "
totalValueLockedUSD: BigDecimal!
" cumulativeVolumeUSD token transfers value "
cumulativeVolumeUSD: BigDecimal!
" Revenue given to RToken holders "
cumulativeRTokenRevenueUSD: BigDecimal!
" Revenue given to RSR Stakers "
cumulativeRSRRevenueUSD: BigDecimal!
" Total distributed rsr revenue to stakers "
rsrRevenue: BigDecimal!
" All revenue generated by the protocol from the collateral yield "
cumulativeTotalRevenueUSD: BigDecimal!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total amount of RSR that has been staked across all rTokens "
totalRsrStaked: BigInt!
" Total USD of staked rsr "
totalRsrStakedUSD: BigDecimal!
" Total RSR staked "
totalRsrUnstaked: BigInt!
" Total USD of stake rsr "
totalRsrUnstakedUSD: BigDecimal!
" Total rToken usd value "
totalRTokenUSD: BigDecimal!
" Total number of rTokens "
rTokenCount: Int!
" Total number of transactions across all rTokens "
transactionCount: BigInt!
##### Snapshots #####
" Daily usage metrics for this protocol "
dailyUsageMetrics: [UsageMetricsDailySnapshot!]!
@derivedFrom(field: "protocol")
" Hourly usage metrics for this protocol "
hourlyUsageMetrics: [UsageMetricsHourlySnapshot!]!
@derivedFrom(field: "protocol")
" Daily financial metrics for this protocol "
financialMetrics: [FinancialsDailySnapshot!]! @derivedFrom(field: "protocol")
##### rTokens #####
" All rtokens that belong to this protocol "
rTokens: [RToken!]! @derivedFrom(field: "protocol")
}
###############################
##### Protocol Timeseries #####
###############################
type UsageMetricsDailySnapshot @entity {
" ID is # of days since Unix epoch time "
id: ID!
" Protocol this snapshot is associated with "
protocol: Protocol!
" Number of unique daily active users "
dailyActiveUsers: Int!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total number of transactions occurred in a day. Transactions include all entities that implement the Event interface. "
dailyTransactionCount: Int!
" All daily RSR staked "
dailyRSRStaked: BigInt!
" Total USD value of stake rsr from the day"
dailyRSRStakedUSD: BigDecimal!
" Cumulative Staked RSR "
cumulativeRSRStaked: BigInt!
" Cumulative Staked RSR USD"
cumulativeRSRStakedUSD: BigDecimal!
" All daily RSR Unstaked "
dailyRSRUnstaked: BigInt!
" Total USD value of stake rsr from the day"
dailyRSRUnstakedUSD: BigDecimal!
" Cumulative Staked RSR "
cumulativeRSRUnstaked: BigInt!
" Cumulative Staked RSR USD"
cumulativeRSRUnstakedUSD: BigDecimal!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
}
type UsageMetricsHourlySnapshot @entity {
" { # of hours since Unix epoch time } "
id: ID!
" Protocol this snapshot is associated with "
protocol: Protocol!
" Number of unique hourly active users "
hourlyActiveUsers: Int!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total number of transactions occurred in an hour. Transactions include all entities that implement the Event interface. "
hourlyTransactionCount: Int!
" All daily RSR staked "
hourlyRSRStaked: BigInt!
" Total USD value of stake rsr from the day"
hourlyRSRStakedUSD: BigDecimal!
" Cumulative Staked RSR "
cumulativeRSRStaked: BigInt!
" Cumulative Staked RSR USD"
cumulativeRSRStakedUSD: BigDecimal!
" All hourly RSR Unstaked "
hourlyRSRUnstaked: BigInt!
" Total USD value of stake rsr from the day"
hourlyRSRUnstakedUSD: BigDecimal!
" Cumulative Staked RSR "
cumulativeRSRUnstaked: BigInt!
" Cumulative Staked RSR USD"
cumulativeRSRUnstakedUSD: BigDecimal!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
}
type FinancialsDailySnapshot @entity {
" ID is # of days since Unix epoch time "
id: ID!
" Protocol this snapshot is associated with "
protocol: Protocol!
" Total RSR staked on all RTokens "
rsrStaked: BigInt!
" Total USD equivalent RSR staked amount on the protocol "
rsrStakedUSD: BigDecimal!
" Total RSR locked on all RTokens "
rsrLocked: BigInt!
" Total USD equivalent RSR locked amount on the protocol "
rsrLockedUSD: BigDecimal!
" Current TVL (Total Value Locked) of the entire protocol "
totalValueLockedUSD: BigDecimal!
" Total RToken combinated supply "
dailyVolumeUSD: BigDecimal!
" Total rToken usd value "
cumulativeVolumeUSD: BigDecimal!
" Revenue given to RToken holders "
cumulativeRTokenRevenueUSD: BigDecimal!
" Revenue given to RSR Stakers "
cumulativeRSRRevenueUSD: BigDecimal!
" All revenue generated by the protocol from the collateral yield "
cumulativeTotalRevenueUSD: BigDecimal!
" Total USD amount of all rTokens "
totalRTokenUSD: BigDecimal!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
}
###########################
#### RToken-Level Data ####
###########################
type Collateral @entity {
" Collateral erc20 address "
id: ID!
" Collateral erc20 symbol "
symbol: String!
}
type RToken @entity {
" RToken address "
id: ID!
" The protocol this pool belongs to "
protocol: Protocol!
" ERC20 token "
token: Token!
" stRSR Token "
rewardToken: RewardToken!
" Creation timestamp "
createdTimestamp: BigInt!
" Creation block number "
createdBlockNumber: BigInt!
##### Roles ####
" Token owner (can be governance address) "
owners: [String!]!
" Pausers "
pausers: [String!]!
" short freezers (this role is revoked after action) "
freezers: [String!]!
" long freezers (this role is revoked after action) "
longFreezers: [String!]!
##### Quantitative Data ####
" Collaterization of this rToken %"
backing: BigInt!
" Ratio of how much locked RSR there is corresponding to the mapping % "
backingRSR: BigInt!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total supply of rewardToken (stRSR) "
rewardTokenSupply: BigInt!
" Reward token exchange rate "
rsrExchangeRate: BigDecimal!
" Exchange rate on big int for internal calculations "
rawRsrExchangeRate: BigInt!
" How much RSR is currently locked in this RToken (overcollateralization) "
rsrLocked: BigInt!
" How much RSR is currently pooled in this RToken (earning rewards) "
rsrStaked: BigInt!
" USD equivalent RSR locked amount on the staking contract "
rsrLockedUSD: BigDecimal!
" USD equivalent RSR staked amount on the staking contract "
rsrStakedUSD: BigDecimal!
" Total RSR staked (cumulative) "
totalRsrStaked: BigInt!
" Total RSR unStaked (cumulative) "
totalRsrUnstaked: BigInt!
"Basket units of the rToken"
basketsNeeded: BigInt!
" holders rewards distribution share "
holdersRewardShare: BigDecimal!
" Stakers rewards distribution share % "
stakersRewardShare: BigDecimal!
" Revenue given to RToken holders "
cumulativeRTokenRevenue: BigDecimal!
" Revenue given to RSR Stakers "
cumulativeStakerRevenue: BigDecimal!
" Total revenue distributed in RSR "
totalDistributedRSRRevenue: BigInt!
" Total revenue distributed in RToken "
totalDistributedRTokenRevenue: BigInt!
" Targets units for the primary basket"
targetUnits: String!
" Collaterals "
collaterals: [Collateral!]!
" Collateral distribution "
collateralDistribution: String!
" Related auctions "
trades: [Trade!]! @derivedFrom(field: "rToken")
" Revenue distribution "
revenueDistribution: [RevenueDistribution!]! @derivedFrom(field: "rToken")
" Related contracts "
contracts: [RTokenContract!]! @derivedFrom(field: "rToken")
##### Snapshots #####
" RToken daily snapshots "
dailySnapshots: [RTokenDailySnapshot!]! @derivedFrom(field: "rToken")
" RToken hourly snapshots "
hourlySnapshots: [RTokenHourlySnapshot!]! @derivedFrom(field: "rToken")
" RToken historical baskets "
historicalBaskets: [RTokenHistoricalBaskets!]! @derivedFrom(field: "rToken")
}
type RTokenDailySnapshot @entity {
" { Smart contract address of the rToken }-{ # of days since Unix epoch time } "
id: ID!
" The protocol this snapshot belongs to "
protocol: Protocol!
" The rToken this snapshot belongs to "
rToken: RToken!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
##### Quantitative Data #####
" Number of unique daily active users "
dailyActiveUsers: Int!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" How much RSR is currently locked "
rsrStaked: BigInt!
" Total supply of rewardToken "
rewardTokenSupply: BigInt!
" Total RSR staked "
dailyRSRStaked: BigInt!
" cumulative RSR staked "
cumulativeRSRStaked: BigInt!
" Total RSR staked "
dailyRSRUnstaked: BigInt!
" cumulative RSR staked "
cumulativeRSRUnstaked: BigInt!
" Reward token exchange rate "
rsrExchangeRate: BigDecimal!
" Daily revenue given to RToken holders "
dailyRTokenRevenueUSD: BigDecimal!
" Revenue given to RToken holders "
cumulativeRTokenRevenueUSD: BigDecimal!
" Daily Revenue given to RSR Stakers "
dailyRSRRevenueUSD: BigDecimal!
" Revenue given to RSR Stakers "
cumulativeRSRRevenueUSD: BigDecimal!
" RSR price "
rsrPrice: BigDecimal!
}
type RTokenHourlySnapshot @entity {
" { Smart contract address of the rToken }-{ # of hours since Unix epoch time } "
id: ID!
" The protocol this snapshot belongs to "
protocol: Protocol!
" The pool this snapshot belongs to "
rToken: RToken!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
##### Quantitative Data #####
" Number of unique daily active users "
hourlyActiveUsers: Int!
" Number of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total supply of rewardToken "
rewardTokenSupply: BigInt
" How much RSR is currently locked "
rsrStaked: BigInt!
" Total RSR staked in an hour"
hourlyRSRStaked: BigInt!
" cumulative RSR staked "
cumulativeRSRStaked: BigInt!
" Total RSR staked "
hourlyRSRUnstaked: BigInt!
" cumulative RSR staked "
cumulativeRSRUnstaked: BigInt!
" Reward token exchange rate "
rsrExchangeRate: BigDecimal!
" Daily revenue given to RToken holders "
hourlyRTokenRevenueUSD: BigDecimal!
" Revenue given to RToken holders "
cumulativeRTokenRevenueUSD: BigDecimal!
" Hourly Revenue given to RSR Stakers "
hourlyRSRRevenueUSD: BigDecimal!
" Revenue given to RSR Stakers "
cumulativeRSRRevenueUSD: BigDecimal!
}
type Trade @entity {
" { Smart contract address of the auction } "
id: ID!
" GnosisAuctionId - Optional not required for dutchTrades "
auctionId: BigInt
" Auction trade amount "
amount: BigDecimal!
" Min buy amount "
minBuyAmount: BigDecimal!
" amount bought (on settle) "
boughtAmount: BigDecimal
" Worst case price "
worstCasePrice: BigDecimal!
" Selling token "
selling: String!
" Buying token "
buying: String!
" Sell tokens symbol "
sellingTokenSymbol: String!
"Sell token decimals"
sellingTokenDecimals: Int!
" Buy token symbol "
buyingTokenSymbol: String!
" Buying token decimals "
buyingTokenDecimals: Int!
" started At timestamp "
startedAt: BigInt!
" End time timestamp "
endAt: BigInt!
" rToken id "
rToken: RToken!
" Is settle check "
isSettled: Boolean!
" Settle tx hash "
settleTxHash: String
" Trade kind 0 = dutch 1 = batch "
kind: Int!
}
#############################
####### Token Metadata ######
#############################
type RewardToken @entity {
" { Reward token type }-{ Smart contract address of the reward token } "
id: ID!
" Reference to the actual token "
token: Token!
" RToken relation "
rToken: RToken
" The type of the reward token "
type: RewardTokenType!
}
type Token @entity {
" Smart contract address of the token "
id: ID!
" Name of the token, mirrored from the smart contract "
name: String!
" Symbol of the token, mirrored from the smart contract "
symbol: String!
" The number of decimal places this token uses, default to 18 "
decimals: Int!
" Number of unique token holders "
holderCount: BigInt!
" Number of unique token users "
userCount: Int!
" Total number of token transfer events "
transferCount: BigInt!
" Total number of token mint events "
mintCount: BigInt!
" Total number of token burn events "
burnCount: BigInt!
" Total token supply "
totalSupply: BigInt!
" Total token burned "
totalBurned: BigInt!
" Total token minted "
totalMinted: BigInt!
" Cumulative all time token transfers volume "
cumulativeVolume: BigInt!
" USD Price "
lastPriceUSD: BigDecimal!
" last market cap in USD"
lastMarketCapUSD: BigDecimal!
" Exchange rate between basket units to totalSupply of rToken "
basketRate: BigDecimal!
" Optional field to track the block number of the last token price "
lastPriceTimestamp: BigInt!
" RToken relation "
rToken: RToken
" List of token entries "
records: [Entry!]! @derivedFrom(field: "token")
" Token holder's balance "
holdersBalance: [AccountBalance!]! @derivedFrom(field: "token")
##### Snapshots #####
" Daily snapshot for this token "
dailyTokenSnapshot: [TokenDailySnapshot!]! @derivedFrom(field: "token")
" Hourly snapshot for this token "
hourlyTokenSnapshot: [TokenHourlySnapshot!]! @derivedFrom(field: "token")
}
type RTokenContract @entity {
" {Address of related contract} "
id: ID!
" Contract name "
name: String!
" Related rToken"
rToken: RToken!
}
type RevenueDistribution @entity {
" { Address Of the Account }-{ Address of the RToken } "
id: ID!
" Destination address "
destination: String!
" Number of shares in RToken "
rTokenDist: Int!
" Number of shares in RSR "
rsrDist: Int!
" RToken entity "
rToken: RToken!
}
###############################
####### Token Timeseries ######
###############################
type TokenDailySnapshot @entity {
" { Token Address }-{ # of days since Unix epoch time } "
id: ID!
" Token this snapshot is associated with "
token: Token!
" Daily total Supply of the token "
dailyTotalSupply: BigInt!
" # of accounts holding this token "
dailyHolderCount: Int!
" # of unique daily active users/holders "
dailyActiveUsers: Int!
" # of cumulative unique users/holders "
cumulativeUniqueUsers: Int!
" Total number of events occurred in a day "
dailyEventCount: Int!
" Total number of mints in a day "
dailyMintCount: Int!
" Total number of token minted in a day "
dailyMintAmount: BigInt!
" Total number of burns in a day "
dailyBurnCount: Int!
" Total number of token burnt in a day "
dailyBurnAmount: BigInt!
" Daily transfer volume "
dailyVolume: BigInt!
" USD Price "
priceUSD: BigDecimal!
" Exchange rate between basket units to totalSupply of rToken "
basketRate: BigDecimal!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
}
type TokenHourlySnapshot @entity {
" { Token Address }-{ # of hours since Unix epoch time } "
id: ID!
" Token this snapshot is associated with "
token: Token!
" Hourly total Supply of the token "
hourlyTotalSupply: BigInt!
" # of accounts holding this token "
hourlyHolderCount: Int!
" # of unique hourly active users "
hourlyActiveUsers: Int!
" # of cumulative unique users "
cumulativeUniqueUsers: Int!
" Total number of events occurred in an hour "
hourlyEventCount: Int!
" Total number of mints in a hour "
hourlyMintCount: Int!
" Total amount of token minted in a hour "
hourlyMintAmount: BigInt!
" Total number of burns in a hour "
hourlyBurnCount: Int!
" Total number of token burnt in a hour "
hourlyBurnAmount: BigInt!
" Hourly transfer volume "
hourlyVolume: BigInt!
" USD Price "
priceUSD: BigDecimal!
" Exchange rate between basket units to totalSupply of rToken "
basketRate: BigDecimal!
" Block number of this snapshot "
blockNumber: BigInt!
" Timestamp of this snapshot "
timestamp: BigInt!
}
##################################
##### Event-Level Data #####
##################################
interface Event {
" { Token ID }-{ Transaction hash }-{ Log index } "
id: ID!
" Transaction hash of the transaction that emitted this event "
hash: String!
" Event log index. For transactions that don't emit event, create arbitrary index starting from 0 "
logIndex: Int!
" The token this event belongs to "
token: Token!
" Nonce of the transaction that emitted this event "
nonce: Int!
" Account that sent the transaction "
from: Account!
" Block number of this event "
blockNumber: BigInt!
" Timestamp of this event "
timestamp: BigInt!
}
type Entry implements Event @entity {
" { Token ID }-{ Transaction hash }-{ Log index } "
id: ID!
" Transaction hash of the transaction that emitted this event "
hash: String!
" Event log index. For transactions that don't emit event, create arbitrary index starting from 0 "
logIndex: Int!
" The token this event belongs to "
token: Token!
" Nonce of the transaction that emitted this event "
nonce: Int!
" Account that sent the transaction "
from: Account!
" Block number of this event "
blockNumber: BigInt!
" Timestamp of this event "
timestamp: BigInt!
" Entry Type "
type: String!
" TRANSFER - Account that received the tokens "
to: Account
" The rToken this event belongs to "
rToken: RToken
" Stake/Unstake - staking token amount"
stAmount: BigInt
" Transaction amount "
amount: BigInt
" Transaction amount USD"
amountUSD: BigDecimal
}
##################################
######## Account MetaData ########
##################################
# An account is a unique Ethereum address
type Account @entity {
" Address of the account "
id: ID!
" rToken related transactions from this account "
records: [Entry!]! @derivedFrom(field: "from")
" rTokens related to this account "
rTokens: [AccountRToken!]! @derivedFrom(field: "account")
" rToken snapshots that this account holds "
rTokensSnapshot: [AccountRTokenDailySnapshot!]! @derivedFrom(field: "account")
" Token balances that this account holds "
balances: [AccountBalance!]! @derivedFrom(field: "account")
" Token balances snapshot that this account holds "
balancesSnapshot: [AccountBalanceDailySnapshot!]!
@derivedFrom(field: "account")
}
type AccountRToken @entity {
" { Address Of the Account }-{ Address of the rToken } "
id: ID!
" Account address "
account: Account!
" rToken address "
rToken: RToken!
" Token balance "
balance: AccountBalance!
" Stake stRSR balance "
stake: BigDecimal!
governance: [TokenHolder!]! @derivedFrom(field: "accountRToken")
" Total staked stRSR "
totalStaked: BigInt!
" Pending stRSR to be unstaked "
pendingUnstake: BigInt!
" Total Unstaked stRSR "
totalUnstaked: BigInt!
" Total historical stake RSR "
totalRSRStaked: BigInt!
" Total Unstaked "
totalRSRUnstaked: BigInt!
" Block number in which the stake was last modified "
blockNumber: BigInt!
" Timestamp in which the stake was last modified "
timestamp: BigInt!
" Records "
records: [AccountStakeRecord!]! @derivedFrom(field: "account")
}
type AccountStakeRecord @entity {
" { Address Of the Account }-{ Address of the rToken }-{ tx hash } "
id: ID!
" tx hash "
hash: String!
" Account related to "
account: AccountRToken!
" stRSR amount "
amountRaw: BigInt!
" readable amount "
amount: BigDecimal!
" RSR amount "
rsrAmountRaw: BigInt!
" Readable RSR amount "
rsrAmount: BigDecimal!
" RSR price "
rsrPriceUSD: BigDecimal!
" Exchange rate "
exchangeRateRaw: BigInt!
" readable exchange rate "
exchangeRate: BigDecimal!
" isStake "
isStake: Boolean!
" Block number "
blockNumber: BigInt!
" Timestamp "
timestamp: BigInt!
}
type AccountBalance @entity {
" { Address Of the Account }-{ Address of the Token }"
id: ID!
" Account address "
account: Account!
" Token address "
token: Token!
" Current account balance "
amount: BigDecimal!
" Transfer count "
transferCount: Int!
" Block number in which the balance was last modified "
blockNumber: BigInt!
" Timestamp in which the balance was last modified "
timestamp: BigInt!
}
# Helper entity for calculating daily/hourly active users