main_addrgen.py 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #!/usr/bin/env python3
  2. #
  3. # MMGen Wallet, a terminal-based cryptocurrency wallet
  4. # Copyright (C)2013-2025 The MMGen Project <mmgen@tuta.io>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. """
  19. mmgen-addrgen: Generate a series or range of addresses from an MMGen
  20. deterministic wallet
  21. """
  22. from . import addrlist
  23. from .cfg import gc, Config
  24. from .addr import MMGenAddrType
  25. from .wallet import Wallet
  26. if gc.prog_name == 'mmgen-keygen':
  27. gen_what = 'keys'
  28. gen_clsname = 'KeyAddrList'
  29. gen_desc = 'secret keys'
  30. filter_codes = ['-', 'k']
  31. note_addrkey = 'By default, both addresses and secret keys are generated.\n\n'
  32. else:
  33. gen_what = 'addresses'
  34. gen_clsname = 'AddrList'
  35. gen_desc = 'addresses'
  36. filter_codes = ['-']
  37. note_addrkey = ''
  38. opts_data = {
  39. 'filter_codes': filter_codes,
  40. 'sets': [('print_checksum', True, 'quiet', True)],
  41. 'text': {
  42. 'desc': f"""
  43. Generate a range or list of {gen_desc} from an {gc.proj_name} wallet,
  44. mnemonic, seed or brainwallet
  45. """,
  46. 'usage':'[opts] [seed source] <index list or range(s)>',
  47. 'options': """
  48. -- -h, --help Print this help message
  49. -- --, --longhelp Print help message for long (global) options
  50. -k -A, --no-addresses Print only secret keys, no addresses
  51. -- -c, --print-checksum Print address list checksum and exit
  52. -- -d, --outdir= d Output files to directory 'd' instead of working dir
  53. -- -e, --echo-passphrase Echo passphrase or mnemonic to screen upon entry
  54. -- -i, --in-fmt= f Input is from wallet format 'f' (see FMT CODES below)
  55. -- -H, --hidden-incog-input-params=f,o Read hidden incognito data from file
  56. + 'f' at offset 'o' (comma-separated)
  57. -- -O, --old-incog-fmt Specify old-format incognito input
  58. -- -k, --use-internal-keccak-module Force use of the internal keccak module
  59. -- -K, --keygen-backend=n Use backend 'n' for public key generation. Options
  60. + for {coin_id}: {kgs}
  61. -- -l, --seed-len= l Specify wallet seed length of 'l' bits. This option
  62. + is required only for brainwallet and incognito inputs
  63. + with non-standard (< {dsl}-bit) seed lengths.
  64. -- -p, --hash-preset= p Use the scrypt hash parameters defined by preset 'p'
  65. + for password hashing (default: '{gc.dfl_hash_preset}')
  66. -- -z, --show-hash-presets Show information on available hash presets
  67. -- -P, --passwd-file= f Get wallet passphrase from file 'f'
  68. -- -q, --quiet Produce quieter output; suppress some warnings
  69. -- -r, --usr-randchars=n Get 'n' characters of additional randomness from user
  70. + (min={cfg.min_urandchars}, max={cfg.max_urandchars}, default={cfg.usr_randchars})
  71. -- -S, --stdout Print {what} to stdout
  72. -- -t, --type=t Choose address type. Options: see ADDRESS TYPES below
  73. + (default: {dmat})
  74. -- -U, --subwallet= U Generate {what} for subwallet 'U' (see SUBWALLETS
  75. + below)
  76. -k -V, --viewkeys Print viewkeys, omitting secret keys
  77. -- -v, --verbose Produce more verbose output
  78. -k -x, --b16 Print secret keys in hexadecimal too
  79. """,
  80. 'notes': """
  81. NOTES FOR THIS COMMAND
  82. Address indexes are given as a comma-separated list and/or hyphen-separated
  83. range(s).
  84. {n_addrkey}If available, the libsecp256k1 library will be used for address generation.
  85. NOTES FOR ALL GENERATOR COMMANDS
  86. {n_sw}{n_pw}{n_bw}
  87. {n_at}
  88. {n_fmt}
  89. """
  90. },
  91. 'code': {
  92. 'options': lambda proto, help_notes, cfg, s: s.format(
  93. dmat = help_notes('dfl_mmtype'),
  94. kgs = help_notes('keygen_backends'),
  95. coin_id = help_notes('coin_id'),
  96. dsl = help_notes('dfl_seed_len'),
  97. pnm = gc.proj_name,
  98. what = gen_what,
  99. cfg = cfg,
  100. gc = gc,
  101. ),
  102. 'notes': lambda help_mod, help_notes, s: s.format(
  103. n_addrkey = note_addrkey,
  104. n_sw = help_mod('subwallet')+'\n\n',
  105. n_pw = help_notes('passwd')+'\n\n',
  106. n_bw = help_notes('brainwallet'),
  107. n_fmt = help_notes('fmt_codes'),
  108. n_at = help_notes('address_types'),
  109. )
  110. }
  111. }
  112. cfg = Config(opts_data=opts_data, need_amt=False)
  113. proto = cfg._proto
  114. addr_type = MMGenAddrType(
  115. proto = proto,
  116. id_str = cfg.type or proto.dfl_mmtype,
  117. errmsg = f'{cfg.type!r}: invalid parameter for --type option')
  118. if len(cfg._args) < 1:
  119. cfg._usage()
  120. if cfg.keygen_backend:
  121. from .keygen import check_backend
  122. check_backend(cfg, proto, cfg.keygen_backend, cfg.type)
  123. idxs = addrlist.AddrIdxList(fmt_str=cfg._args.pop())
  124. from .fileutil import get_seed_file
  125. sf = get_seed_file(cfg, nargs=1)
  126. from .ui import do_license_msg
  127. do_license_msg(cfg)
  128. ss = Wallet(cfg, fn=sf)
  129. ss_seed = ss.seed if cfg.subwallet is None else ss.seed.subseed(cfg.subwallet, print_msg=True)
  130. if cfg.no_addresses:
  131. gen_clsname = 'KeyList'
  132. elif cfg.viewkeys:
  133. gen_clsname = 'ViewKeyAddrList'
  134. al = getattr(addrlist, gen_clsname)(
  135. cfg = cfg,
  136. proto = proto,
  137. seed = ss_seed,
  138. addr_idxs = idxs,
  139. mmtype = addr_type)
  140. af = al.file
  141. af.format()
  142. if al.gen_addrs and cfg.print_checksum:
  143. from .util import Die
  144. Die(0, al.checksum)
  145. from .ui import keypress_confirm
  146. if al.gen_keys and keypress_confirm(cfg, 'Encrypt key list?'):
  147. af.encrypt()
  148. af.write(
  149. binary = True,
  150. desc = f'encrypted {af.desc}')
  151. else:
  152. af.write()