-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
79 lines (71 loc) · 1.48 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
type EcosystemInfo @entity {
id: ID!
totalCollateralLocked: BigInt!
totalDebt: BigInt!
totalSafes: BigInt!
totalAssetClasses: BigInt!
}
type StabilityModule @entity {
id: ID!
assetSymbol: String!
balance: BigInt!
debt: BigInt!
deposit: BigInt!
createdTimeStamp: BigInt
updatedTimeStamp: BigInt
}
type AssetClass @entity {
id: ID!
collateralType: Bytes!
collateralTypeName: String!
collateral: Bytes!
collateralLocked: BigInt!
debtTokensHeld: BigInt!
activeSafes: BigInt!
safes: [SafeAssetClass!] @derivedFrom(field: "assetClass")
transactionHash: Bytes
createdTimeStamp: BigInt
}
type UserProxy @entity {
id: ID!
sender: Bytes!
owner: Bytes!
proxy: Bytes!
userProxyAssetClassStatDeposits: [UserProxyAssetClassStatDeposit!]
@derivedFrom(field: "userProxy")
transactionHash: Bytes
createdTimeStamp: BigInt
}
type SafeIdCounter @entity {
id: ID!
idCounter: BigInt!
}
type Safe @entity {
id: ID!
safeId: BigInt!
user: Bytes!
amountCollateral: BigInt!
amountCoin: BigInt!
collateralType: Bytes!
assetClass: AssetClass!
transactionHash: Bytes
createdTimeStamp: BigInt
}
type SafeAssetClass @entity {
id: ID!
safe: Safe!
assetClass: AssetClass!
}
type AssetClassUserProxy @entity {
id: ID!
assetClass: AssetClass!
userProxy: UserProxy!
}
type UserProxyAssetClassStatDeposit @entity {
id: ID!
userProxy: UserProxy!
assetClass: AssetClass!
collateralLocked: BigInt!
debtTokensHeld: BigInt!
activeSafes: BigInt!
}