-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.graphql
673 lines (548 loc) · 16.1 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
# https://github.com/messari/subgraphs/blob/master/schema-generic.graphql
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!
# " Optional field to track the price of a token, mostly for caching purposes "
lastPriceUSD: BigDecimal
# " Optional field to track the block number of the last token price "
lastPriceBlockNumber: BigInt
}
# LoC
type LineOfCredit @entity {
id: ID!
# LoC, Bullet, etc.
type: String
# when line was deployed
start: Int!
# when ttl expires
end: Int!
#
status: String!
# optional. amount of reveue line gets from spigot inflows
defaultSplit: Int!
# 0x exchange address we trade against
dex: Bytes!
#stakeholders
borrower: MarketplaceActor!
oracle: Bytes!
arbiter: MarketplaceActor!
# modules
escrow: Escrow @derivedFrom(field: "line")
spigot: SpigotController @derivedFrom(field: "line")
reserves: LineReserve @derivedFrom(field: "line")
# `lines` not guaranteed to return in order of repayment queue like smart contract
positions: [Position!] @derivedFrom(field: "line")
events: [LineEventWithValue!] @derivedFrom(field: "line")
}
type LineReserve @entity {
id: ID! # line.id - token.id
line: LineOfCredit!
token: Token!
amount: BigInt!
}
type Position @entity {
id: ID! # keccak(abi.encode(line, lender, token))
line: LineOfCredit!
token: Token!
proposal: [Proposal!]! @derivedFrom(field: "position")
# if position is proposed, accepted, or closed.
status: String
# used to easily find positions by stakeholder
lender: MarketplaceActor!
borrower: MarketplaceActor!
# 0 indexed position in repayment queue
# only has value if drawndown
queue: Int
deposit: BigInt!
principal: BigInt!
# current amount of outstanding interest owed but not repaid by borrower
interestAccrued: BigInt!
# current amount of accrued interest payments repaid and waiting for lender to claim
interestRepaid: BigInt!
# lifetime gross revenue of lender on position
totalInterestEarned: BigInt!
# interest in bps charged on principal
dRate: Int!
# interest in bps charged on deposit less principal
fRate: Int!
# TODO remove usd vals, use Token price to calculate. Suffers same stale data issues as contracts
principalUsd: BigDecimal!
interestUsd: BigDecimal!
events: [LineEventWithValue!] @derivedFrom(field: "position")
}
type Proposal @entity {
id: ID! # bytes32 mutualConsent hash # TODO add index on line address so globally unique
mutualConsentFunc: String! # function signature that requres mutualConsent to call
msgData: Bytes! # hexdata passed directly into mutualConsent function call.
txInput: Bytes! # original tx data for proposal tx. May include multisig or 3rd party smart contract interactions wrapping `msgData`
args: [String!] # human readable version of params
maker: MarketplaceActor! # function signature that requres mutualConsent to call
taker: MarketplaceActor # function signature that requres mutualConsent to call
proposedAt: BigInt!
revokedAt: BigInt
acceptedAt: BigInt
endedAt: BigInt
# optional resources related to proposal
line: LineOfCredit
position: Position
events: [ProposalEvents!] @derivedFrom(field: "proposal")
}
type MarketplaceActor @entity {
id: ID! # address of account
lines: [LineOfCredit!]
positions: [Position!]
}
# type Lender implements MarketplaceActor @entity {
# id: ID!
# lines: [LineOfCredit!] # all lines they've ever lent or proposed to
# positions: [Position!] @derivedFrom(field: "lender")
# }
# type Borrower implements MarketplaceActor @entity {
# id: ID!
# lines: [LineOfCredit!] @derivedFrom(field: "borrower") # all contracts
# positions: [Position!] @derivedFrom(field: "borrower") # all πositions on all contracts
# }
# type Arbiter implements MarketplaceActor @entity {
# id: ID!
# lines: [LineOfCredit!] @derivedFrom(field: "arbiter")
# positions: [Position!] # empty for now
# }
# Line EVENTS
# dont need to track in database, just need event to initialize data
# type DeployLineEvent @entity {
# id: ID!
# block: BigInt!
# timestamp: BigInt!
# oracle: Bytes!
# arbiter: Bytes!
# bottower: Bytes!
# }
interface EventWithValue {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
amount: BigInt!
value: BigDecimal!
}
interface LineEvent {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit! # could get from Position but this makes it easier to traverse
position: Position!
}
interface LineEventWithValue implements LineEvent & EventWithValue {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit! # could get from Position but this makes it easier to traverse
position: Position!
amount: BigInt!
value: BigDecimal!
}
type UpdateStatusEvent implements LineEvent @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
status: Int!
}
interface ProposalEvents {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
proposal: Proposal! # bytes32 mututal consent hash
}
type ProposeTermsEvent implements ProposalEvents @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
proposal: Proposal! # bytes32 mututal consent hash
}
type RevokeConsentEvent implements ProposalEvents @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
proposal: Proposal! # bytes32 mututal consent hash
}
type AddCreditEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type IncreaseCreditEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
# always 0, needed for compatability
amount: BigInt!
value: BigDecimal!
}
type ClosePositionEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
# always 0, needed for compatability
amount: BigInt!
value: BigDecimal!
}
type WithdrawProfitEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type WithdrawDepositEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type BorrowEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type InterestAccruedEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type RepayInterestEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type RepayPrincipalEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type LiquidateEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal! # not necessarily the amount received from executingliquidation
liquidator: Bytes! # contract or arbiter responsible for executing liquidations
}
type DefaultEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
amount: BigInt!
value: BigDecimal!
}
type ReservesChangedEvent implements LineEventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position! # always null
reserve: LineReserve!
amount: BigInt!
value: BigDecimal! # not necessarily the amount received from executingliquidation
type: Int! # if reserve change is due to revenue or debt payment (possible for reserve to be used for both)
}
type SetRatesEvent implements LineEvent @entity {
id: ID! # block-logIndex-txLogIndex
block: BigInt!
timestamp: BigInt!
line: LineOfCredit!
position: Position!
dRate: Int! # bps
fRate: Int! # bps
}
# MODULES
# Spigot / Spigot Consumer
type SpigotController @entity {
id: ID! # address
owner: Bytes!
operator: Bytes!
line: LineOfCredit # should be `owner` if configured for collateral
startTime: BigInt! # timestamp when deployed
summaries: [SpigotRevenueSummary!] @derivedFrom(field: "controller")
spigots: [Spigot!] @derivedFrom(field: "controller")
events: [SpigotControllerEvent!] @derivedFrom(field: "controller")
}
# TODO rename Seting and Controlelr to Spigot?
type Spigot @entity {
id: ID! # spigot-revenueContract
controller: SpigotController!
contract: Bytes! # revenue generating contract
startTime: BigInt! # time that spigot started
claimFunc: Bytes
transferFunc: Bytes
active: Boolean! # if contract is currently attached to spigot
ownerSplit: Int! # % of tokens escrowed for owner
totalVolumeUsd: BigDecimal! # usd value of all tokens total volume
events: [SpigotEvent!] @derivedFrom(field: "spigot")
}
type SpigotRevenueSummary @entity {
id: ID! # controller-token
controller: SpigotController!
token: Token! # token revenue is earned in
ownerTokens: BigInt # currently claimable by spigot owner
operatorTokens: BigInt # currently claimable by spigot operator
timeOfFirstIncome: BigInt!
timeOfLastIncome: BigInt!
totalVolume: BigInt!
totalVolumeUsd: BigDecimal!
}
interface SpigotControllerEvent {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
}
type UpdateOwnerEvent implements SpigotControllerEvent @entity {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
oldOwner: Bytes!
newOwner: Bytes!
}
type UpdateOperatorEvent implements SpigotControllerEvent @entity {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
oldOperator: Bytes!
newOperator: Bytes!
}
type UpdateWhitelistFunctionEvent implements SpigotControllerEvent @entity {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
func: Bytes!
whitelisted: Boolean!
}
type ClaimOwnerTokensEvent implements SpigotControllerEvent & EventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
to: LineOfCredit!
amount: BigInt! # amount of tokens sent to Owner from escrow
value: BigDecimal!
}
type ClaimOperatorTokensEvent implements SpigotControllerEvent & EventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
to: LineOfCredit!
amount: BigInt! # amount of tokens sent to Owner from escrow
value: BigDecimal!
}
interface SpigotEvent {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
revenueToken: Token!
block: BigInt!
timestamp: BigInt!
}
type UpdateOwnerSplitEvent implements SpigotEvent @entity {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
revenueToken: Token!
block: BigInt!
timestamp: BigInt!
newSplit: Int!
}
type AddSpigotEvent implements SpigotEvent @entity {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
revenueToken: Token!
block: BigInt!
timestamp: BigInt!
}
type RemoveSpigotEvent implements SpigotEvent @entity {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
revenueToken: Token!
block: BigInt!
timestamp: BigInt!
}
type ClaimRevenueEvent implements SpigotEvent & SpigotControllerEvent & EventWithValue@entity {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
controller: SpigotController!
block: BigInt!
timestamp: BigInt!
revenueToken: Token!
amount: BigInt!
escrowed: BigInt!
netIncome: BigInt! # amount of tokens sent to Treasury after Line cut escrowed
value: BigDecimal!
}
# @dev only tracks revenue. does not track actual line repayment
type TradeRevenueEvent implements SpigotEvent & EventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
spigot: Spigot!
block: BigInt!
timestamp: BigInt!
revenueToken: Token!
sold: BigInt! # amount of tokens about
soldValue: BigDecimal! # usd value to 8 decimals
debtToken: Token!
bought: BigInt!
boughtValue: BigDecimal! # usd value to 8 decimals
amount: BigInt!
value: BigDecimal!
}
# Escrow
type Escrow @entity {
id: ID! # address
oracle: Bytes!
owner: Bytes!
line: LineOfCredit
# not accurate in real time. just used for historical snapshots
collateralValue: BigDecimal!
minCRatio: BigDecimal!
deposits: [EscrowDeposit!]! @derivedFrom(field: "escrow")
}
type EscrowDeposit @entity {
id: ID! # address-token
escrow: Escrow!
enabled: Boolean!
token: Token!
amount: BigInt!
events: [EscrowEvent!]! @derivedFrom(field: "deposit")
}
interface EscrowEvent {
id: ID! # block-logIndex-txLogIndex
deposit: EscrowDeposit!
block: BigInt!
timestamp: BigInt!
escrow: Escrow!
}
type EnableCollateralEvent implements EscrowEvent @entity {
id: ID! # block-logIndex-txLogIndex
deposit: EscrowDeposit!
block: BigInt!
timestamp: BigInt!
escrow: Escrow!
}
type AddCollateralEvent implements EscrowEvent & EventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
deposit: EscrowDeposit!
block: BigInt!
timestamp: BigInt!
amount: BigInt!
value: BigDecimal!
escrow: Escrow!
}
type RemoveCollateralEvent implements EscrowEvent & EventWithValue @entity {
id: ID! # block-logIndex-txLogIndex
deposit: EscrowDeposit!
block: BigInt!
timestamp: BigInt!
amount: BigInt!
value: BigDecimal!
escrow: Escrow!
}
# LiquidateEvent handled in LineOfCredit because more data available
# Factory EVENTS
interface DeployEvent {
id: ID!
timestamp: BigInt!
block: BigInt!
factory: Bytes!
deployer: Bytes!
deployedAt: Bytes!
}
type DeploySecuredLineEvent implements DeployEvent @entity {
#DeployEvent
id: ID!
timestamp: BigInt!
block: BigInt!
factory: Bytes!
deployer: Bytes!
deployedAt: Bytes!
# LineEventWithValue conformity
line: LineOfCredit! # same as address. Surfaces event in line logs
# event params
escrow: Escrow!
spigot: Spigot!
}
type DeploySpigotEvent implements DeployEvent & SpigotControllerEvent @entity {
# DeployEvent
id: ID!
timestamp: BigInt!
block: BigInt!
factory: Bytes!
deployer: Bytes!
deployedAt: Bytes!
# SpigotControllerEvent conformity
controller: SpigotController!
# event params
owner: Bytes!
operator: Bytes!
}
type DeployEscrowEvent implements DeployEvent @entity {
id: ID!
timestamp: BigInt!
block: BigInt!
factory: Bytes!
deployer: Bytes!
deployedAt: Bytes!
# event params
minCRatio: BigDecimal!
}
# TODO: Add back if adding feed registry back into subgraph
# type SupportedToken @entity {
# id: ID!
# oracles: [Oracle!]!
# token: Token!
# }
#
# type Oracle @entity {
# id: ID!
# supportedTokens: [SupportedToken!] @derivedFrom(field: "oracles")
# }