-
Notifications
You must be signed in to change notification settings - Fork 6
/
resolvers.py
277 lines (224 loc) · 8.25 KB
/
resolvers.py
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
from __future__ import annotations
from typing import Any
import pandas as pd
class RESOLVERS:
"""
A class used to resolve (format) GraphQL API responses into a Python list
or Pandas DataFrame from Luxor's API.
Methods
-------
resolve_get_subaccounts(json)
Returns a formatted object of all subaccounts that belong to the Profile owner of the API Key.
resolve_get_subaccount_hashrate_history(subaccount, mpn, inputInterval, first)
Returns an object of a subaccount hashrate timeseries.
resolve_get_subaccount_hashrate_history(json)
Returns a formatted object of a subaccount hashrate timeseries.
resolve_get_worker_details(json)
Returns a formatted object of all workers pointed to a subaccount hashrate and efficiency details.
Can be used for 1H and 24H API calls.
resolve_get_unrestricted_worker_details
Returns a formatted object of all workers pointed to a subaccount hashrate and efficiency details.
resolve_get_worker_hashrate_history(json)
Returns a formatted object of a miner hashrate timeseries.
resolve_get_profile_active_worker_count(json)
Returns a formatted object of a Profile active workers.
Workers are classified as active if we recorded a share in the last 15 minutes.
resolve_get_profile_inactive_worker_count(json)
Returns a formatted object a Profile inactive workers.
Workers are classified as inactive if we have not recorded a share in the last 15 minutes.
resolve_get_transaction_history(json)
Returns a formatted object of on-chain transactions for a subaccount and currency combo.
resolve_get_hashrate_score_history(json)
Returns a formatted object of subaccount earnings, scoring hashrate and efficiency per day.
resolve_get_revenue_ph(json)
Returns a formatted object of average Hashprice per PH over the last 24H.
"""
def __init__(self, df: bool = False):
"""
Parameters
----------
df : boolean
A boolean flag that determines the output of each method. Default = True.
"""
self.df = df
def resolve_get_subaccounts(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of all subaccounts that belong to the Profile owner of the API Key.
"""
data = [list(i["node"].values())[0] for i in json["data"]["users"]["edges"]]
if self.df:
return pd.DataFrame(data, columns=["subaccounts"])
else:
return data
def resolve_get_subaccount_mining_summary(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of a subaccount hashrate timeseries.
"""
data = json["data"]["getMiningSummary"]
if self.df:
return pd.DataFrame(
data,
columns=[
"hashrate",
"validShares",
"invalidShares",
"staleShares",
"badShares",
"lowDiffShares",
"revenue",
],
index=[0],
)
else:
return data
def resolve_get_subaccount_hashrate_history(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of a subaccount hashrate timeseries.
"""
data = [
list(i["node"].values())
for i in json["data"]["getHashrateHistory"]["edges"]
]
if self.df:
return pd.DataFrame(data, columns=["timestamp", "hashrate"])
return data
def resolve_get_worker_details(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of all workers pointed to a subaccount hashrate and efficiency details.
Can be used for 1H and 24H API calls.
"""
data = [list(i["node"].values()) for i in json["data"]["miners"]["edges"]]
if self.df:
return pd.concat(
[
pd.DataFrame([i[0] for i in data], columns=["workerNames"]),
pd.DataFrame.from_dict([i[1] for i in data]),
],
axis=1,
)
return data
def resolve_get_unrestricted_worker_details(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of all workers pointed to a subaccount hashrate and efficiency details.
"""
data = [
list(i["node"].values()) for i in json["data"]["getWorkerDetails"]["edges"]
]
if self.df:
return pd.DataFrame(
data,
columns=[
"workerName",
"hashrate",
"validShares",
"staleShares",
"badShares",
"duplicateShares",
"invalidShares",
"lowDiffShares",
"efficiency",
"revenue",
"status",
"updatedAt",
],
)
return data
def resolve_get_worker_hashrate_history(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of a miner hashrate timeseries.
"""
data = [
list(i["node"].values())
for i in json["data"]["getWorkerHashrateHistory"]["edges"]
]
if self.df:
return pd.DataFrame(data, columns=["timestamp", "hashrate"])
return data
def resolve_get_profile_active_worker_count(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of a Profile active workers.
Workers are classified as active if we recorded a share in the last 15 minutes.
"""
if self.df:
return pd.DataFrame(
[json["data"]["getProfileActiveWorkers"]],
columns=["activeWorkers"],
)
return json["data"]["getProfileActiveWorkers"]
def resolve_get_profile_inactive_worker_count(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object a Profile inactive workers.
Workers are classified as inactive if we have not recorded a share in the last 15 minutes.
"""
if self.df:
return pd.DataFrame(
[json["data"]["getProfileInactiveWorkers"]],
columns=["inactiveWorkers"],
)
return json["data"]["getProfileInactiveWorkers"]
def resolve_get_transaction_history(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of on-chain transactions for a subaccount and currency combo.
"""
data = [
list(i["node"].values())
for i in json["data"]["getAllTransactionHistory"]["edges"]
]
if self.df:
return pd.DataFrame(
data,
columns=["transactionId", "amount", "status", "payoutAddress", "currency", "createdAt"],
)
return data
def resolve_get_hashrate_score_history(
self,
json: dict[str, Any],
) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of subaccount earnings, scoring hashrate and efficiency per day.
"""
data = [
list(i.values()) for i in json["data"]["getHashrateScoreHistory"]["nodes"]
]
if self.df:
return pd.DataFrame(
data,
columns=["date", "hashrate", "efficiency", "revenue"],
)
return data
def resolve_get_revenue_ph(self, json: dict[str, Any]) -> list[Any] | pd.DataFrame:
"""
Returns a formatted object of average Hashprice per PH over the last 24H.
"""
data = json["data"]
if self.df:
return pd.DataFrame(data, index=[0])
else:
return data["getRevenuePh"]