forked from qwerwon/SGBL_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutxo.py
More file actions
100 lines (80 loc) · 3.06 KB
/
utxo.py
File metadata and controls
100 lines (80 loc) · 3.06 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
import base64
import json
import plyvel
class UTXO(object):
def __init__(self, txOutid, index, address, amount):
# Key = txOutid(in byte) + index.to_bytes(1, byteorder="little")
self.txOutid = txOutid # string
self.index = index # int
self.address = address # string => bytes => PublicKey(pub, raw=True)로 디코딩
self.amount = amount # float
'''
Vout.lock => UTXO.address
(bytes => string)
sig_str = base64.b64encode(sig_bytes).decode('utf-8')
UTXO.address => Vout.lock
(string => bytes)
sig_bytes = base64.b64decode(sig_str)
'''
# UTXOset Class
########################################################################################################################
class UTXOset(object):
# class variables
_UTXOset = 0
_myUTXOset = 0
@classmethod
def initialize(cls):
cls. _UTXOset = plyvel.DB('./db/UTXOset/', create_if_missing=True)
cls. _myUTXOset = plyvel.DB('./db/myUTXOset/', create_if_missing=True)
@classmethod
def Insert_UTXO(cls, txOutid, index, address, amount):
"""
Key of DB : txOutid + index.to_bytes(1, byteorder="little")
Args:
txOutid : bytes
index : int
address : string
amount : int
"""
key = txOutid + index.to_bytes(1, byteorder="little")
txOutid_str = base64.b64encode(txOutid).decode('utf-8')
address_str = base64.b64encode(address).decode('utf-8')
utxo={'txOutid':txOutid_str, 'index': index, 'address': address_str, 'amount': amount}
utxo_en=json.dumps(utxo)
cls._UTXOset.put(key, utxo_en.encode())
@classmethod
def Pop_UTXO(cls, txOutid, index):
"""
Key of DB : txOutid + index.to_bytes(1, byteorder="little")
Args:
txOutid : bytes
index : int
"""
key = txOutid + index.to_bytes(1, byteorder="little")
cls._UTXOset.delete(key, sync=True)
@classmethod
def Insert_myUTXO(cls, txOutid, index, address, amount):
"""
Key of DB : txOutid + index.to_bytes(1, byteorder="little")
Args:
txOutid : bytes
index : int
address : string
amount : int
"""
key = txOutid + index.to_bytes(1, byteorder="little")
txOutid_str = base64.b64encode(txOutid).decode('utf-8')
address_str = base64.b64encode(address).decode('utf-8')
myutxo={'txOutid':txOutid_str, 'index': index, 'address': address_str, 'amount': amount}
myutxo_en=json.dumps(myutxo)
cls._myUTXOset.put(key, myutxo_en.encode())
@classmethod
def Pop_myUTXO(cls, txOutid, index):
"""
Key of DB : txOutid + index.to_bytes(1, byteorder="little")
Args:
txOutid : bytes
index : int
"""
key = txOutid + index.to_bytes(1, byteorder="little")
cls._myUTXOset.delete(key, sync=True)