-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
240 lines (213 loc) · 5.34 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
type AdminChanged @entity(immutable: true) {
id: Bytes!
previousAdmin: Bytes! # address
newAdmin: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type BeaconUpgraded @entity(immutable: true) {
id: Bytes!
beacon: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Initialized @entity(immutable: true) {
id: Bytes!
version: Int! # uint8
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OverplusBridged @entity(immutable: true) {
id: Bytes!
amount: BigInt! # uint256
uniqueId: Bytes! # bytes
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type OwnershipTransferred @entity(immutable: true) {
id: Bytes!
previousOwner: Bytes! # address
newOwner: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PoolCreated @entity(immutable: true) {
id: Bytes!
poolId: BigInt! # uint256
pool_payoutStart: BigInt! # uint128
pool_decreaseInterval: BigInt! # uint128
pool_withdrawLockPeriod: BigInt! # uint128
pool_claimLockPeriod: BigInt! # uint128
pool_withdrawLockPeriodAfterStake: BigInt! # uint128
pool_initialReward: BigInt! # uint256
pool_rewardDecrease: BigInt! # uint256
pool_minimalStake: BigInt! # uint256
pool_isPublic: Boolean! # bool
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type PoolEdited @entity(immutable: true) {
id: Bytes!
poolId: BigInt! # uint256
pool_payoutStart: BigInt! # uint128
pool_decreaseInterval: BigInt! # uint128
pool_withdrawLockPeriod: BigInt! # uint128
pool_claimLockPeriod: BigInt! # uint128
pool_withdrawLockPeriodAfterStake: BigInt! # uint128
pool_initialReward: BigInt! # uint256
pool_rewardDecrease: BigInt! # uint256
pool_minimalStake: BigInt! # uint256
pool_isPublic: Boolean! # bool
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Upgraded @entity(immutable: true) {
id: Bytes!
implementation: Bytes! # address
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserClaimed @entity(immutable: true) {
id: Bytes!
poolId: BigInt! # uint256
user: Bytes! # address
receiver: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserStaked @entity(immutable: true) {
id: Bytes!
poolId: BigInt! # uint256
user: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type UserWithdrawn @entity(immutable: true) {
id: Bytes!
poolId: BigInt! # uint256
user: Bytes! # address
amount: BigInt! # uint256
blockNumber: BigInt!
blockTimestamp: BigInt!
transactionHash: Bytes!
}
type Pool @entity {
id: Bytes!
payoutStart: BigInt!
decreaseInterval: BigInt!
withdrawLockPeriod: BigInt!
claimLockPeriod: BigInt!
withdrawLockPeriodAfterStake: BigInt!
initialReward: BigInt!
rewardDecrease: BigInt!
minimalStake: BigInt!
isPublic: Boolean!
totalUsers: BigInt!
totalStaked: BigInt!
interactions: [PoolInteraction!]! @derivedFrom(field: "pool")
}
type PoolInteraction @entity(immutable: true) {
"id forms from tx hash + counter"
id: Bytes!
"The tx hash"
hash: Bytes!
"The timestamp of tx"
timestamp: BigInt!
"The pool which was interacted"
pool: Pool!
"The user who interacted with the pool"
userInPool: UserInPool!
"True if the user staked, false if the user withdrawn"
isStake: Boolean!
"The amount of staked or withdrawn tokens"
amount: BigInt!
"The total staked amount after interaction"
totalStaked: BigInt!
"The current pool rate"
rate: BigInt!
}
type UserInteraction @entity(immutable: true) {
"The tx hash"
id: Bytes!
"The timestamp of tx"
timestamp: BigInt!
"The pool ID"
poolId: BigInt!
"The caller address"
user: Bytes!
"The user rate"
rate: BigInt!
"The user deposited amount with multiplier"
deposited: BigInt!
"The user claimed rewards"
claimedRewards: BigInt!
"The user pending rewards"
pendingRewards: BigInt!
}
type User @entity {
"id forms from user address"
id: Bytes!
totalClaimed: BigInt!
}
"""
The entity holds information about user's interaction with the pool
"""
type UserInPool @entity {
"id forms from user address + pool id"
id: Bytes!
"The pool which was interacted"
pool: Pool!
"The user who interacted with the pool"
user: Bytes!
"The amount of staked tokens"
staked: BigInt!
"The amount of claimed tokens"
claimed: BigInt!
"The array of interactions with the pool"
interactions: [PoolInteraction!]! @derivedFrom(field: "userInPool")
}
"""
The entity counts interactions in single tx
"""
type InteractionCount @entity {
"The tx hash"
id: Bytes!
"The counter of interactions in single tx"
count: BigInt!
}
type UserReferrer @entity {
"id forms from user address + referrer address + pool id "
id: Bytes!
"The timestamp of tx"
timestamp: BigInt!
"The user address"
user: Bytes!
"The pool ID"
poolId: BigInt!
"The referrer address"
referrer: Bytes!
"The amount of referred tokens"
amount: BigInt!
}
type Referrer @entity {
"id forms from user address + pool id "
id: Bytes!
"The referrer address"
user: Bytes!
"The pool ID"
poolId: BigInt!
"The referrer total claimed"
totalClaimed: BigInt!
}