http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/src/ea1e8d1228db50c9776998ff50d270af52b35540/mmgen/bip_hd/chainparams.py
/usr/bin/env python3 # # Created using scripts/create-bip-hd-chain-params.py # Source data: # https://github.com/MetaMask/slip44/blob/main/slip44.json (1bc984bee) # https://github.com/ebellocchia/bip_utils (5649541c6) from collections import namedtuple def parse_data(): _d = namedtuple( 'bip_hd_data', 'idx chain curve network addr_cls vb_prv vb_pub vb_wif vb_addr def_path name') _u = namedtuple( 'bip_hd_data_partial', 'idx chain name') def parse_line(line): l = line.split() if l[2] == '-': return _u(...