main_txsend.py 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. -r, --receipt Print the receipt of the sent transaction (Ethereum only)
  53. -s, --status Get status of a sent transaction (or current transaction,
  54. whether sent or unsent, when used with --autosign)
  55. -t, --test Test whether the transaction can be sent without sending it
  56. -v, --verbose Be more verbose
  57. -x, --proxy=P Connect to TX proxy via SOCKS5 proxy ‘P’ (host:port)
  58. -y, --yes Answer 'yes' to prompts, suppress non-essential output
  59. """
  60. },
  61. 'code': {
  62. 'options': lambda cfg, proto, help_notes, s: s.format(
  63. tx_proxies = help_notes('tx_proxies'))
  64. }
  65. }
  66. cfg = Config(opts_data=opts_data)
  67. if cfg.autosign and cfg.outdir:
  68. die(1, '--outdir cannot be used in combination with --autosign')
  69. if cfg.mark_sent and not cfg.autosign:
  70. die(1, '--mark-sent is used only in combination with --autosign')
  71. if cfg.test and cfg.dump_hex:
  72. die(1, '--test cannot be used in combination with --dump-hex')
  73. if cfg.dump_hex and cfg.dump_hex != '-':
  74. from .fileutil import check_outfile_dir
  75. check_outfile_dir(cfg.dump_hex)
  76. if len(cfg._args) == 1:
  77. infile = cfg._args[0]
  78. from .fileutil import check_infile
  79. check_infile(infile)
  80. elif not cfg._args and cfg.autosign:
  81. from .tx.util import mount_removable_device
  82. from .autosign import Signable
  83. asi = mount_removable_device(cfg)
  84. si = Signable.automount_transaction(asi)
  85. if cfg.abort:
  86. si.shred_abortable() # prompts user, then raises exception or exits
  87. elif cfg.status:
  88. if si.unsent:
  89. die(1, 'Transaction is unsent')
  90. if si.unsigned:
  91. die(1, 'Transaction is unsigned')
  92. else:
  93. infile = si.get_unsent()
  94. cfg._util.qmsg(f'Got signed transaction file ‘{infile}’')
  95. else:
  96. cfg._usage()
  97. if not cfg.status:
  98. from .ui import do_license_msg
  99. do_license_msg(cfg)
  100. from .tx import OnlineSignedTX, SentTX
  101. from .ui import keypress_confirm
  102. async def post_send(tx):
  103. tx2 = await SentTX(cfg=cfg, data=tx.__dict__, automount=cfg.autosign)
  104. tx2.file.write(
  105. outdir = asi.txauto_dir if cfg.autosign else None,
  106. ask_overwrite = False,
  107. ask_write = False)
  108. tx2.post_write()
  109. async def main():
  110. global cfg
  111. if cfg.status and cfg.autosign:
  112. tx = await si.get_last_created()
  113. else:
  114. tx = await OnlineSignedTX(
  115. cfg = cfg,
  116. filename = infile,
  117. automount = cfg.autosign,
  118. quiet_open = True)
  119. cfg = Config({'_clone': cfg, 'proto': tx.proto, 'coin': tx.proto.coin})
  120. if cfg.tx_proxy:
  121. from .tx.tx_proxy import check_client
  122. check_client(cfg)
  123. from .rpc import rpc_init
  124. tx.rpc = await rpc_init(cfg)
  125. cfg._util.vmsg(f'Getting {tx.desc} ‘{tx.infile}’')
  126. if cfg.mark_sent:
  127. await post_send(tx)
  128. sys.exit(0)
  129. if cfg.receipt:
  130. sys.exit(await tx.status.display(print_receipt=True))
  131. if cfg.status:
  132. if tx.coin_txid:
  133. cfg._util.qmsg(f'{tx.proto.coin} txid: {tx.coin_txid.hl()}')
  134. retval = await tx.status.display(usr_req=True, return_exit_val=True)
  135. if cfg.verbose:
  136. tx.info.view_with_prompt('View transaction details?', pause=False)
  137. sys.exit(retval)
  138. if tx.is_swap and not tx.check_swap_expiry():
  139. die(1, 'Swap quote has expired. Please re-create the transaction')
  140. if not cfg.yes:
  141. tx.info.view_with_prompt('View transaction details?')
  142. if tx.add_comment(): # edits an existing comment, returns true if changed
  143. if not cfg.autosign:
  144. tx.file.write(ask_write_default_yes=True)
  145. if cfg.dump_hex:
  146. from .fileutil import write_data_to_file
  147. write_data_to_file(
  148. cfg,
  149. cfg.dump_hex,
  150. tx.serialized + '\n',
  151. desc = 'serialized transaction hex data',
  152. ask_overwrite = False,
  153. ask_tty = False)
  154. if cfg.autosign:
  155. if keypress_confirm(cfg, 'Mark transaction as sent on removable device?'):
  156. await post_send(tx)
  157. else:
  158. await post_send(tx)
  159. elif cfg.tx_proxy:
  160. from .tx.tx_proxy import send_tx
  161. if send_tx(cfg, tx):
  162. if (not cfg.autosign or
  163. keypress_confirm(cfg, 'Mark transaction as sent on removable device?')):
  164. await post_send(tx)
  165. elif cfg.test:
  166. await tx.test_sendable()
  167. elif await tx.send():
  168. await post_send(tx)
  169. async_run(main())