xmrwallet.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
  4. # Copyright (C)2013-2024 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen-wallet
  9. # https://gitlab.com/mmgen/mmgen-wallet
  10. """
  11. help.xmrwallet: xmrwallet help notes for MMGen suite
  12. """
  13. def help(proto,cfg):
  14. from ..xmrwallet import xmrwallet_uarg_info as uai
  15. return """
  16. Many operations take an optional ‘wallets’ argument: one or more address
  17. indexes (expressed as a comma-separated list and/or hyphenated range) in
  18. the default or specified key-address file, each corresponding to a Monero
  19. wallet with the same index. If the argument is omitted, all wallets are
  20. operated upon.
  21. All operations except for ‘relay’ require a running Monero daemon (monerod).
  22. Unless --daemon is specified, the daemon is assumed to be listening on
  23. localhost at the default RPC port.
  24. If --tx-relay-daemon is specified, the monerod at HOST:PORT will be used to
  25. relay any created transactions. PROXY_IP:PROXY_PORT, if specified, may point
  26. to a SOCKS proxy, in which case HOST may be a Tor onion address.
  27. All communications use the RPC protocol via SSL (HTTPS) or Tor. RPC over
  28. plain HTTP is not supported.
  29. SUPPORTED OPERATIONS
  30. create - create wallets for all or specified addresses in key-address file
  31. sync - sync wallets for all or specified addresses in key-address file
  32. and display a summary of accounts and balances
  33. list - same as ‘sync’, but also list detailed address info for accounts
  34. view - display a summary of accounts and balances in offline mode. May
  35. be invoked without a running monerod
  36. listview - same as ‘view’, but also list detailed address info for accounts
  37. label - set a label for an address
  38. new - create a new account in a wallet, or a new address in an account
  39. transfer - transfer specified XMR amount from specified wallet:account to
  40. specified address
  41. sweep - sweep funds in specified wallet:account to new address in same
  42. account, or new or specified account in another wallet
  43. sweep_all - same as above, but sweep balances of all addresses in the account
  44. relay - relay a transaction from a transaction file created using ‘sweep’
  45. or ‘transfer’ with the --no-relay option
  46. submit - submit an autosigned transaction to a wallet and the network
  47. resubmit - resubmit most recently submitted autosigned transaction (other
  48. actions are required: see Exporting Outputs below)
  49. abort - abort the current transaction created with --autosign. The
  50. transaction may be signed or unsigned
  51. txview - display detailed information about a transaction file or files
  52. txlist - same as above, but display terse information in tabular format
  53. dump - produce JSON dumps of wallet metadata (accounts, addresses and
  54. labels) for a list or range of wallets
  55. restore - same as ‘create’, but additionally restore wallet metadata from
  56. the corresponding JSON dump files created with ‘dump’
  57. export-outputs - export outputs of watch-only wallets for import into
  58. their corresponding offline wallets
  59. export-outputs-sign - same as above, plus request offline wallet to create
  60. signed key images for import by ‘import-key-images’
  61. import-key-images - import key images signed by offline wallets into their
  62. corresponding watch-only wallets
  63. ‘LABEL’ OPERATION NOTES
  64. This operation takes a LABEL_SPEC arg with the following format:
  65. {label_spec}
  66. where WALLET is a wallet number, ACCOUNT an account index, and ADDRESS an
  67. address index.
  68. ‘NEW’ OPERATION NOTES
  69. This operation takes a NEW_ADDRESS_SPEC arg with the following format:
  70. {newaddr_spec}
  71. where WALLET is a wallet number and ACCOUNT an account index. If ACCOUNT
  72. is omitted, a new account will be created in the wallet. Otherwise a new
  73. address will be created in the specified account. An optional label text
  74. may be appended to the spec following a comma.
  75. ‘TRANSFER’ OPERATION NOTES
  76. The transfer operation takes a TRANSFER_SPEC arg with the following format:
  77. {transfer_spec}
  78. where SOURCE is a wallet number, ACCOUNT the source account index, ADDRESS
  79. the destination Monero address and AMOUNT the XMR amount to be sent.
  80. ‘SWEEP’ AND ‘SWEEP_ALL’ OPERATION NOTES
  81. The sweep and sweep_all operations take a SWEEP_SPEC arg with the following
  82. format:
  83. {sweep_spec}
  84. where SOURCE and DEST are wallet numbers and ACCOUNT account indices for the
  85. respective wallets.
  86. If DEST is omitted, a new address will be created in ACCOUNT of SOURCE, and
  87. funds from ACCOUNT of SOURCE will be swept into it.
  88. If DEST is included without its related ACCOUNT, funds from ACCOUNT of SOURCE
  89. will be swept into a newly created account in DEST, or the last existing
  90. account of DEST, if requested by the user.
  91. If both account indices are included, funds from ACCOUNT of SOURCE will be
  92. swept into ACCOUNT of DEST.
  93. The user is prompted before addresses are created or funds transferred.
  94. With ‘sweep’, if the source account has more than one address with a balance,
  95. the balance of a single randomly chosen address will be swept. To sweep the
  96. balances of all addresses in an account, use ‘sweep_all’.
  97. ‘SUBMIT’ AND ‘RELAY’ OPERATION NOTES
  98. By default, transactions are relayed to a monerod running on localhost at the
  99. default RPC port. To relay transactions to a remote or non-default monerod
  100. via optional SOCKS proxy, use the --tx-relay-daemon option described above.
  101. When ‘submit’ is used with --autosign, the transaction filename must be
  102. omitted.
  103. ‘DUMP’ AND ‘RESTORE’ OPERATION NOTES
  104. These commands produce and read JSON wallet dump files with the same
  105. filenames as their source wallets, plus a .dump extension.
  106. It’s highly advisable to make regular dumps of your Monero wallets and back
  107. up the dump files, which can be used to easily regenerate the wallets using
  108. the ‘restore’ operation, should the need arise. For watch-only autosigning
  109. wallets, creating the dumps is as easy as executing ‘mmgen-xmrwallet
  110. --autosign dump’ from your wallet directory. The dump files are formatted
  111. JSON and thus suitable for efficient incremental backup using git.
  112. ‘TXVIEW’ AND ‘TXLIST’ OPERATION NOTES
  113. Transactions are displayed in chronological order based on submit time or
  114. creation time. With --autosign, submitted transactions on the removable
  115. device are displayed.
  116. SECURITY WARNING
  117. If you have an existing MMGen Monero hot wallet setup, you’re strongly
  118. advised to migrate to offline autosigning to avoid further exposing your
  119. private keys on your network-connected machine. See OFFLINE AUTOSIGNING
  120. and ‘Replacing Existing Hot Wallets with Watch-Only Wallets’ below.
  121. EXAMPLES
  122. Note that the transacting examples in this section apply for a hot wallet
  123. setup, which is now deprecated. See OFFLINE AUTOSIGNING below.
  124. Generate an XMR key-address file with 5 addresses from your default wallet:
  125. $ mmgen-keygen --coin=xmr 1-5
  126. Create 3 Monero wallets from the key-address file:
  127. $ mmgen-xmrwallet create *.akeys.mmenc 1-3
  128. After updating the blockchain, sync wallets 1 and 2:
  129. $ mmgen-xmrwallet sync *.akeys.mmenc 1,2
  130. Sweep all funds from account #0 of wallet 1 to a new address:
  131. $ mmgen-xmrwallet sweep *.akeys.mmenc 1:0
  132. Same as above, but use a TX relay on the Tor network:
  133. $ mmgen-xmrwallet --tx-relay-daemon=abcdefghijklmnop.onion:127.0.0.1:9050 sweep *.akeys.mmenc 1:0
  134. Sweep all funds from account #0 of wallet 1 to wallet 2:
  135. $ mmgen-xmrwallet sweep *.akeys.mmenc 1:0,2
  136. Send 0.1 XMR from account #0 of wallet 2 to an external address:
  137. $ mmgen-xmrwallet transfer *.akeys.mmenc 2:0:<monero address>,0.1
  138. Sweep all funds from account #0 of wallet 2 to a new address, saving the
  139. transaction to a file:
  140. $ mmgen-xmrwallet --no-relay sweep *.akeys.mmenc 2:0
  141. Relay the created sweep transaction via a host on the Tor network:
  142. $ mmgen-xmrwallet --tx-relay-daemon=abcdefghijklmnop.onion:127.0.0.1:9050 relay *XMR*.sigtx
  143. Create a new account in wallet 2:
  144. $ mmgen-xmrwallet new *.akeys.mmenc 2
  145. Create a new address in account 1 of wallet 2, with label:
  146. $ mmgen-xmrwallet new *.akeys.mmenc 2:1,"from ABC exchange"
  147. View all the XMR transaction files in the current directory, sending output
  148. to pager:
  149. $ mmgen-xmrwallet --pager txview *XMR*.sigtx
  150. OFFLINE AUTOSIGNING
  151. Tutorial
  152. Master the basic concepts of the MMGen wallet system and the processes of
  153. wallet creation, conversion and backup described in the Getting Started
  154. guide. Optionally create a default MMGen wallet on your offline machine
  155. using ‘mmgen-walletgen’. If you choose not to do this, you’ll be prompted
  156. for a seed phrase at the start of each signing session.
  157. Familiarize yourself with the autosigning setup process as described in
  158. ‘mmgen-autosign --help’. Prepare your removable device and set up the
  159. mountpoints on your offline and online machines according to the instructions
  160. therein. Install ‘monero-wallet-rpc’ on your offline machine and the Monero
  161. CLI wallet and daemon binaries on your online machine.
  162. On the offline machine, insert the removable device and execute:
  163. $ mmgen-autosign --xmrwallets=1-2,7 setup
  164. This will create 3 Monero signing wallets with indexes 1, 2 and 7 and primary
  165. addresses matching your seed’s Monero addresses with the same indexes. (Note
  166. that these particular indexes are arbitrary, for purposes of illustration
  167. only. Feel free to choose your own list and/or range – or perhaps just the
  168. number ‘1’ if one wallet is all you require).
  169. These signing wallets are written to volatile memory and exist only for the
  170. duration of the signing session, just like the temporary MMGen signing wallet
  171. they’re generated from (see ‘mmgen-autosign --help’).
  172. A viewkey-address file for the 3 addresses will also be written to the
  173. removable device. The data in this file will be used to create and access
  174. watch-only wallets on your online machine that match the signing wallets
  175. you’ve just created.
  176. When the setup operation completes, extract the removable device and restart
  177. the autosign script in wait mode:
  178. $ mmgen-autosign --coins=xmr --stealth-led wait
  179. Your only further physical interaction with the offline signing machine now
  180. (assuming everything goes as planned) will be inserting and extracting the
  181. removable device on it. And this is the whole point of autosigning: to make
  182. cold signing as convenient as possible, almost like transacting with a hot
  183. wallet.
  184. If your signing machine is an SoC with MMGen Wallet LED support (see
  185. ‘mmgen-autosign --help’), a quickly flashing LED will indicate that signing
  186. is in progress, a slowly flashing LED an error condition, and no LED that the
  187. program is idle and waiting for device insertion.
  188. On your online machine, start monerod, wait until it’s fully synced with the
  189. network, insert the removable device and execute:
  190. $ mmgen-xmrwallet --autosign --restore-height=current create
  191. This will create 3 watch-only wallets matching your 3 offline signing wallets
  192. and write them to the current directory (an alternate wallet directory may be
  193. specified with the --wallet-dir option).
  194. Note that --restore-height=current is required to prevent a time-consuming
  195. full sync of the wallets from the Genesis block, a meaningless waste of time
  196. in this case since the wallets contain no funds.
  197. Also make note of the --autosign option, a requirement for ALL autosigning
  198. operations with ‘mmgen-xmrwallet’.
  199. Now list your newly created wallets:
  200. $ mmgen-xmrwallet --autosign list
  201. Note that you can also use the ‘sync’ operation here, which produces more
  202. abbreviated output than ‘list’.
  203. Send some XMR (preferably a tiny amount) to the primary address of wallet #7.
  204. Once the transaction has confirmed, invoke ‘sync’ or ‘list’ again to verify
  205. the funds have arrived.
  206. Since offline wallet #7 has no knowledge of the funds received by its online
  207. counterpart, we need to update its state. Export the outputs of watch-only
  208. wallet #7 as follows:
  209. $ mmgen-xmrwallet --autosign export-outputs 7
  210. The outputs are now saved to the removable device and will be imported into
  211. offline wallet #7 when you sign your first transaction.
  212. Now you’re ready to begin transacting. Let’s start by sweeping your funds in
  213. wallet #7’s primary address (account 0) to a new address in the same account:
  214. $ mmgen-xmrwallet --autosign sweep 7:0
  215. This operation creates an unsigned sweep transaction and saves it to the
  216. removable device.
  217. Now extract the removable device and insert it on the offline machine. Wait
  218. for the quick LED flashing to stop (or the blue ‘safe to extract’ message, in
  219. the absence of LED support), signalling that signing is complete.
  220. Note that the offline wallet has performed two operations in one go here:
  221. an import of wallet outputs from the previous step and the signing of your
  222. just-created sweep transaction.
  223. Extract the removable device, insert it on your online machine and submit the
  224. signed sweep transaction to the watch-only wallet, which will broadcast it to
  225. the network:
  226. $ mmgen-xmrwallet --autosign submit
  227. Note that you may also relay the transaction to a remote daemon, optionally
  228. via a Tor proxy, using the --tx-relay-daemon option documented above.
  229. Once your transaction has confirmed, invoke ‘list’ or ‘sync’ to view your
  230. wallets’ balances.
  231. Congratulations, you’ve performed your first autosigned Monero transaction!
  232. For other examples, consult the EXAMPLES section above, noting the following
  233. differences that apply to autosigning:
  234. 1) The --autosign option must always be included.
  235. 2) The key-address file argument must always be omitted.
  236. 3) The ‘relay’ operation is replaced by ‘submit’, with TX filename omitted.
  237. 4) Always remember to sign your transactions after a ‘sweep’ or ‘transfer’
  238. operation.
  239. 5) Always remember to export a wallet’s outputs when it has received funds
  240. from an outside source.
  241. Exporting Outputs
  242. Exporting outputs from a watch-only wallet is generally required in only
  243. three cases:
  244. a) at the start of each signing session (after ‘mmgen-autosign setup’);
  245. b) after the wallet has received funds from an outside source or another
  246. wallet; and
  247. c) after performing a ‘resubmit’ operation.
  248. You might also need to do it, however, if an offline wallet is unable to sign
  249. a transaction due to missing outputs.
  250. At the start of a new signing session, you must export outputs from ALL
  251. wallets you intend to transact with. This is necessary because the offline
  252. signing wallets have just been created and know nothing about the state of
  253. their online counterparts.
  254. Export outputs from a wallet as follows (for all wallets, omit the index):
  255. $ mmgen-xmrwallet --autosign export-outputs <wallet index>
  256. Then insert the removable device on the offline machine. This will import
  257. the outputs into the corresponding signing wallet(s) (and optionally redo any
  258. failed transaction signing operation).
  259. Following a ‘resubmit’, use the ‘export-outputs-sign’ operation instead, and
  260. add the --rescan-spent option:
  261. $ mmgen-xmrwallet --autosign --rescan-spent export-outputs-sign <wallet index>
  262. Here the offline signing wallet(s) will also create signed key images. Insert
  263. the removable device on your online machine and import the signed key images
  264. into your online wallet as follows:
  265. $ mmgen-xmrwallet --autosign import-key-images
  266. Usually, this is all that is required. However, if your wallet continues to
  267. show an incorrect balance after the import operation, you’ll need to re-run
  268. ‘export-outputs-sign’ with the --rescan-blockchain option, followed by another
  269. offline signing and online key image import. Note that blockchain rescans can
  270. take a long time, so patience is required here.
  271. Replacing Existing Hot Wallets with Watch-Only Wallets
  272. If you have an existing MMGen Monero hot wallet setup, you can migrate to
  273. offline transaction signing by ‘cloning’ your existing hot wallets as
  274. watch-only ones via the ‘dump’ and ‘restore’ operations described below.
  275. For additional security, it’s also wise to create new watch-only wallets that
  276. have never had keys exposed on an online machine and gradually transfer all
  277. funds from your ‘cloned’ wallets to them. The creation of new wallets is
  278. explained in the Tutorial above.
  279. Start the cloning process by making dump files of your hot wallets’ metadata
  280. (accounts, subaddresses and labels). ‘cd’ to the wallet directory (or use
  281. --wallet-dir) and execute:
  282. $ mmgen-xmrwallet dump /path/to/key-address-file.akeys{{.mmenc}}
  283. If you’ve been transacting with the wallets, you know where their key-address
  284. file is along with its encryption password, if any. Supply an additional
  285. index range and/or list at the end of the command line if the key-address
  286. file contains more wallets than exist on disk or there are wallets you wish
  287. to ignore.
  288. Do a directory listing to verify that the dump files are present alongside
  289. their source wallet files ending with ‘MoneroWallet’. Then execute:
  290. $ mmgen-xmrwallet --watch-only restore /path/to/key-address-file.akeys{{.mmenc}}
  291. This will create watch-only wallets that “mirror” the old hot wallets and
  292. populate them with the metadata saved in the dump files.
  293. Note that watch-only wallet filenames end with ‘MoneroWatchOnlyWallet’. Your
  294. old hot wallets will be ignored from here on. Eventually, you’ll want to
  295. destroy them.
  296. Your new wallets must now be synced with the blockchain. Begin by starting
  297. monerod and synchronizing with the network.
  298. Mount ‘/mnt/mmgen_autosign’ and locate the file in the ‘xmr’ directory with
  299. the .vkeys extension, which contains the passwords you’ll need to log into
  300. the wallets. This is a plain text file viewable with ‘cat’, ‘less’ or your
  301. favorite text editor.
  302. Then log into each watch-only wallet in turn as follows:
  303. $ monero-wallet-cli --wallet <wallet filename>
  304. Upon login, each wallet will begin syncing, a process which can take more
  305. than an hour depending on your hardware. Note, however, that the process
  306. is interruptible: you may exit ‘monero-wallet-cli’ at any point, log back
  307. in again and resume where you left off.
  308. Once your watch-only wallets are synced, you need to export their outputs:
  309. $ mmgen-xmrwallet --autosign export-outputs-sign
  310. Now insert the removable device on the offline machine and wait until the LED
  311. stops flashing (or ‘safe to extract’). The wallet outputs are now imported
  312. into the signing wallets and corresponding signed key images have been
  313. written to the removable device.
  314. Insert the removable device on your online machine and import the key images
  315. into your watch-only wallets:
  316. $ mmgen-xmrwallet --autosign import-key-images
  317. Congratulations, your watch-only wallets are now complete and you may begin
  318. transacting! First perform a ‘sync’ or ‘list’ to ensure that your balances
  319. are correct. Then you might try sweeping some funds as described in the
  320. Tutorial above.
  321. Once you’ve gained proficiency with the autosigning process and feel ready
  322. to delete your old hot wallets, make sure to do so securely using ‘shred’,
  323. ‘wipe’ or some other secure deletion utility.
  324. """.strip().format(
  325. newaddr_spec = uai['newaddr_spec'].annot,
  326. label_spec = uai['label_spec'].annot,
  327. transfer_spec = uai['transfer_spec'].annot,
  328. sweep_spec = uai['sweep_spec'].annot,
  329. )