main_txsend.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, command-line Bitcoin cold storage solution
  4. # Copyright (C)2013-2022 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. from .common import *
  22. opts_data = {
  23. 'sets': [('yes', True, 'quiet', True)],
  24. 'text': {
  25. 'desc': f'Send a signed {g.proj_name} cryptocoin transaction',
  26. 'usage': '[opts] <signed transaction file>',
  27. 'options': """
  28. -h, --help Print this help message
  29. --, --longhelp Print help message for long options (common options)
  30. -d, --outdir= d Specify an alternate directory 'd' for output
  31. -q, --quiet Suppress warnings; overwrite files without prompting
  32. -s, --status Get status of a sent transaction
  33. -y, --yes Answer 'yes' to prompts, suppress non-essential output
  34. """
  35. }
  36. }
  37. cmd_args = opts.init(opts_data)
  38. if len(cmd_args) == 1:
  39. infile = cmd_args[0]
  40. from .fileutil import check_infile
  41. check_infile(infile)
  42. else:
  43. opts.usage()
  44. if not opt.status:
  45. from .ui import do_license_msg
  46. do_license_msg()
  47. async def main():
  48. from .tx import OnlineSignedTX
  49. tx = await OnlineSignedTX(
  50. filename = infile,
  51. quiet_open = True )
  52. from .rpc import rpc_init
  53. tx.rpc = await rpc_init(tx.proto)
  54. vmsg(f'Signed transaction file {infile!r} is valid')
  55. if opt.status:
  56. if tx.coin_txid:
  57. qmsg(f'{tx.proto.coin} txid: {tx.coin_txid.hl()}')
  58. await tx.status.display(usr_req=True)
  59. sys.exit(0)
  60. if not opt.yes:
  61. tx.info.view_with_prompt('View transaction details?')
  62. if tx.add_comment(): # edits an existing comment, returns true if changed
  63. tx.file.write(ask_write_default_yes=True)
  64. await tx.send(exit_on_fail=True)
  65. tx.file.write(ask_overwrite=False,ask_write=False)
  66. tx.print_contract_addr()
  67. async_run(main())