electrum-bitcoinprivate/lib/version.py

11 lines
310 B
Python

ELECTRUM_VERSION = 'v3.2.5' # version of the client package
PROTOCOL_VERSION = '1.2' # protocol version requested
# The hash of the mnemonic seed must begin with this
SEED_PREFIX = '01' # Standard wallet
def seed_prefix(seed_type):
if seed_type == 'standard':
return SEED_PREFIX