main_txsend.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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-txsend: Broadcast a transaction signed by 'mmgen-txsign' to the network
  20. """
  21. import sys
  22. from .cfg import gc, Config
  23. from .util import async_run, die
  24. opts_data = {
  25. 'sets': [
  26. ('yes', True, 'quiet', True),
  27. ('abort', True, 'autosign', True),
  28. ],
  29. 'text': {
  30. 'desc': f'Send a signed {gc.proj_name} cryptocoin transaction',
  31. 'usage': '[opts] [signed transaction file]',
  32. 'options': """
  33. -h, --help Print this help message
  34. --, --longhelp Print help message for long (global) options
  35. -a, --autosign Send an autosigned transaction created by ‘mmgen-txcreate
  36. --autosign’. The removable device is mounted and unmounted
  37. automatically. The transaction file argument must be omitted
  38. when using this option
  39. -A, --abort Abort an unsent transaction created by ‘mmgen-txcreate
  40. --autosign’ and delete it from the removable device. The
  41. transaction may be signed or unsigned.
  42. -d, --outdir=d Specify an alternate directory 'd' for output
  43. -H, --dump-hex=F Instead of sending to the network, dump the transaction hex
  44. to file ‘F’. Use filename ‘-’ to dump to standard output.
  45. -m, --mark-sent Mark the transaction as sent by adding it to the removable
  46. device. Used in combination with --autosign when a trans-
  47. action has been successfully sent out-of-band.
  48. -n, --tx-proxy=P Send transaction via public TX proxy ‘P’ (supported proxies:
  49. {tx_proxies}). This is done via a publicly accessible web
  50. page, so no API key or registration is required
  51. -q, --quiet Suppress warnings; overwrite files without prompting
  52. -s, --status Get status of a sent transaction (or current transaction,
  53. whether sent or unsent, when used with --autosign)
  54. -t, --test Test whether the transaction can be sent without sending it
  55. -v, --verbose Be more verbose
  56. -x, --proxy=P Connect to TX proxy via SOCKS5 proxy ‘P’ (host:port)
  57. -y, --yes Answer 'yes' to prompts, suppress non-essential output
  58. """
  59. },
  60. 'code': {
  61. 'options': lambda cfg, proto, help_notes, s: s.format(
  62. tx_proxies = help_notes('tx_proxies'))
  63. }
  64. }
  65. cfg = Config(opts_data=opts_data)
  66. if cfg.autosign and cfg.outdir:
  67. die(1, '--outdir cannot be used in combination with --autosign')
  68. if cfg.mark_sent and not cfg.autosign:
  69. die(1, '--mark-sent is used only in combination with --autosign')
  70. if cfg.test and cfg.dump_hex:
  71. die(1, '--test cannot be used in combination with --dump-hex')
  72. if cfg.dump_hex and cfg.dump_hex != '-':
  73. from .fileutil import check_outfile_dir
  74. check_outfile_dir(cfg.dump_hex)
  75. if len(cfg._args) == 1:
  76. infile = cfg._args[0]
  77. from .fileutil import check_infile
  78. check_infile(infile)
  79. elif not cfg._args and cfg.autosign:
  80. from .tx.util import mount_removable_device
  81. from .autosign import Signable
  82. asi = mount_removable_device(cfg)
  83. si = Signable.automount_transaction(asi)
  84. if cfg.abort:
  85. si.shred_abortable() # prompts user, then raises exception or exits
  86. elif cfg.status:
  87. if si.unsent:
  88. die(1, 'Transaction is unsent')
  89. if si.unsigned:
  90. die(1, 'Transaction is unsigned')
  91. else:
  92. infile = si.get_unsent()
  93. cfg._util.qmsg(f'Got signed transaction file ‘{infile}’')
  94. else:
  95. cfg._usage()
  96. if not cfg.status:
  97. from .ui import do_license_msg
  98. do_license_msg(cfg)
  99. from .tx import OnlineSignedTX, SentTX
  100. from .ui import keypress_confirm
  101. async def post_send(tx):
  102. tx2 = await SentTX(cfg=cfg, data=tx.__dict__, automount=cfg.autosign)
  103. tx2.file.write(
  104. outdir = asi.txauto_dir if cfg.autosign else None,
  105. ask_overwrite = False,
  106. ask_write = False)
  107. tx2.post_write()
  108. async def main():
  109. global cfg
  110. if cfg.status and cfg.autosign:
  111. tx = await si.get_last_created()
  112. else:
  113. tx = await OnlineSignedTX(
  114. cfg = cfg,
  115. filename = infile,
  116. automount = cfg.autosign,
  117. quiet_open = True)
  118. cfg = Config({'_clone': cfg, 'proto': tx.proto, 'coin': tx.proto.coin})
  119. if cfg.tx_proxy:
  120. from .tx.tx_proxy import check_client
  121. check_client(cfg)
  122. from .rpc import rpc_init
  123. tx.rpc = await rpc_init(cfg)
  124. cfg._util.vmsg(f'Getting {tx.desc} ‘{tx.infile}’')
  125. if cfg.mark_sent:
  126. await post_send(tx)
  127. sys.exit(0)
  128. if cfg.status:
  129. if tx.coin_txid:
  130. cfg._util.qmsg(f'{tx.proto.coin} txid: {tx.coin_txid.hl()}')
  131. retval = await tx.status.display(usr_req=True, return_exit_val=True)
  132. if cfg.verbose:
  133. tx.info.view_with_prompt('View transaction details?', pause=False)
  134. sys.exit(retval)
  135. if tx.is_swap and not tx.check_swap_expiry():
  136. die(1, 'Swap quote has expired. Please re-create the transaction')
  137. if not cfg.yes:
  138. tx.info.view_with_prompt('View transaction details?')
  139. if tx.add_comment(): # edits an existing comment, returns true if changed
  140. if not cfg.autosign:
  141. tx.file.write(ask_write_default_yes=True)
  142. if cfg.dump_hex:
  143. from .fileutil import write_data_to_file
  144. write_data_to_file(
  145. cfg,
  146. cfg.dump_hex,
  147. tx.serialized + '\n',
  148. desc = 'serialized transaction hex data',
  149. ask_overwrite = False,
  150. ask_tty = False)
  151. if cfg.autosign:
  152. if keypress_confirm(cfg, 'Mark transaction as sent on removable device?'):
  153. await post_send(tx)
  154. else:
  155. await post_send(tx)
  156. elif cfg.tx_proxy:
  157. from .tx.tx_proxy import send_tx
  158. if send_tx(cfg, tx):
  159. if (not cfg.autosign or
  160. keypress_confirm(cfg, 'Mark transaction as sent on removable device?')):
  161. await post_send(tx)
  162. elif cfg.test:
  163. await tx.test_sendable()
  164. elif await tx.send():
  165. await post_send(tx)
  166. async_run(main())