forked from blckchnd/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathobjects.py
More file actions
381 lines (329 loc) · 13.7 KB
/
Copy pathobjects.py
File metadata and controls
381 lines (329 loc) · 13.7 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
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 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
default_prefix = "BTS"
def AssetId(asset):
return ObjectId(asset, "asset")
def AccountId(asset):
return ObjectId(asset, "account")
class ObjectId(GPHObjectId):
""" Encodes object/protocol ids
"""
def __init__(self, object_str, type_verify=None):
if len(object_str.split(".")) == 3:
space, type, id = object_str.split(".")
self.space = int(space)
self.type = int(type)
self.instance = Id(int(id))
self.Id = object_str
if type_verify:
assert object_type[type_verify] == int(type),\
"Object id does not match object type! " +\
"Excpected %d, got %d" %\
(object_type[type_verify], int(type))
else:
raise Exception("Object id is invalid")
class Operation(GPHOperation):
def __init__(self, *args, **kwargs):
super(Operation, self).__init__(*args, **kwargs)
def _getklass(self, name):
module = __import__("bitsharesbase.operations", fromlist=["operations"])
class_ = getattr(module, name)
return class_
def operations(self):
return operations
def getOperationNameForId(self, i):
""" Convert an operation id into the corresponding string
"""
for key in operations:
if int(operations[key]) is int(i):
return key
return "Unknown Operation ID %d" % i
def json(self):
return json.loads(str(self))
class Asset(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([
('amount', Int64(kwargs["amount"])),
('asset_id', ObjectId(kwargs["asset_id"], "asset"))
]))
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"]:
if "chain" not in kwargs:
chain = default_prefix
else:
chain = kwargs["chain"]
if isinstance(chain, str) and chain in known_chains:
chain_params = known_chains[chain]
elif isinstance(chain, dict):
chain_params = chain
else:
raise Exception("Memo() only takes a string or a dict as chain!")
if "prefix" not in chain_params:
raise Exception("Memo() needs a 'prefix' in chain params!")
prefix = chain_params["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 PriceFeed(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([
('settlement_price', Price(kwargs["settlement_price"])),
('maintenance_collateral_ratio', Uint16(kwargs["maintenance_collateral_ratio"])),
('maximum_short_squeeze_ratio', Uint16(kwargs["maximum_short_squeeze_ratio"])),
('core_exchange_rate', Price(kwargs["core_exchange_rate"])),
]))
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),
('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 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]
# Sorting
for key in [
"whitelist_authorities",
"blacklist_authorities",
"whitelist_markets",
"blacklist_markets"
]:
kwargs[key] = sorted(
set(kwargs[key]),
key=lambda x: int(x.split(".")[2]),
)
super().__init__(OrderedDict([
('max_supply', Uint64(kwargs["max_supply"])),
('market_fee_percent', Uint16(kwargs["market_fee_percent"])),
('max_market_fee', Uint64(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(o, "account") for o in kwargs["whitelist_authorities"]])),
('blacklist_authorities',
Array([ObjectId(o, "account") for o in kwargs["blacklist_authorities"]])),
('whitelist_markets',
Array([ObjectId(o, "asset") for o in kwargs["whitelist_markets"]])),
('blacklist_markets',
Array([ObjectId(o, "asset") for o in kwargs["blacklist_markets"]])),
('description', String(kwargs["description"])),
('extensions', Set([])),
]))
class Worker_initializer(Static_variant):
def __init__(self, o):
class Burn_worker_initializer(GrapheneObject):
def __init__(self, kwargs):
super().__init__(OrderedDict([]))
class Refund_worker_initializer(GrapheneObject):
def __init__(self, kwargs):
super().__init__(OrderedDict([]))
class Vesting_balance_worker_initializer(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([
('pay_vesting_period_days', Uint16(kwargs["pay_vesting_period_days"])),
]))
id = o[0]
if id == 0:
data = Refund_worker_initializer(o[1])
elif id == 1:
data = Vesting_balance_worker_initializer(o[1])
elif id == 2:
data = Burn_worker_initializer(o[1])
else:
raise Exception("Unknown Worker_initializer")
super().__init__(data, id)
class SpecialAuthority(Static_variant):
def __init__(self, o):
class No_special_authority(GrapheneObject):
def __init__(self, kwargs):
super().__init__(OrderedDict([]))
class Top_holders_special_authority(GrapheneObject):
def __init__(self, kwargs):
super().__init__(OrderedDict([
('asset', ObjectId(kwargs["asset"], "asset")),
('num_top_holders', Uint8(kwargs["num_top_holders"])),
]))
id = o[0]
if id == 0:
data = No_special_authority(o[1])
elif id == 1:
data = Top_holders_special_authority(o[1])
else:
raise Exception("Unknown SpecialAuthority")
super().__init__(data, id)
class Extension(Array):
def __str__(self):
""" We overload the __str__ function because the json
representation is different for extensions
"""
return json.dumps(self.json)
class AccountCreateExtensions(Extension):
def __init__(self, *args, **kwargs):
# Extensions #################################
class Null_ext(GrapheneObject):
def __init__(self, kwargs):
super().__init__(OrderedDict([]))
class Owner_special_authority(SpecialAuthority):
def __init__(self, kwargs):
super().__init__(kwargs)
class Active_special_authority(SpecialAuthority):
def __init__(self, kwargs):
super().__init__(kwargs)
class Buyback_options(GrapheneObject):
def __init__(self, kwargs):
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
# assert "1.3.0" in kwargs["markets"], "CORE asset must be in 'markets' to pay fees"
super().__init__(OrderedDict([
('asset_to_buy', ObjectId(kwargs["asset_to_buy"], "asset")),
('asset_to_buy_issuer', ObjectId(kwargs["asset_to_buy_issuer"], "account")),
('markets', Array([
ObjectId(x, "asset") for x in kwargs["markets"]
])),
]))
# End of Extensions definition ################
if isArgsThisClass(self, args):
self.data = args[0].data
else:
if len(args) == 1 and len(kwargs) == 0:
kwargs = args[0]
self.json = dict()
a = []
sorted_options = [
"null_ext",
"owner_special_authority",
"active_special_authority",
"buyback_options"
]
sorting = sorted(kwargs.items(), key=lambda x: sorted_options.index(x[0]))
for key, value in sorting:
self.json.update({key: value})
if key == "null_ext":
a.append(Static_variant(
Null_ext({key: value}),
sorted_options.index(key))
)
elif key == "owner_special_authority":
a.append(Static_variant(
Owner_special_authority(value),
sorted_options.index(key))
)
elif key == "active_special_authority":
a.append(Static_variant(
Active_special_authority(value),
sorted_options.index(key))
)
elif key == "buyback_options":
a.append(Static_variant(
Buyback_options(value),
sorted_options.index(key))
)
else:
raise NotImplementedError("Extension {} is unknown".format(key))
super().__init__(a)