-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathobjects.py
More file actions
488 lines (431 loc) · 17.1 KB
/
Copy pathobjects.py
File metadata and controls
488 lines (431 loc) · 17.1 KB
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
import json
from collections import OrderedDict
from graphenebase.types import (
Uint8,
Int16,
Uint16,
Uint32,
Uint64,
Varint32,
Int64,
String,
Bytes,
Void,
Array,
PointInTime,
Signature,
Bool,
Set,
Fixed_array,
Optional,
Static_variant,
Map,
Id,
VoteId,
ObjectId as GPHObjectId,
)
from graphenebase.objects import Operation as GrapheneOperation
from graphenebase.objects import Asset
from graphenebase.objects import GrapheneObject, isArgsThisClass
from .chains import known_chains
from .objecttypes import object_type
from .account import PublicKey
from graphenebase.objects import Operation as GPHOperation
from .operationids import operations
from .types import Enum, Sha256
default_prefix = "PPY"
class ObjectId(GPHObjectId):
""" Need to overwrite a few attributes to load proper object_types from
peerplays
"""
object_types = object_type
class Operation(GrapheneOperation):
""" Need to overwrite a few attributes to load proper operations from
bitshares
"""
module = "peerplaysbase.operations"
operations = operations
def AssetId(asset):
return ObjectId(asset, "asset")
def AccountId(asset):
return ObjectId(asset, "account")
class Memo(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
if "message" in kwargs and kwargs["message"]:
prefix = kwargs.pop("prefix", default_prefix)
super().__init__(
OrderedDict(
[
("from", PublicKey(kwargs["from"], prefix=prefix)),
("to", PublicKey(kwargs["to"], prefix=prefix)),
("nonce", Uint64(int(kwargs["nonce"]))),
("message", Bytes(kwargs["message"])),
]
)
)
else:
super().__init__(None)
class Price(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[("base", Asset(kwargs["base"])), ("quote", Asset(kwargs["quote"]))]
)
)
class Permission(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
prefix = kwargs.pop("prefix", default_prefix)
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
# Sort keys (FIXME: ideally, the sorting is part of Public
# Key and not located here)
kwargs["key_auths"] = sorted(
kwargs["key_auths"],
key=lambda x: repr(PublicKey(x[0], prefix=prefix).address),
reverse=False,
)
accountAuths = Map(
[
[ObjectId(e[0], "account"), Uint16(e[1])]
for e in kwargs["account_auths"]
]
)
keyAuths = Map(
[
[PublicKey(e[0], prefix=prefix), Uint16(e[1])]
for e in kwargs["key_auths"]
]
)
super().__init__(
OrderedDict(
[
("weight_threshold", Uint32(int(kwargs["weight_threshold"]))),
("account_auths", accountAuths),
("key_auths", keyAuths),
("address_auths", []),
("extensions", Set([])),
]
)
)
class AccountOptions(GrapheneObject):
def __init__(self, *args, **kwargs):
# Allow for overwrite of prefix
prefix = kwargs.pop("prefix", default_prefix)
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
# remove dublicates
kwargs["votes"] = list(set(kwargs["votes"]))
# Sort votes
kwargs["votes"] = sorted(
kwargs["votes"], key=lambda x: float(x.split(":")[1])
)
super().__init__(
OrderedDict(
[
("memo_key", PublicKey(kwargs["memo_key"], prefix=prefix)),
(
"voting_account",
ObjectId(kwargs["voting_account"], "account"),
),
("num_witness", Uint16(kwargs["num_witness"])),
("num_committee", Uint16(kwargs["num_committee"])),
("votes", Array([VoteId(o) for o in kwargs["votes"]])),
("extensions", Set([])),
]
)
)
class BetType(Enum):
options = ["back", "lay"]
class BettingMarketResolution(Enum):
options = ["win", "not_win", "cancel", "BETTING_MARKET_RESOLUTION_COUNT"]
class BettingMarketStatus(Enum):
options = [
"unresolved", # no grading has been published for this betting market
"frozen", # bets are suspended, no bets allowed
"graded", # grading of win or not_win has been published
"canceled", # the betting market is canceled, no further bets are allowed
"settled", # the betting market has been paid out
"BETTING_MARKET_STATUS_COUNT",
]
class BettingMarketGroupStatus(Enum):
options = [
"upcoming", # betting markets are accepting bets, will never go "in_play"
"in_play", # betting markets are delaying bets
"closed", # betting markets are no longer accepting bets
"graded", # witnesses have published win/not win for the betting markets
"re_grading", # initial win/not win grading has been challenged
"settled", # paid out
"frozen", # betting markets are not accepting bets
"canceled", # canceled
"BETTING_MARKET_GROUP_STATUS_COUNT",
]
class EventStatus(Enum):
options = [
"upcoming", # Event has not started yet, betting is allowed
"in_progress", # Event is in progress, if "in-play" betting is enabled, bets will be delayed
"frozen", # Betting is temporarily disabled
"finished", # Event has finished, no more betting allowed
"canceled", # Event has been canceled, all betting markets have been canceled
"settled", # All betting markets have been paid out
"STATUS_COUNT",
]
class AssetOptions(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[
("max_supply", Int64(kwargs["max_supply"])),
("market_fee_percent", Uint16(kwargs["market_fee_percent"])),
("max_market_fee", Int64(kwargs["max_market_fee"])),
("issuer_permissions", Uint16(kwargs["issuer_permissions"])),
("flags", Uint16(kwargs["flags"])),
("core_exchange_rate", Price(kwargs["core_exchange_rate"])),
(
"whitelist_authorities",
Array(
[
ObjectId(x, "account")
for x in kwargs["whitelist_authorities"]
]
),
),
(
"blacklist_authorities",
Array(
[
ObjectId(x, "account")
for x in kwargs["blacklist_authorities"]
]
),
),
(
"whitelist_markets",
Array(
[
ObjectId(x, "asset")
for x in kwargs["whitelist_markets"]
]
),
),
(
"blacklist_markets",
Array(
[
ObjectId(x, "asset")
for x in kwargs["blacklist_markets"]
]
),
),
("description", String(kwargs["description"])),
("extensions", Set([])),
]
)
)
class BitAssetOptions(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[
("feed_lifetime_sec", Uint32(kwargs["feed_lifetime_sec"])),
("minimum_feeds", Uint8(kwargs["minimum_feeds"])),
(
"force_settlement_delay_sec",
Uint32(kwargs["force_settlement_delay_sec"]),
),
(
"force_settlement_offset_percent",
Uint16(kwargs["force_settlement_offset_percent"]),
),
(
"maximum_force_settlement_volume",
Uint16(kwargs["maximum_force_settlement_volume"]),
),
(
"short_backing_asset",
ObjectId(kwargs["short_backing_asset"], "asset"),
),
("extensions", Set([])),
]
)
)
class DividendAssetOptions(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
if "next_payout_time" in kwargs:
next_payout_time = Optional(PointInTime(kwargs["next_payout_time"]))
else:
next_payout_time = Optional(None)
if "payout_interval" in kwargs:
payout_interval = Optional(Uint32(kwargs["payout_interval"]))
else:
payout_interval = Optional(None)
super().__init__(
OrderedDict(
[
("next_payout_time", next_payout_time),
("payout_interval", payout_interval),
(
"minimum_fee_percentage",
Uint64(kwargs["minimum_fee_percentage"]),
),
(
"minimum_distribution_interval",
Uint32(kwargs["minimum_distribution_interval"]),
),
("extensions", Set([])),
]
)
)
class Rock_paper_scissors_gesture(Enum):
options = ["rock", "paper", "scissors", "spock", "lizard"]
class GameSpecificMoves(Static_variant):
def __init__(self, o):
class rock_paper_scissors_throw_commit(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[
("nonce1", Uint64(kwargs["nonce1"])),
("throw_hash", Sha256(kwargs["throw_hash"])),
]
)
)
class rock_paper_scissors_throw_reveal(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[
("nonce2", Uint64(kwargs["nonce2"])),
(
"gesture",
Rock_paper_scissors_gesture(kwargs["gesture"]),
),
]
)
)
id = o[0]
if id == 0:
data = rock_paper_scissors_throw_commit(o[1])
elif id == 1:
data = rock_paper_scissors_throw_reveal(o[1])
else:
raise Exception("Unknown game-specific move: {}".format(id))
super().__init__(data, id)
class GameSpecificOptions(Static_variant):
def __init__(self, o):
class rock_paper_scissors_game_options(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
super().__init__(
OrderedDict(
[
(
"insurance_enabled",
Bool(kwargs["insurance_enabled"]),
),
(
"time_per_commit_move",
Uint32(kwargs["time_per_commit_move"]),
),
(
"time_per_reveal_move",
Uint32(kwargs["time_per_reveal_move"]),
),
(
"number_of_gestures",
Uint8(kwargs["number_of_gestures"]),
),
]
)
)
id = o[0]
if id == 0:
data = rock_paper_scissors_game_options(o[1])
else:
raise Exception("Unknown game-specific options")
super().__init__(data, id)
class TournamentOptions(GrapheneObject):
def __init__(self, *args, **kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
start_time = Optional(
PointInTime(kwargs["start_time"]) if "start_time" in kwargs else None
)
start_delay = Optional(
Uint32(kwargs["start_delay"]) if "start_delay" in kwargs else None
)
if "meta" in kwargs and kwargs["meta"]:
raise NotImplementedError('"meta" cannot yet be used with this library')
super().__init__(
OrderedDict(
[
(
"registration_deadline",
PointInTime(kwargs["registration_deadline"]),
),
("number_of_players", Uint32(kwargs["number_of_players"])),
("buy_in", Asset(kwargs["buy_in"])),
(
"whitelist",
Array(
[ObjectId(x, "account") for x in kwargs["whitelist"]]
),
),
("start_time", start_time),
("start_delay", start_delay),
("round_delay", Uint32(kwargs["round_delay"])),
("number_of_wins", Uint32(kwargs["number_of_wins"])),
("meta", Optional(None)),
("game_options", GameSpecificOptions(kwargs["game_options"])),
]
)
)
class ResolutionConstraint(Enum):
options = ["exactly_one_winner", "at_most_one_winner"]