2019-07-21 18:50:32 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright (c) 2019 tecnovert
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file LICENSE.txt or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Atomic Swap Client - Proof of Concept
|
|
|
|
|
|
|
|
sudo pip install python-gnupg
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import hashlib
|
|
|
|
import mmap
|
|
|
|
import tarfile
|
|
|
|
import stat
|
2019-07-21 19:20:36 +00:00
|
|
|
import time
|
2019-07-21 18:50:32 +00:00
|
|
|
from urllib.request import urlretrieve
|
|
|
|
import urllib.parse
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import gnupg
|
|
|
|
|
2019-07-21 19:20:36 +00:00
|
|
|
import basicswap.config as cfg
|
|
|
|
from basicswap.util import callrpc_cli
|
|
|
|
from bin.basicswap_run import startDaemon
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
BIN_ARCH = 'x86_64-linux-gnu.tar.gz'
|
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
known_coins = {
|
|
|
|
'particl': '0.18.1.0',
|
|
|
|
'litecoin': '0.17.1',
|
|
|
|
'bitcoin': '0.18.0',
|
|
|
|
'namecoin': '0.18.0',
|
|
|
|
}
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
logger = logging.getLogger()
|
|
|
|
logger.level = logging.DEBUG
|
|
|
|
if not len(logger.handlers):
|
|
|
|
logger.addHandler(logging.StreamHandler(sys.stdout))
|
|
|
|
|
|
|
|
|
|
|
|
def make_reporthook():
|
|
|
|
read = 0 # number of bytes read so far
|
|
|
|
last_percent_str = ''
|
|
|
|
|
|
|
|
def reporthook(blocknum, blocksize, totalsize):
|
|
|
|
nonlocal read
|
|
|
|
nonlocal last_percent_str
|
|
|
|
read += blocksize
|
|
|
|
if totalsize > 0:
|
|
|
|
percent_str = '%5.1f%%' % (read * 1e2 / totalsize)
|
|
|
|
if percent_str != last_percent_str:
|
|
|
|
logger.info(percent_str)
|
|
|
|
last_percent_str = percent_str
|
|
|
|
else:
|
|
|
|
logger.info('read %d' % (read,))
|
|
|
|
return reporthook
|
|
|
|
|
|
|
|
|
|
|
|
def downloadFile(url, path):
|
|
|
|
logger.info('Downloading file %s', url)
|
|
|
|
opener = urllib.request.build_opener()
|
|
|
|
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
|
|
|
|
urllib.request.install_opener(opener)
|
|
|
|
urlretrieve(url, path, make_reporthook())
|
|
|
|
|
|
|
|
|
|
|
|
def prepareCore(coin, version, settings, data_dir):
|
|
|
|
logger.info('prepareCore %s v%s', coin, version)
|
|
|
|
|
|
|
|
bin_dir = settings['chainclients'][coin]['bindir']
|
|
|
|
if not os.path.exists(bin_dir):
|
|
|
|
os.makedirs(bin_dir)
|
|
|
|
|
|
|
|
if 'osx' in BIN_ARCH:
|
|
|
|
os_dir_name = 'osx-unsigned'
|
|
|
|
os_name = 'osx'
|
|
|
|
elif 'win32' in BIN_ARCH or 'win64' in BIN_ARCH:
|
|
|
|
os_dir_name = 'win-unsigned'
|
|
|
|
os_name = 'win'
|
|
|
|
else:
|
|
|
|
os_dir_name = 'linux'
|
|
|
|
os_name = 'linux'
|
|
|
|
|
|
|
|
release_filename = '{}-{}-{}'.format(coin, version, BIN_ARCH)
|
|
|
|
if coin == 'particl':
|
|
|
|
signing_key_name = 'tecnovert'
|
|
|
|
release_url = 'https://github.com/particl/particl-core/releases/download/v{}/{}'.format(version, release_filename)
|
|
|
|
assert_filename = '{}-{}-{}-build.assert'.format(coin, os_name, version)
|
|
|
|
assert_url = 'https://raw.githubusercontent.com/particl/gitian.sigs/master/%s-%s/%s/%s' % (version, os_name, signing_key_name, assert_filename)
|
|
|
|
elif coin == 'litecoin':
|
|
|
|
signing_key_name = 'thrasher'
|
|
|
|
release_url = 'https://download.litecoin.org/litecoin-{}/{}/{}'.format(version, os_name, release_filename)
|
2019-07-23 14:26:37 +00:00
|
|
|
assert_filename = '{}-{}-{}-build.assert'.format(coin, os_name, version.rsplit('.', 1)[0])
|
2019-07-21 18:50:32 +00:00
|
|
|
assert_url = 'https://raw.githubusercontent.com/litecoin-project/gitian.sigs.ltc/master/%s-%s/%s/%s' % (version, os_name, signing_key_name, assert_filename)
|
2019-07-22 18:29:59 +00:00
|
|
|
elif coin == 'bitcoin':
|
|
|
|
signing_key_name = 'laanwj'
|
|
|
|
release_url = 'https://bitcoincore.org/bin/bitcoin-core-{}/{}'.format(version, release_filename)
|
2019-07-23 14:26:37 +00:00
|
|
|
assert_filename = '{}-{}-{}-build.assert'.format(coin, os_name, version.rsplit('.', 1)[0])
|
2019-07-22 18:29:59 +00:00
|
|
|
assert_url = 'https://raw.githubusercontent.com/bitcoin-core/gitian.sigs/master/%s-%s/%s/%s' % (version, os_name, signing_key_name, assert_filename)
|
2019-07-24 18:57:31 +00:00
|
|
|
elif coin == 'namecoin':
|
|
|
|
signing_key_name = 'JeremyRand'
|
|
|
|
release_url = 'https://beta.namecoin.org/files/namecoin-core/namecoin-core-{}/{}'.format(version, release_filename)
|
|
|
|
assert_filename = '{}-{}-{}-build.assert'.format(coin, os_name, version.rsplit('.', 1)[0])
|
|
|
|
assert_url = 'https://raw.githubusercontent.com/namecoin/gitian.sigs/master/%s-%s/%s/%s' % (version, os_name, signing_key_name, assert_filename)
|
2019-07-21 18:50:32 +00:00
|
|
|
else:
|
|
|
|
raise ValueError('Unknown coin')
|
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
assert_sig_filename = assert_filename + '.sig'
|
|
|
|
assert_sig_url = assert_url + '.sig'
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
release_path = os.path.join(bin_dir, release_filename)
|
|
|
|
if not os.path.exists(release_path):
|
|
|
|
downloadFile(release_url, release_path)
|
|
|
|
|
|
|
|
assert_path = os.path.join(bin_dir, assert_filename)
|
|
|
|
if not os.path.exists(assert_path):
|
|
|
|
downloadFile(assert_url, assert_path)
|
|
|
|
|
|
|
|
assert_sig_path = os.path.join(bin_dir, assert_sig_filename)
|
|
|
|
if not os.path.exists(assert_sig_path):
|
|
|
|
downloadFile(assert_sig_url, assert_sig_path)
|
|
|
|
|
|
|
|
hasher = hashlib.sha256()
|
|
|
|
with open(release_path, 'rb') as fp:
|
|
|
|
hasher.update(fp.read())
|
|
|
|
release_hash = hasher.digest()
|
|
|
|
|
|
|
|
logger.info('%s hash: %s', release_filename, release_hash.hex())
|
|
|
|
with open(assert_path, 'rb', 0) as fp, mmap.mmap(fp.fileno(), 0, access=mmap.ACCESS_READ) as s:
|
|
|
|
if s.find(bytes(release_hash.hex(), 'utf-8')) == -1:
|
|
|
|
raise ValueError('Error: release hash %s not found in assert file.' % (release_hash.hex()))
|
|
|
|
else:
|
|
|
|
logger.info('Found release hash in assert file.')
|
|
|
|
|
|
|
|
"""
|
|
|
|
gnupghome = os.path.join(data_dir, 'gpg')
|
|
|
|
if not os.path.exists(gnupghome):
|
|
|
|
os.makedirs(gnupghome)
|
|
|
|
"""
|
|
|
|
gpg = gnupg.GPG()
|
|
|
|
|
|
|
|
with open(assert_sig_path, 'rb') as fp:
|
|
|
|
verified = gpg.verify_file(fp, assert_path)
|
|
|
|
|
|
|
|
if verified.username is None:
|
|
|
|
logger.warning('Signature not verified.')
|
|
|
|
# TODO raise ValueError('Signature verification failed.')
|
|
|
|
|
|
|
|
bins = [coin + 'd', coin + '-cli', coin + '-tx']
|
|
|
|
with tarfile.open(release_path) as ft:
|
|
|
|
for b in bins:
|
|
|
|
out_path = os.path.join(bin_dir, b)
|
|
|
|
fi = ft.extractfile('{}-{}/bin/{}'.format(coin, version, b))
|
|
|
|
with open(out_path, 'wb') as fout:
|
|
|
|
fout.write(fi.read())
|
|
|
|
fi.close()
|
|
|
|
os.chmod(out_path, stat.S_IRWXU)
|
|
|
|
|
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
def prepareDataDir(coin, settings, data_dir, chain):
|
|
|
|
core_settings = settings['chainclients'][coin]
|
|
|
|
data_dir = core_settings['datadir']
|
|
|
|
|
|
|
|
if not os.path.exists(data_dir):
|
|
|
|
os.makedirs(data_dir)
|
|
|
|
|
|
|
|
core_conf_path = os.path.join(data_dir, coin + '.conf')
|
|
|
|
if os.path.exists(core_conf_path):
|
|
|
|
exitWithError('{} exists'.format(core_conf_path))
|
|
|
|
|
|
|
|
with open(core_conf_path, 'w') as fp:
|
|
|
|
if chain != 'mainnet':
|
|
|
|
fp.write(chain + '=1\n')
|
|
|
|
if chain == 'testnet':
|
|
|
|
fp.write('[test]\n\n')
|
|
|
|
else:
|
|
|
|
logger.warning('Unknown chain %s', chain)
|
|
|
|
|
|
|
|
fp.write('rpcport={}\n'.format(core_settings['rpcport']))
|
|
|
|
fp.write('printtoconsole=0\n')
|
|
|
|
fp.write('daemon=0\n')
|
|
|
|
|
|
|
|
if coin == 'particl':
|
|
|
|
fp.write('debugexclude=libevent\n')
|
|
|
|
fp.write('zmqpubsmsg=tcp://127.0.0.1:{}\n'.format(settings['zmqport']))
|
|
|
|
fp.write('spentindex=1')
|
|
|
|
fp.write('txindex=1')
|
|
|
|
elif coin == 'litecoin':
|
|
|
|
fp.write('prune=1000\n')
|
|
|
|
elif coin == 'bitcoin':
|
|
|
|
fp.write('prune=1000\n')
|
|
|
|
elif coin == 'namecoin':
|
|
|
|
fp.write('prune=1000\n')
|
|
|
|
else:
|
|
|
|
logger.warning('Unknown coin %s', coin)
|
|
|
|
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
def extractCore(coin, version, settings):
|
|
|
|
logger.info('extractCore %s v%s', coin, version)
|
|
|
|
|
|
|
|
|
|
|
|
def printVersion():
|
|
|
|
from basicswap import __version__
|
|
|
|
logger.info('Basicswap version:', __version__)
|
|
|
|
|
|
|
|
|
|
|
|
def printHelp():
|
|
|
|
logger.info('Usage: basicswap-prepare ')
|
|
|
|
logger.info('\n--help, -h Print help.')
|
2019-07-22 18:29:59 +00:00
|
|
|
logger.info('--version, -v Print version.')
|
|
|
|
logger.info('--datadir=PATH Path to basicswap data directory, default:~/.basicswap.')
|
|
|
|
logger.info('--mainnet Run in mainnet mode.')
|
|
|
|
logger.info('--testnet Run in testnet mode.')
|
|
|
|
logger.info('--regtest Run in regtest mode.')
|
|
|
|
logger.info('--particl_mnemonic= Recovery phrase to use for the Particl wallet, default is randomly generated.')
|
|
|
|
logger.info('--withcoin= Prepare system to run daemon for coin.')
|
|
|
|
logger.info('--withoutcoin= Do not prepare system to run daemon for coin.')
|
2019-07-24 18:57:31 +00:00
|
|
|
logger.info('--addcoin= Add coin to existing setup.')
|
|
|
|
logger.info('\n' + 'Known coins: %s', ', '.join(known_coins.keys()))
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
|
2019-07-21 19:20:36 +00:00
|
|
|
def make_rpc_func(bin_dir, data_dir, chain):
|
|
|
|
bin_dir = bin_dir
|
|
|
|
data_dir = data_dir
|
|
|
|
chain = '' if chain == 'mainnet' else chain
|
|
|
|
|
|
|
|
def rpc_func(cmd):
|
|
|
|
nonlocal bin_dir
|
|
|
|
nonlocal data_dir
|
|
|
|
nonlocal chain
|
|
|
|
return callrpc_cli(bin_dir, data_dir, chain, cmd, cfg.PARTICL_CLI)
|
|
|
|
return rpc_func
|
|
|
|
|
|
|
|
|
|
|
|
def waitForRPC(rpc_func, wallet=None):
|
|
|
|
for i in range(5):
|
|
|
|
try:
|
|
|
|
rpc_func('getwalletinfo')
|
|
|
|
return
|
|
|
|
except Exception as ex:
|
|
|
|
logging.warning('Can\'t connect to daemon RPC: %s. Trying again in %d second/s.', str(ex), (1 + i))
|
|
|
|
time.sleep(1 + i)
|
|
|
|
raise ValueError('waitForRPC failed')
|
|
|
|
|
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
def exitWithError(error_msg):
|
|
|
|
sys.stderr.write('Error: {}, exiting.\n'.format(error_msg))
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
def main():
|
|
|
|
data_dir = None
|
|
|
|
chain = 'mainnet'
|
|
|
|
particl_wallet_mnemonic = None
|
2019-07-22 18:29:59 +00:00
|
|
|
with_coins = {'particl', 'litecoin'}
|
2019-07-24 18:57:31 +00:00
|
|
|
add_coin = ''
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
for v in sys.argv[1:]:
|
|
|
|
if len(v) < 2 or v[0] != '-':
|
2019-07-24 18:57:31 +00:00
|
|
|
exitWithError('Unknown argument {}'.format(v))
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
s = v.split('=')
|
|
|
|
name = s[0].strip()
|
|
|
|
|
|
|
|
for i in range(2):
|
|
|
|
if name[0] == '-':
|
|
|
|
name = name[1:]
|
|
|
|
|
|
|
|
if name == 'v' or name == 'version':
|
|
|
|
printVersion()
|
|
|
|
return 0
|
|
|
|
if name == 'h' or name == 'help':
|
|
|
|
printHelp()
|
|
|
|
return 0
|
|
|
|
if name == 'mainnet':
|
|
|
|
continue
|
|
|
|
if name == 'testnet':
|
|
|
|
chain = 'testnet'
|
|
|
|
continue
|
|
|
|
if name == 'regtest':
|
|
|
|
chain = 'regtest'
|
|
|
|
continue
|
|
|
|
|
|
|
|
if len(s) == 2:
|
|
|
|
if name == 'datadir':
|
|
|
|
data_dir = os.path.expanduser(s[1])
|
|
|
|
continue
|
|
|
|
if name == 'particl_mnemonic':
|
|
|
|
particl_wallet_mnemonic = s[1]
|
|
|
|
continue
|
2019-07-22 18:29:59 +00:00
|
|
|
if name == 'withcoin':
|
2019-07-24 18:57:31 +00:00
|
|
|
if s[1] not in known_coins:
|
|
|
|
exitWithError('Unknown coin {}'.format(s[1]))
|
2019-07-22 18:29:59 +00:00
|
|
|
with_coins.add(s[1])
|
2019-07-24 18:57:31 +00:00
|
|
|
continue
|
2019-07-22 18:29:59 +00:00
|
|
|
if name == 'withoutcoin':
|
2019-07-24 18:57:31 +00:00
|
|
|
if s[1] not in known_coins:
|
|
|
|
exitWithError('Unknown coin {}'.format(s[1]))
|
2019-07-22 18:29:59 +00:00
|
|
|
with_coins.discard(s[1])
|
2019-07-24 18:57:31 +00:00
|
|
|
continue
|
|
|
|
if name == 'addcoin':
|
|
|
|
if s[1] not in known_coins:
|
|
|
|
exitWithError('Unknown coin {}'.format(s[1]))
|
|
|
|
add_coin = s[1]
|
|
|
|
continue
|
2019-07-21 18:50:32 +00:00
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
exitWithError('Unknown argument {}'.format(v))
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
if data_dir is None:
|
|
|
|
default_datadir = '~/.basicswap'
|
|
|
|
data_dir = os.path.join(os.path.expanduser(default_datadir))
|
|
|
|
logger.info('Using datadir: %s', data_dir)
|
|
|
|
logger.info('Chain: %s', chain)
|
2019-07-24 18:57:31 +00:00
|
|
|
port_offset = 300 if chain == 'testnet' else 0
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
if not os.path.exists(data_dir):
|
|
|
|
os.makedirs(data_dir)
|
|
|
|
config_path = os.path.join(data_dir, 'basicswap.json')
|
2019-07-24 18:57:31 +00:00
|
|
|
|
|
|
|
chainclients = {
|
|
|
|
'particl': {
|
|
|
|
'connection_type': 'rpc',
|
|
|
|
'manage_daemon': True,
|
|
|
|
'rpcport': 19792 + port_offset,
|
|
|
|
'datadir': os.path.join(data_dir, 'particl'),
|
|
|
|
'bindir': os.path.join(data_dir, 'bins', 'particl'),
|
|
|
|
'blocks_confirmed': 2,
|
|
|
|
'override_feerate': 0.002,
|
|
|
|
},
|
|
|
|
'litecoin': {
|
|
|
|
'connection_type': 'rpc' if 'litecoin' in with_coins else 'none',
|
|
|
|
'manage_daemon': True if 'litecoin' in with_coins else False,
|
|
|
|
'rpcport': 19795 + port_offset,
|
|
|
|
'datadir': os.path.join(data_dir, 'litecoin'),
|
|
|
|
'bindir': os.path.join(data_dir, 'bins', 'litecoin'),
|
|
|
|
'use_segwit': True,
|
|
|
|
'blocks_confirmed': 2
|
|
|
|
},
|
|
|
|
'bitcoin': {
|
|
|
|
'connection_type': 'rpc' if 'bitcoin' in with_coins else 'none',
|
|
|
|
'manage_daemon': True if 'bitcoin' in with_coins else False,
|
|
|
|
'rpcport': 19796 + port_offset,
|
|
|
|
'datadir': os.path.join(data_dir, 'bitcoin'),
|
|
|
|
'bindir': os.path.join(data_dir, 'bins', 'bitcoin'),
|
|
|
|
'use_segwit': True
|
|
|
|
},
|
|
|
|
'namecoin': {
|
|
|
|
'connection_type': 'rpc' if 'namecoin' in with_coins else 'none',
|
|
|
|
'manage_daemon': True if 'namecoin' in with_coins else False,
|
|
|
|
'rpcport': 19798 + port_offset,
|
|
|
|
'datadir': os.path.join(data_dir, 'namecoin'),
|
|
|
|
'bindir': os.path.join(data_dir, 'bins', 'namecoin'),
|
|
|
|
'use_segwit': False,
|
|
|
|
'blocks_confirmed': 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if add_coin != '':
|
|
|
|
logger.info('Adding coin: %s', add_coin)
|
|
|
|
if not os.path.exists(config_path):
|
|
|
|
exitWithError('{} does not exist'.format(config_path))
|
|
|
|
with open(config_path) as fs:
|
|
|
|
settings = json.load(fs)
|
|
|
|
|
|
|
|
if add_coin in settings['chainclients']:
|
|
|
|
exitWithError('{} is already in the settings file'.format(add_coin))
|
|
|
|
|
|
|
|
settings['chainclients'][add_coin] = chainclients[add_coin]
|
|
|
|
|
|
|
|
prepareCore(add_coin, known_coins[add_coin], settings, data_dir)
|
|
|
|
prepareDataDir(add_coin, settings, data_dir, chain)
|
|
|
|
|
|
|
|
with open(config_path, 'w') as fp:
|
|
|
|
json.dump(settings, fp, indent=4)
|
|
|
|
|
|
|
|
logger.info('Done.')
|
|
|
|
return 0
|
|
|
|
|
|
|
|
logger.info('With coins: %s', ', '.join(with_coins))
|
2019-07-21 18:50:32 +00:00
|
|
|
if os.path.exists(config_path):
|
2019-07-24 18:57:31 +00:00
|
|
|
exitWithError('{} exists'.format(config_path))
|
2019-07-21 18:50:32 +00:00
|
|
|
|
|
|
|
settings = {
|
|
|
|
'debug': True,
|
|
|
|
'zmqhost': 'tcp://127.0.0.1',
|
2019-07-23 15:08:12 +00:00
|
|
|
'zmqport': 20792 + port_offset,
|
2019-07-21 18:50:32 +00:00
|
|
|
'htmlhost': 'localhost',
|
2019-07-23 15:08:12 +00:00
|
|
|
'htmlport': 12700 + port_offset,
|
2019-07-21 18:50:32 +00:00
|
|
|
'network_key': '7sW2UEcHXvuqEjkpE5mD584zRaQYs6WXYohue4jLFZPTvMSxwvgs',
|
|
|
|
'network_pubkey': '035758c4a22d7dd59165db02a56156e790224361eb3191f02197addcb3bde903d2',
|
2019-07-24 18:57:31 +00:00
|
|
|
'chainclients': chainclients,
|
2019-07-21 18:50:32 +00:00
|
|
|
'check_progress_seconds': 60,
|
|
|
|
'check_watched_seconds': 60,
|
|
|
|
'check_expired_seconds': 60
|
|
|
|
}
|
|
|
|
|
2019-07-24 18:57:31 +00:00
|
|
|
for c, v in known_coins.items():
|
|
|
|
if c not in with_coins:
|
|
|
|
continue
|
|
|
|
coin = c
|
|
|
|
prepareCore(coin, v, settings, data_dir)
|
|
|
|
prepareDataDir(coin, settings, data_dir, chain)
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
with open(config_path, 'w') as fp:
|
|
|
|
json.dump(settings, fp, indent=4)
|
|
|
|
|
2019-07-21 19:20:36 +00:00
|
|
|
logger.info('Loading Particl mnemonic')
|
|
|
|
|
|
|
|
particl_settings = settings['chainclients']['particl']
|
|
|
|
partRpc = make_rpc_func(particl_settings['bindir'], particl_settings['datadir'], chain)
|
2019-07-21 21:27:46 +00:00
|
|
|
d = startDaemon(particl_settings['datadir'], particl_settings['bindir'], cfg.PARTICLD, ['-noconnect', '-nofindpeers', '-nostaking', '-nodnsseed', '-nolisten'])
|
2019-07-21 19:20:36 +00:00
|
|
|
try:
|
|
|
|
waitForRPC(partRpc)
|
|
|
|
|
|
|
|
if particl_wallet_mnemonic is None:
|
|
|
|
particl_wallet_mnemonic = partRpc('mnemonic new')['mnemonic']
|
|
|
|
partRpc('extkeyimportmaster "{}"'.format(particl_wallet_mnemonic))
|
|
|
|
finally:
|
|
|
|
logger.info('Terminating {}'.format(d.pid))
|
|
|
|
d.terminate()
|
|
|
|
d.wait(timeout=120)
|
|
|
|
if d.stdout:
|
|
|
|
d.stdout.close()
|
|
|
|
if d.stderr:
|
|
|
|
d.stderr.close()
|
|
|
|
if d.stdin:
|
|
|
|
d.stdin.close()
|
|
|
|
|
|
|
|
logger.info('IMPORTANT - Save your particl wallet recovery phrase:\n{}\n'.format(particl_wallet_mnemonic))
|
|
|
|
|
2019-07-21 18:50:32 +00:00
|
|
|
logger.info('Done.')
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|