-
Notifications
You must be signed in to change notification settings - Fork 8
/
utxo.py
154 lines (121 loc) · 4.32 KB
/
utxo.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
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):
"""
Open and initialize Database of UTXOset and myUTXOset
"""
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):
"""
Insert UTXO into UTXO DB as
key : txOutid(bytes) + index(bytes)
value : {'txOutid': string, 'index': int, 'address': string, 'amount': float}
Args:
txOutid : bytes
index : int
address : string
amount : float
"""
key = txOutid + index.to_bytes(1, byteorder="little")
txOutid_str = base64.b64encode(txOutid).decode('utf-8')
utxo={'txOutid':txOutid_str, 'index': index, 'address': address, 'amount': amount}
utxo_en=json.dumps(utxo)
cls._UTXOset.put(key, utxo_en.encode())
@classmethod
def Pop_UTXO(cls, txOutid, index):
"""
Delete UTXO from UTXO
key : txOutid(bytes) + index(bytes)
Args:
txOutid : bytes
index : int
"""
key = txOutid + index.to_bytes(1, byteorder="little")
cls._UTXOset.delete(key, sync=True)
@classmethod
def get_UTXO(cls, txOutid, index):
"""
Fetch UTXO from UTXO DB
key : txOutid(bytes) + index(bytes)
Args:
txOutid : bytes
index : int
return:
UTXO object or False
"""
key = txOutid + index.to_bytes(1, byteorder="little")
result = cls._UTXOset.get(key, default=None)
if result is None:
return False
else:
data_json = json.loads(result)
return UTXO(txOutid, index, data_json['address'], data_json['amount'])
@classmethod
def Insert_myUTXO(cls, txOutid, index, address, amount):
"""
Insert UTXO into myUTXO DB as
key : txOutid(bytes) + index(bytes)
value : {'txOutid': string, 'index': int, 'address': string, 'amount': float}
Args:
txOutid : bytes
index : int
address : string
amount : float
"""
key = txOutid + index.to_bytes(1, byteorder="little")
txOutid_str = base64.b64encode(txOutid).decode('utf-8')
myutxo={'txOutid':txOutid_str, 'index': index, 'address': address, '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)
@classmethod
def get_myUTXO(cls, txOutid, index):
"""
Fetch UTXO from myUTXO DB
key : txOutid(bytes) + index(bytes)
Args:
txOutid : bytes
index : int
return:
UTXO object or False
"""
key = txOutid + index.to_bytes(1, byteorder="little")
result = cls._myUTXOset.get(key, default=None)
if result is None:
return False
else:
data_json = json.loads(result)
return UTXO(txOutid, index, data_json['address'], data_json['amount'])