main_txcreate.py 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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-txcreate: Create a cryptocoin transaction with MMGen- and/or non-MMGen
  20. inputs and outputs
  21. """
  22. from .cfg import gc, Config
  23. from .util import fmt_list, async_run
  24. target = gc.prog_name.split('-')[1].removesuffix('create')
  25. opts_data = {
  26. 'filter_codes': {
  27. 'tx': ['-', 't'],
  28. 'swaptx': ['-', 's'],
  29. }[target],
  30. 'sets': [('yes', True, 'quiet', True)],
  31. 'text': {
  32. 'desc': {
  33. 'tx': f'Create a transaction with outputs to specified coin or {gc.proj_name} addresses',
  34. 'swaptx': f'Create a DEX swap transaction from one {gc.proj_name} tracking wallet to another',
  35. }[target],
  36. 'usage': '[opts] {u_args} [addr file ...]',
  37. 'options': """
  38. -- -h, --help Print this help message
  39. -- --, --longhelp Print help message for long (global) options
  40. -- -a, --autosign Create a transaction for offline autosigning (see
  41. + ‘mmgen-autosign’). The removable device is mounted and
  42. + unmounted automatically
  43. -- -A, --fee-adjust= f Adjust transaction fee by factor 'f' (see below)
  44. -- -B, --no-blank Don't blank screen before displaying {a_info}
  45. -- -c, --comment-file=f Source the transaction's comment from file 'f'
  46. b- -C, --fee-estimate-confs=c Desired number of confirmations for fee estimation
  47. + (default: {cfg.fee_estimate_confs})
  48. -- -d, --outdir= d Specify an alternate directory 'd' for output
  49. e- -D, --contract-data=D Path to file containing hex-encoded contract data
  50. b- -E, --fee-estimate-mode=M Specify the network fee estimate mode. Choices:
  51. + {fe_all}. Default: {fe_dfl!r}
  52. -- -f, --fee= f Transaction fee, as a decimal {cu} amount or as
  53. + {fu} (an integer followed by {fl!r}).
  54. + See FEE SPECIFICATION below. If omitted, fee will be
  55. + calculated using network fee estimation.
  56. e- -g, --gas= g Specify start gas amount in Wei
  57. -- -i, --info Display {a_info} and exit
  58. -- -I, --inputs= i Specify transaction inputs (comma-separated list of
  59. + MMGen IDs or coin addresses). Note that ALL unspent
  60. + outputs associated with each address will be included.
  61. bt -l, --locktime= t Lock time (block height or unix seconds) (default: 0)
  62. -s -l, --trade-limit=L Minimum swap amount, as either percentage or absolute
  63. + coin amount (see TRADE LIMIT below)
  64. b- -L, --autochg-ignore-labels Ignore labels when autoselecting change addresses
  65. -- -m, --minconf= n Minimum number of confirmations required to spend
  66. + outputs (default: 1)
  67. -- -q, --quiet Suppress warnings; overwrite files without prompting
  68. bt -R, --no-rbf Make transaction non-replaceable (non-replace-by-fee
  69. + according to BIP 125)
  70. -s -s, --swap-proto Swap protocol to use (Default: {x_dfl},
  71. + Choices: {x_all})
  72. -- -v, --verbose Produce more verbose output
  73. b- -V, --vsize-adj= f Adjust transaction's estimated vsize by factor 'f'
  74. -s -x, --proxy=P Fetch the swap quote via SOCKS5 proxy ‘P’ (host:port)
  75. -- -y, --yes Answer 'yes' to prompts, suppress non-essential output
  76. e- -X, --cached-balances Use cached balances
  77. """,
  78. 'notes': '\n{c}\n{n_at}\n\n{F}\n{x}',
  79. },
  80. 'code': {
  81. 'usage': lambda cfg, proto, help_notes, s: s.format(
  82. u_args = help_notes(f'{target}create_args')),
  83. 'options': lambda cfg, proto, help_notes, s: s.format(
  84. cfg = cfg,
  85. cu = proto.coin,
  86. a_info = help_notes('account_info_desc'),
  87. fu = help_notes('rel_fee_desc'),
  88. fl = help_notes('fee_spec_letters'),
  89. fe_all = fmt_list(cfg._autoset_opts['fee_estimate_mode'].choices, fmt='no_spc'),
  90. fe_dfl = cfg._autoset_opts['fee_estimate_mode'].choices[0],
  91. x_all = fmt_list(cfg._autoset_opts['swap_proto'].choices, fmt='no_spc'),
  92. x_dfl = cfg._autoset_opts['swap_proto'].choices[0]),
  93. 'notes': lambda cfg, help_mod, help_notes, s: s.format(
  94. c = help_mod(f'{target}create'),
  95. F = help_notes('fee'),
  96. n_at = help_notes('address_types'),
  97. x = help_mod(f'{target}create_examples'))
  98. }
  99. }
  100. cfg = Config(opts_data=opts_data)
  101. if not (cfg.info or cfg.contract_data) and len(cfg._args) < {'tx': 1, 'swaptx': 2}[target]:
  102. cfg._usage()
  103. async def main():
  104. if cfg.autosign:
  105. from .tx.util import mount_removable_device
  106. from .autosign import Signable
  107. asi = mount_removable_device(cfg)
  108. Signable.automount_transaction(asi).check_create_ok()
  109. if target == 'swaptx':
  110. from .tx.new_swap import get_send_proto
  111. proto = get_send_proto(cfg)
  112. else:
  113. proto = cfg._proto
  114. from .tx import NewTX
  115. tx1 = await NewTX(cfg=cfg, proto=proto, target=target)
  116. tx2 = await tx1.create(
  117. cmd_args = cfg._args,
  118. locktime = int(cfg.locktime or 0),
  119. do_info = cfg.info)
  120. tx2.file.write(
  121. outdir = asi.txauto_dir if cfg.autosign else None,
  122. ask_write = not cfg.yes,
  123. ask_overwrite = not cfg.yes,
  124. ask_write_default_yes = False)
  125. async_run(main())