| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- #!/usr/bin/env python3
- #
- # MMGen Wallet, a terminal-based cryptocurrency wallet
- # Copyright (C)2013-2026 The MMGen Project <mmgen@tuta.io>
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- """
- mmgen-txsend: Broadcast a transaction signed by 'mmgen-txsign' to the network
- """
- import sys
- from .cfg import gc, Config
- from .util import msg, async_run, die
- opts_data = {
- 'sets': [
- ('yes', True, 'quiet', True),
- ('abort', True, 'autosign', True),
- ],
- 'text': {
- 'desc': f'Send a signed {gc.proj_name} cryptocoin transaction',
- 'usage2': [
- '[opts] <signed transaction file>',
- '[opts] --autosign',
- '[opts] --autosign (--status | --receipt) [index or range]',
- ],
- 'options': """
- -h, --help Print this help message
- --, --longhelp Print help message for long (global) options
- -a, --autosign Send an autosigned transaction created by ‘mmgen-txcreate
- --autosign’. The removable device is mounted and unmounted
- automatically. The transaction file argument must be omitted
- when using this option
- -A, --abort Abort an unsent transaction created by ‘mmgen-txcreate
- --autosign’ and delete it from the removable device. The
- transaction may be signed or unsigned.
- -d, --outdir=d Specify an alternate directory 'd' for output
- -H, --dump-hex=F Instead of sending to the network, dump the transaction hex
- to file ‘F’. Use filename ‘-’ to dump to standard output.
- -m, --mark-sent Mark the transaction as sent by adding it to the removable
- device. Used in combination with --autosign when a trans-
- action has been successfully sent out-of-band.
- -n, --tx-proxy=P Send transaction via public TX proxy ‘P’ (supported proxies:
- {tx_proxies}). This is done via a publicly accessible web
- page, so no API key or registration is required.
- -q, --quiet Suppress warnings; overwrite files without prompting
- -r, --receipt Print the receipt of the sent transaction (Ethereum only)
- -s, --status Get status of a sent transaction (or current transaction,
- whether sent or unsent, when used with --autosign)
- -t, --test Test whether the transaction can be sent without sending it
- -T, --txhex-idx=N Send only part ‘N’ of a multi-part transaction. Indexing
- begins with one.
- -v, --verbose Be more verbose
- -w, --wait Wait for transaction confirmation (Ethereum only)
- -x, --proxy=P Connect to TX proxy via SOCKS5h proxy ‘P’ (host:port).
- Use special value ‘env’ to honor *_PROXY environment vars
- instead.
- -y, --yes Answer 'yes' to prompts, suppress non-essential output
- """,
- 'notes': """
- With --autosign, combined with --status or --receipt, the optional index or
- range arg represents an index or range into the list of sent transaction files
- on the removable device, in reverse chronological order. ‘0’ (the default)
- specifies the last sent transaction, ‘1’ the next-to-last, and so on. Hyphen-
- separated ranges are also supported. For example, specifying a range ‘0-3’
- would output data for the last four sent transactions, beginning with the most
- recent.
- """
- },
- 'code': {
- 'options': lambda cfg, proto, help_notes, s: s.format(
- tx_proxies = help_notes('tx_proxies'))
- }
- }
- cfg = Config(opts_data=opts_data)
- if cfg.autosign and cfg.outdir:
- die(1, '--outdir cannot be used in combination with --autosign')
- if cfg.mark_sent and not cfg.autosign:
- die(1, '--mark-sent is used only in combination with --autosign')
- if cfg.test and cfg.dump_hex:
- die(1, '--test cannot be used in combination with --dump-hex')
- if cfg.dump_hex and cfg.dump_hex != '-':
- from .fileutil import check_outfile_dir
- check_outfile_dir(cfg.dump_hex)
- post_send_op = cfg.status or cfg.receipt
- asi, tx_range = (None, None)
- def init_autosign(arg):
- global asi, si, infile, tx_range
- from .tx.util import mount_removable_device
- from .tx.online import SentTXRange
- from .autosign import Signable
- asi = mount_removable_device(cfg)
- si = Signable.automount_transaction(asi)
- if cfg.abort:
- si.shred_abortable() # prompts user, then raises exception or exits
- elif post_send_op and (si.unsent or si.unsigned):
- die(1, 'Transaction is {}'.format('unsent' if si.unsent else 'unsigned'))
- elif post_send_op:
- try:
- tx_range = SentTXRange(arg)
- except:
- die(2, f'{arg}: invalid transaction index arg '
- '(must be a non-negative integer or hyphen-separated range)')
- else:
- infile = si.get_unsent()
- cfg._util.qmsg(f'Got signed transaction file ‘{infile}’')
- match cfg._args:
- case [arg] if cfg.autosign and post_send_op:
- init_autosign(arg)
- case [] if cfg.autosign:
- init_autosign('0')
- case [infile]:
- from .fileutil import check_infile
- check_infile(infile)
- case _:
- cfg._usage()
- if not cfg.status:
- from .ui import do_license_msg
- do_license_msg(cfg)
- from .tx import OnlineSignedTX
- batch = tx_range and (tx_range.last != tx_range.first)
- def do_sep():
- if batch:
- msg('-' * 74)
- async def process_tx(tx):
- do_sep()
- cfg._util.vmsg(f'Getting {tx.desc} ‘{tx.infile}’')
- if tx.is_compat:
- return await tx.compat_send()
- txcfg = Config({'_clone': cfg, 'proto': tx.proto, 'coin': tx.proto.coin})
- if not post_send_op:
- if cfg.tx_proxy:
- from .tx.tx_proxy import check_client
- check_client(txcfg)
- from .rpc import rpc_init
- tx.rpc = await rpc_init(txcfg)
- if not post_send_op:
- if cfg.mark_sent:
- await tx.post_send(asi)
- return 0
- if tx.is_swap and not tx.check_swap_expiry():
- die(1, 'Swap quote has expired. Please re-create the transaction')
- if not cfg.yes:
- tx.info.view_with_prompt('View transaction details?')
- if tx.add_comment(): # edits an existing comment, returns true if changed
- if not cfg.autosign:
- tx.file.write(ask_write_default_yes=True)
- return await tx.send(txcfg, asi, batch=batch)
- async def main():
- if cfg.autosign and post_send_op:
- exitvals = [await process_tx(tx)
- for tx in reversed(await si.get_last_sent(tx_range=tx_range))]
- do_sep()
- return max(exitvals)
- else:
- return await process_tx(await OnlineSignedTX(
- cfg = cfg,
- filename = infile,
- automount = cfg.autosign,
- quiet_open = True))
- sys.exit(async_run(cfg, main))
|