-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathwallet.py
More file actions
398 lines (352 loc) · 13.4 KB
/
wallet.py
File metadata and controls
398 lines (352 loc) · 13.4 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
import logging
import os
from steem.instance import shared_steemd_instance
from steembase import bip38
from steembase.account import PrivateKey
from steembase.exceptions import (InvalidWifError, WalletExists)
from .account import Account
log = logging.getLogger(__name__)
class Wallet:
""" The wallet is meant to maintain access to private keys for
your accounts. It either uses manually provided private keys
or uses a SQLite database managed by storage.py.
:param Steem rpc: RPC connection to a Steem node
:param array,dict,string keys: Predefine the wif keys to shortcut
the wallet database
Three wallet operation modes are possible:
* **Wallet Database**: Here, steemlibs loads the keys from the
locally stored wallet SQLite database (see ``storage.py``).
To use this mode, simply call ``Steem()`` without the
``keys`` parameter
* **Providing Keys**: Here, you can provide the keys for
your accounts manually. All you need to do is add the wif
keys for the accounts you want to use as a simple array
using the ``keys`` parameter to ``Steem()``.
* **Force keys**: This more is for advanced users and
requires that you know what you are doing. Here, the
``keys`` parameter is a dictionary that overwrite the
``active``, ``owner``, ``posting`` or ``memo`` keys for
any account. This mode is only used for *foreign*
signatures!
"""
masterpassword = None
# Keys from database
configStorage = None
MasterPassword = None
keyStorage = None
# Manually provided keys
keys = {} # struct with pubkey as key and wif as value
keyMap = {} # type:wif pairs to force certain keys
def __init__(self, steemd_instance=None, **kwargs):
from steembase.storage import configStorage
self.configStorage = configStorage
# RPC
self.steemd = steemd_instance or shared_steemd_instance()
self.prefix = "STM"
if "keys" in kwargs:
self.setKeys(kwargs["keys"])
else:
""" If no keys are provided manually we load the SQLite
keyStorage
"""
from steembase.storage import (keyStorage, MasterPassword)
self.MasterPassword = MasterPassword
self.keyStorage = keyStorage
def setKeys(self, loadkeys):
""" This method is strictly only for in memory keys that are
passed to Wallet/Steem with the ``keys`` argument
"""
log.debug(
"Force setting of private keys. Not using the wallet database!")
if isinstance(loadkeys, dict):
Wallet.keyMap = loadkeys
loadkeys = list(loadkeys.values())
elif not isinstance(loadkeys, list):
loadkeys = [loadkeys]
for wif in loadkeys:
try:
key = PrivateKey(wif)
except: # noqa FIXME(sneak)
raise InvalidWifError
Wallet.keys[format(key.pubkey, self.prefix)] = str(key)
def unlock(self, pwd=None):
""" Unlock the wallet database
"""
if not self.created():
self.newWallet()
if (self.masterpassword is None
and self.configStorage[self.MasterPassword.config_key]):
if pwd is None:
pwd = self.getPassword()
masterpwd = self.MasterPassword(pwd)
self.masterpassword = masterpwd.decrypted_master
def lock(self):
""" Lock the wallet database
"""
self.masterpassword = None
def locked(self):
""" Is the wallet database locked?
"""
return False if self.masterpassword else True
def changePassphrase(self):
""" Change the passphrase for the wallet database
"""
# Open Existing Wallet
pwd = self.getPassword()
masterpwd = self.MasterPassword(pwd)
self.masterpassword = masterpwd.decrypted_master
# Provide new passphrase
print("Please provide the new password")
newpwd = self.getPassword(confirm=True)
# Change passphrase
masterpwd.changePassword(newpwd)
def created(self):
""" Do we have a wallet database already?
"""
if len(self.getPublicKeys()):
# Already keys installed
return True
elif self.MasterPassword.config_key in self.configStorage:
# no keys but a master password
return True
else:
return False
def newWallet(self):
""" Create a new wallet database
"""
if self.created():
raise WalletExists("You already have created a wallet!")
print("Please provide a password for the new wallet")
pwd = self.getPassword(confirm=True)
masterpwd = self.MasterPassword(pwd)
self.masterpassword = masterpwd.decrypted_master
def encrypt_wif(self, wif):
""" Encrypt a wif key
"""
self.unlock()
return format(
bip38.encrypt(PrivateKey(wif), self.masterpassword), "encwif")
def decrypt_wif(self, encwif):
""" decrypt a wif key
"""
try:
# Try to decode as wif
PrivateKey(encwif)
return encwif
except: # noqa FIXME(sneak)
pass
self.unlock()
return format(bip38.decrypt(encwif, self.masterpassword), "wif")
def getPassword(self, confirm=False, text='Passphrase: '):
""" Obtain a password from the user
"""
import getpass
if "UNLOCK" in os.environ:
# overwrite password from environmental variable
return os.environ.get("UNLOCK")
if confirm:
# Loop until both match
while True:
pw = self.getPassword(confirm=False)
if not pw:
print("You cannot chosen an empty password! " +
"If you want to automate the use of the libs, " +
"please use the `UNLOCK` environmental variable!")
continue
else:
pwck = self.getPassword(
confirm=False, text="Confirm Passphrase: ")
if pw == pwck:
return pw
else:
print("Given Passphrases do not match!")
else:
# return just one password
return getpass.getpass(text)
def addPrivateKey(self, wif):
""" Add a private key to the wallet database
"""
# it could be either graphenebase or pistonbase so we can't check
# the type directly
if isinstance(wif, PrivateKey) or isinstance(wif, PrivateKey):
wif = str(wif)
try:
pub = format(PrivateKey(wif).pubkey, self.prefix)
except: # noqa FIXME(sneak)
raise InvalidWifError(
"Invalid Private Key Format. Please use WIF!")
if self.keyStorage:
# Test if wallet exists
if not self.created():
self.newWallet()
self.keyStorage.add(self.encrypt_wif(wif), pub)
def getPrivateKeyForPublicKey(self, pub):
""" Obtain the private key for a given public key
:param str pub: Public Key
"""
if Wallet.keys:
if pub in Wallet.keys:
return Wallet.keys[pub]
elif len(Wallet.keys) == 1:
# If there is only one key in my overwrite-storage, then
# use that one! Whether it will has sufficient
# authorization is left to ensure by the developer
return list(self.keys.values())[0]
else:
# Test if wallet exists
if not self.created():
self.newWallet()
return self.decrypt_wif(
self.keyStorage.getPrivateKeyForPublicKey(pub))
def removePrivateKeyFromPublicKey(self, pub):
""" Remove a key from the wallet database
"""
if self.keyStorage:
# Test if wallet exists
if not self.created():
self.newWallet()
self.keyStorage.delete(pub)
def removeAccount(self, account):
""" Remove all keys associated with a given account
"""
accounts = self.getAccounts()
for a in accounts:
if a["name"] == account:
self.removePrivateKeyFromPublicKey(a["pubkey"])
def getOwnerKeyForAccount(self, name):
""" Obtain owner Private Key for an account from the wallet database
"""
if "owner" in Wallet.keyMap:
return Wallet.keyMap.get("owner")
else:
account = self.steemd.get_account(name)
if not account:
return
for authority in account["owner"]["key_auths"]:
key = self.getPrivateKeyForPublicKey(authority[0])
if key:
return key
return False
def getPostingKeyForAccount(self, name):
""" Obtain owner Posting Key for an account from the wallet database
"""
if "posting" in Wallet.keyMap:
return Wallet.keyMap.get("posting")
else:
account = self.steemd.get_account(name)
if not account:
return
for authority in account["posting"]["key_auths"]:
key = self.getPrivateKeyForPublicKey(authority[0])
if key:
return key
return False
def getMemoKeyForAccount(self, name):
""" Obtain owner Memo Key for an account from the wallet database
"""
if "memo" in Wallet.keyMap:
return Wallet.keyMap.get("memo")
else:
account = self.steemd.get_account(name)
if not account:
return
key = self.getPrivateKeyForPublicKey(account["memo_key"])
if key:
return key
return False
def getActiveKeyForAccount(self, name):
""" Obtain owner Active Key for an account from the wallet database
"""
if "active" in Wallet.keyMap:
return Wallet.keyMap.get("active")
else:
account = self.steemd.get_account(name)
if not account:
return
for authority in account["active"]["key_auths"]:
key = self.getPrivateKeyForPublicKey(authority[0])
if key:
return key
return False
def getAccountFromPrivateKey(self, wif):
""" Obtain account name from private key
"""
pub = format(PrivateKey(wif).pubkey, self.prefix)
return self.getAccountFromPublicKey(pub)
def getAccountFromPublicKey(self, pub):
""" Obtain account name from public key
"""
# FIXME, this only returns the first associated key.
# If the key is used by multiple accounts, this
# will surely lead to undesired behavior
names = self.steemd.call(
'get_key_references', [pub], api="account_by_key_api")[0]
if not names:
return None
else:
return names[0]
def getAccount(self, pub):
""" Get the account data for a public key
"""
name = self.getAccountFromPublicKey(pub)
if not name:
return {"name": None, "type": None, "pubkey": pub}
else:
try:
account = Account(name, steemd_instance=self.steemd)
except: # noqa FIXME(sneak)
return
keyType = self.getKeyType(account, pub)
return {
"name": name,
"account": account,
"type": keyType,
"pubkey": pub
}
def getKeyType(self, account, pub):
""" Get key type
"""
for authority in ["owner", "posting", "active"]:
for key in account[authority]["key_auths"]:
if pub == key[0]:
return authority
if pub == account["memo_key"]:
return "memo"
return None
def getAccounts(self):
""" Return all accounts installed in the wallet database
"""
pubkeys = self.getPublicKeys()
accounts = []
for pubkey in pubkeys:
# Filter those keys not for our network
if pubkey[:len(self.prefix)] == self.prefix:
accounts.append(self.getAccount(pubkey))
return accounts
def getAccountsWithPermissions(self):
""" Return a dictionary for all installed accounts with their
corresponding installed permissions
"""
accounts = [self.getAccount(a) for a in self.getPublicKeys()]
r = {}
for account in accounts:
name = account["name"]
if not name:
continue
type = account["type"]
if name not in r:
r[name] = {
"posting": False,
"owner": False,
"active": False,
"memo": False
}
r[name][type] = True
return r
def getPublicKeys(self):
""" Return all installed public keys
"""
if self.keyStorage:
return self.keyStorage.getPublicKeys()
else:
return list(Wallet.keys.keys())