-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
189 lines (168 loc) · 3.97 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
type PlatformEntity @entity {
id: Bytes! #address platform
factory: Bytes # address
vaultManager: Bytes # address
strategyLogic: Bytes # address
buildingPermitToken: Bytes # address
buildingPayPerVaultToken: Bytes # address
governance: Bytes # address
multisig: Bytes # address
zap: Bytes # address
bridge: Bytes # fe
swapper: Bytes # address
dexAggreagators: [Bytes!] # address[]
bcAssets: [Bytes!] # address[]
version: String
}
type VaultEntity @entity {
id: Bytes! #address
apr: BigInt!
tvl: BigInt!
sharePrice: BigInt!
vaultType: String!
strategyId: String!
totalSupply: BigInt!
strategy: Bytes! #address
strategyDescription: String!
assetsProportions: [BigInt!]
deployAllowed: Boolean!
upgradeAllowed: Boolean!
color: Bytes!
colorBackground: Bytes!
vaultBuildingPrice: BigInt!
version: String!
name: String!
symbol: String!
underlying: Bytes!
strategySpecific: String!
strategyAssets: [Bytes!]! #addresses
assetsWithApr: [Bytes!]! #addresses
assetsAprs: [BigInt!]!
lastHardWork: BigInt!
vaultStatus: BigInt!
hardWorkOnDeposit: Boolean!
created: BigInt!
userVault: [UserVaultEntity!]
vaultUsersList: [String!]!
gasReserve: BigInt
NFTtokenID: BigInt!
AssetsPricesOnCreation: [BigInt!]!
lifeTimeAPR: BigInt!
vaultHistoryEntity: [VaultHistoryEntity!]
almRebalanceHistoryEntity: [ALMRebalanceHistoryEntity!]
initAssetsAmounts: [BigInt!]
lastAssetsPrices: [String!]!
lastAssetsSum: String!
}
type VaultTypeEntity @entity {
id: String! #VaultType
deployAllowed: Boolean!
upgradeAllowed: Boolean!
color: Bytes!
colorBackground: Bytes!
vaultBuildingPrice: BigInt!
version: String!
}
type StrategyEntity @entity {
id: Bytes! #address
strategyId: String!
tokenId: BigInt!
#shortName: String! #??
color: Bytes!
colorBackground: Bytes!
version: String!
pool: Bytes #address
underlyingSymbol: String
underlyingDecimals: String
}
type StrategyConfigEntity @entity {
id: String! #string ID
version: String!
}
type AssetHistoryEntity @entity(immutable: true) {
id: Bytes!
address: Bytes! #address
price: BigInt!
timestamp: BigInt!
}
type VaultHistoryEntity @entity(immutable: true) {
id: String!
address: Bytes! #address
sharePrice: BigInt!
TVL: BigInt
APR: BigInt
APR_Compound: BigInt
APR24H: BigInt
APRWeekly: BigInt
lastAssetsPrices: [String!]
timestamp: BigInt!
daysFromCreation: String
periodVsHoldAPR: String
periodAssetsVsHoldAPR: [String!]
lifetimeVsHold: String
lifetimeAssetsVsHold: [String!]
vsHold24H: String
vsHoldWeekly: String
assetsVsHold24H: [String!]
assetsVsHoldWeekly: [String!]
vsHoldAPR: String
assetsVsHoldAPR: [String!]
}
# VaultAPRsEntity -> VaultMetricsEntity
type VaultMetricsEntity @entity {
id: Bytes! #address
APRS: [BigInt!]!
timestamps: [BigInt!]!
periodVsHoldAPRs: [String!]!
periodAsset1VsHoldAPRs: [String!]!
periodAsset2VsHoldAPRs: [String!]!
}
type ALMRebalanceHistoryEntity @entity(immutable: true) {
id: Bytes!
alm: Bytes! #address
protocol: String!
timestamp: BigInt!
totalAssets0: BigInt!
totalAssets1: BigInt!
totalUSD: BigInt!
fee0: BigInt!
fee1: BigInt!
feeUSD: BigInt!
isRebalance: Boolean!
APRFromLastEvent: BigInt!
APR24H: BigInt
APRWeekly: BigInt
}
type LastFeeAMLEntity @entity {
id: Bytes! #address underlying
vault: Bytes! #address
fee: BigInt
managerFee: BigInt
factoryFee: BigInt
total_fee: BigInt
APRS: [BigInt!]!
timestamps: [BigInt!]!
}
type DefiEdgePoolsAndStrategiesEntity @entity {
id: Bytes! #address factory
pools: [Bytes!]!
strategies: [Bytes!]!
}
type UserHistoryEntity @entity(immutable: true) {
id: Bytes!
userAddress: Bytes! #address
deposited: BigInt
rewardsEarned: BigInt
timestamp: BigInt!
}
type UserAllDataEntity @entity {
id: Bytes! #address
vaults: [Bytes!]!
deposited: BigInt!
rewardsEarned: BigInt!
}
type UserVaultEntity @entity {
id: String! #Vault:User address
deposited: BigInt!
rewardsEarned: BigInt!
}