-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path__init__.py
532 lines (417 loc) · 15.7 KB
/
__init__.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
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
__all__ = [
'StorageContext',
'StorageMap',
'get',
'get_int',
'get_bool',
'get_str',
'get_uint160',
'get_uint256',
'get_ecpoint',
'try_get',
'try_get_int',
'try_get_bool',
'try_get_str',
'try_get_uint160',
'try_get_uint256',
'try_get_ecpoint',
'get_context',
'get_read_only_context',
'put',
'put_int',
'put_bool',
'put_str',
'put_uint160',
'put_uint256',
'put_ecpoint',
'delete',
'find',
]
from boa3.builtin.interop.iterator import Iterator
from boa3.builtin.type import UInt160, UInt256, ECPoint
from boa3.sc.storage.storagecontext import StorageContext
from boa3.sc.storage.storagemap import StorageMap
from boa3.sc.types import FindOptions
def get_context() -> StorageContext:
"""
Gets current storage context.
>>> get_context() # StorageContext cannot be read outside the blockchain
_InteropInterface
:return: the current storage context
:rtype: StorageContext
"""
pass
def get(key: bytes, context: StorageContext = get_context()) -> bytes:
"""
Gets a value from the persistent store based on the given key.
>>> put(b'unit', 'test')
... get(b'unit')
b'test'
>>> get(b'fake_key')
b''
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: bytes
"""
pass
def try_get(key: bytes, context: StorageContext = get_context()) -> tuple[bytes, bool]:
"""
Gets a value from the persistent store based on the given key and returns whether the value is stored.
>>> put(b'unit', 'test')
... try_get(b'unit')
(b'test', True)
>>> try_get(b'fake_key')
(b'', False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[bytes, bool]
"""
pass
def get_int(key: bytes, context: StorageContext = get_context()) -> int:
"""
Gets a value as integer from the persistent store based on the given key.
It's equivalent to boa3.builtin.type.helper.to_int(get(key, context))
>>> put_int(b'unit', 5)
... get_int(b'unit')
5
>>> get_int(b'fake_key')
0
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: int
"""
pass
def try_get_int(key: bytes, context: StorageContext = get_context()) -> tuple[int, bool]:
"""
Gets a value as integer from the persistent store based on the given key and returns whether the value is stored.
>>> put_int(b'unit', 5)
... try_get_int(b'unit')
(5, True)
>>> try_get_int(b'fake_key')
(0, False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[int, bool]
"""
pass
def get_bool(key: bytes, context: StorageContext = get_context()) -> bool:
"""
Gets a value as boolean from the persistent store based on the given key.
It's equivalent to boa3.builtin.type.helper.to_bool(get(key, context))
>>> put_bool(b'unit', True)
... get_bool(b'unit')
True
>>> get_bool(b'fake_key')
False
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: bool
"""
pass
def try_get_bool(key: bytes, context: StorageContext = get_context()) -> tuple[bool, bool]:
"""
Gets a value as boolean from the persistent store based on the given key and returns whether the value is stored.
>>> put_bool(b'unit', False)
... try_get_bool(b'unit')
(False, True)
>>> try_get_bool(b'fake_key')
(False, False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[bool, bool]
"""
pass
def get_str(key: bytes, context: StorageContext = get_context()) -> str:
"""
Gets a value as string from the persistent store based on the given key.
It's equivalent to boa3.builtin.type.helper.to_str(get(key, context))
>>> put_str(b'unit', 'test')
... get_str(b'unit')
'test'
>>> get_str(b'fake_key')
''
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: str
"""
pass
def try_get_str(key: bytes, context: StorageContext = get_context()) -> tuple[str, bool]:
"""
Gets a value as string from the persistent store based on the given key and returns whether the value is stored.
>>> put_str(b'unit', 'test')
... try_get_str(b'unit')
('test', True)
>>> try_get_str(b'fake_key')
('', False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[str, bool]
"""
pass
def get_uint160(key: bytes, context: StorageContext = get_context()) -> UInt160:
"""
Gets a value as UInt160 from the persistent store based on the given key.
It's equivalent UInt160(get(key, context))
>>> put_uint160(b'unit', UInt160(b'0123456789ABCDEFGHIJ'))
... get_uint160(b'unit')
UInt160(0x4a49484746454443424139383736353433323130)
>>> get_uint160(b'fake_key')
UInt160(0x0000000000000000000000000000000000000000)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: UInt160
"""
pass
def try_get_uint160(key: bytes, context: StorageContext = get_context()) -> tuple[UInt160, bool]:
"""
Gets a value as UInt160 from the persistent store based on the given key and returns whether the value is stored.
>>> put_uint160(b'unit', UInt160(b'0123456789ABCDEFGHIJ'))
... try_get_uint160(b'unit')
(UInt160(0x4a49484746454443424139383736353433323130), True)
>>> get_uint160(b'fake_key')
(UInt160(0x0000000000000000000000000000000000000000), False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[UInt160, bool]
"""
pass
def get_uint256(key: bytes, context: StorageContext = get_context()) -> UInt256:
"""
Gets a value as UInt256 from the persistent store based on the given key.
It's equivalent UInt256(get(key, context))
>>> put_uint256(b'unit', UInt256(b'0123456789ABCDEFGHIJKLMNOPQRSTUV'))
... get_uint256(b'unit')
UInt256(0x565554535251504f4e4d4c4b4a49484746454443424139383736353433323130)
>>> get_uint160(b'fake_key')
UInt256(0x0000000000000000000000000000000000000000000000000000000000000000)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: UInt256
"""
pass
def try_get_uint256(key: bytes, context: StorageContext = get_context()) -> tuple[UInt256, bool]:
"""
Gets a value as UInt256 from the persistent store based on the given key and returns whether the value is stored.
>>> put_uint256(b'unit', UInt256(b'0123456789ABCDEFGHIJKLMNOPQRSTUV'))
... get_uint256(b'unit')
(UInt256(0x565554535251504f4e4d4c4b4a49484746454443424139383736353433323130), True)
>>> get_uint160(b'fake_key')
(UInt256(0x0000000000000000000000000000000000000000000000000000000000000000), False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[UInt256, bool]
"""
pass
def get_ecpoint(key: bytes, context: StorageContext = get_context()) -> ECPoint:
"""
Gets a value as ECPoint from the persistent store based on the given key.
It's equivalent ECPoint(get(key, context))
>>> put_ecpoint(b'unit', ECPoint(b'0123456789ABCDEFGHIJKLMNOPQRSTUVW'))
... get_ecpoint(b'unit')
ECPoint(0x57565554535251504f4e4d4c4b4a49484746454443424139383736353433323130)
>>> get_ecpoint(b'fake_key')
ECPoint(0x000000000000000000000000000000000000000000000000000000000000000000)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context
:rtype: ECPoint
"""
pass
def try_get_ecpoint(key: bytes, context: StorageContext = get_context()) -> tuple[ECPoint, bool]:
"""
Gets a value as ECPoint from the persistent store based on the given key and returns whether the value is stored.
>>> put_ecpoint(b'unit', ECPoint(b'0123456789ABCDEFGHIJKLMNOPQRSTUVW'))
... try_get_ecpoint(b'unit')
(ECPoint(0x57565554535251504f4e4d4c4b4a49484746454443424139383736353433323130), True)
>>> try_get_ecpoint(b'fake_key')
(ECPoint(0x000000000000000000000000000000000000000000000000000000000000000000), False)
:param key: value identifier in the store
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
:return: the value corresponding to given key for current storage context and whether it was actually stored
:rtype: tuple[ECPoint, bool]
"""
pass
def get_read_only_context() -> StorageContext:
"""
Gets current read only storage context.
>>> get_context() # StorageContext cannot be read outside the blockchain
_InteropInterface
:return: the current read only storage context
:rtype: StorageContext
"""
pass
def put(key: bytes, value: bytes, context: StorageContext = get_context()):
"""
Inserts a given bytes value in the key-value format into the persistent storage.
>>> put(b'unit', b'test')
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: bytes
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_int(key: bytes, value: int, context: StorageContext = get_context()):
"""
Inserts a given integer value in the key-value format into the persistent storage.
It's equivalent to put(key, boa3.builtin.type.helper.to_int(value), context)
>>> put_int(b'unit', 5)
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: int
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_bool(key: bytes, value: bool, context: StorageContext = get_context()):
"""
Inserts a given boolean value in the key-value format into the persistent storage.
It's equivalent to put(key, boa3.builtin.type.helper.to_bool(value), context)
>>> put_bool(b'unit', True)
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: bool
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_str(key: bytes, value: str, context: StorageContext = get_context()):
"""
Inserts a given str value in the key-value format into the persistent storage.
It's equivalent to put(key, boa3.builtin.type.helper.to_str(value), context)
>>> put_str(b'unit', 'test')
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: str
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_uint160(key: bytes, value: UInt160, context: StorageContext = get_context()):
"""
Inserts a given UInt160 value in the key-value format into the persistent storage.
It's equivalent to put(key, value, context) since UInt160 is a subclass of bytes
>>> put_uint160(b'unit', UInt160(b'0123456789ABCDEFGHIJ'))
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: UInt160
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_uint256(key: bytes, value: UInt256, context: StorageContext = get_context()):
"""
Inserts a given UInt256 value in the key-value format into the persistent storage.
It's equivalent to put(key, value, context) since UInt256 is a subclass of bytes
>>> put_uint256(b'unit', UInt256(b'0123456789ABCDEFGHIJKLMNOPQRSTUV'))
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: UInt256
:param context: storage context to be used
:type context: StorageContext
"""
pass
def put_ecpoint(key: bytes, value: ECPoint, context: StorageContext = get_context()):
"""
Inserts a given ECPoint value in the key-value format into the persistent storage.
It's equivalent to put(key, value, context) since ECPoint is a subclass of bytes
>>> put_ecpoint(b'unit', ECPoint(b'0123456789ABCDEFGHIJKLMNOPQRSTUVW'))
None
:param key: the identifier in the store for the new value
:type key: bytes
:param value: value to be stored
:type value: ECPoint
:param context: storage context to be used
:type context: StorageContext
"""
pass
def delete(key: bytes, context: StorageContext = get_context()):
"""
Removes a given key from the persistent storage if exists.
>>> put(b'unit', 'test')
... delete()
... get(b'unit')
''
:param key: the identifier in the store for the new value
:type key: bytes
:param context: storage context to be used
:type context: StorageContext
"""
pass
def find(prefix: bytes,
context: StorageContext = get_context(),
options: FindOptions = FindOptions.NONE) -> Iterator:
"""
Searches in the storage for keys that start with the given prefix.
>>> put(b'a1', 'one')
... put(b'a2', 'two')
... put(b'a3', 'three')
... put(b'b4', 'four')
... findIterator = find(b'a')
... findResults = []
... while findIterator.next():
... findResults.append(findIterator.value)
... findResults
['one', 'two', 'three']
:param prefix: prefix to find the storage keys
:type prefix: bytes
:param context: storage context to be used
:type context: StorageContext
:param options: the options of the search
:type options: FindOptions
:return: an iterator with the search results
:rtype: Iterator
"""
pass