Simplify versioning system for user guides
This new approach doesn't require version numbers and make easier for contributors to understand the status
of the document. There are only 3 states:
- Outdated: The page is outdated and might not work as expected
- Untranslated: The page needs to be translated
- Translation outdated: The page is translated, but the original (English) document has been updated
To mark a guide as outdated, we change the boolean of the front matter entry 'outdated' in /resources/user-guides/GUIDE.
If 'False', the guide is updated. If 'True' all versions of the guide (English included) will show a warning at the bottom
of the page.
The other 2 states are related to the status of the translated pages and we control them from the language-specific
user guides: /_i18n/LANG/resources/user-guides/GUIDE. At the top of the page a snippet will include 2 parameters:
- translated: "yes" if the page is translated, "no" if it's not.
- translationOutdated: "yes" if the translation is outdated, "no" if it's not
This new system aims to be simpler than the precedent, avoiding to compare versioning numbers and using a higher level
system instead (yes, no, True, False). I also removed the middle way status 'only minor changes', because if there are
only minor changes that don't affect the usability of the guide, we don't need to point it out.
The old system was complex and people didn't use it. These changes will hopefully make things easier for translators and
other contributors.
2020-05-03 13:38:01 +00:00
|
|
|
|
{% include disclaimer.html translated="yes" translationOutdated="no" %}
|
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
`monero-wallet-cli` is the wallet software shipped in the Monero
|
|
|
|
|
archives. It is a console program, and manages an account. While a bitcoin
|
|
|
|
|
wallet manages both an account and the blockchain, Monero separates these:
|
|
|
|
|
`monerod` handles the blockchain, and `monero-wallet-cli` handles the
|
|
|
|
|
account.
|
|
|
|
|
|
|
|
|
|
This guide will show how to perform various operations with
|
|
|
|
|
`monero-wallet-cli`. The guide assumes you are using the most recent version
|
|
|
|
|
of Monero and have already created an account according to the other guides.
|
|
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
|
|
You can have a list of the most important commands by running `help`:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
Important commands:
|
|
|
|
|
|
|
|
|
|
"welcome" - Show welcome message.
|
|
|
|
|
"help all" - Show the list of all available commands.
|
|
|
|
|
"help <command>" - Show a command's documentation.
|
|
|
|
|
"apropos <keyword>" - Show commands related to a keyword.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
"wallet_info" - Show wallet main address and other info.
|
|
|
|
|
"balance" - Show balance.
|
|
|
|
|
"address all" - Show all addresses.
|
|
|
|
|
"address new [<label text with white spaces allowed>]" - Create new subaddress.
|
|
|
|
|
"transfer <address> <amount>" - Send XMR to an address.
|
|
|
|
|
"show_transfers [in|out|pending|failed|pool]" - Show transactions.
|
|
|
|
|
"sweep_all <address>" - Send whole balance to another wallet.
|
|
|
|
|
"seed" - Show secret 25 words that can be used to recover this wallet.
|
|
|
|
|
"refresh" - Synchronize wallet with the Monero network.
|
|
|
|
|
"status" - Check current status of wallet.
|
|
|
|
|
"version" - Check software version.
|
|
|
|
|
"exit" - Exit wallet.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
"donate <amount>" - Donate XMR to the development team.
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
## Checking your balance
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Поскольку обработка данных в блокчейне и учетных записей кошельков
|
|
|
|
|
пользователей совершаются отдельными программами, многие функции
|
|
|
|
|
`monero-wallet-cli` не будут функционировать без работающего демона. Одной
|
|
|
|
|
из таких функций является поиск входящих транзакций на ваш адрес. Только
|
|
|
|
|
когда вы запустите оба приложения, `monero-wallet-cli` и `monerod`, сможете
|
|
|
|
|
увидеть входящий баланс своего кошелька. Для этого введите команду
|
|
|
|
|
`balance`.
|
|
|
|
|
|
|
|
|
|
Output:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
Currently selected account: [0] Primary account
|
|
|
|
|
Tag: (No tag assigned)
|
|
|
|
|
Balance: 7.499942880000, unlocked balance: 7.499942880000
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
In this example you're viewing the balance of your primary account (with
|
|
|
|
|
index `[0]`). `Balance` is your total balance. The `unlocked balance` is the
|
|
|
|
|
amount currently available to spend. Newly received transactions require 10
|
|
|
|
|
confirmations on the blockchain before being unlocked.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
## Sending monero
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
You will need the standard address you want to send to (a long string
|
|
|
|
|
starting with '4' or a '8'). The command structure is:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
transfer ADDRESS AMOUNT
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Replace `ADDRESS` with the address you want to send to and `AMOUNT` with how
|
|
|
|
|
many monero you want to send.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
## Receiving monero
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
If you have your own Monero address, you just need to give your address to
|
|
|
|
|
someone.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
You can find out your primary address with:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
address
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Since Monero is anonymous, you won't see the origin address the funds you
|
|
|
|
|
receive came from. If you want to know, for instance to credit a particular
|
|
|
|
|
customer, you'll have to tell the sender to use a payment ID, which is an
|
|
|
|
|
arbitrary optional tag which gets attached to a transaction. It's not
|
|
|
|
|
possible to use standalone payment addresses, but you can generate an
|
|
|
|
|
address that already includes a random payment ID (integrated addresss)
|
|
|
|
|
using `integrated_address`:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
Random payment ID: <82d79055f3b27f56>
|
|
|
|
|
Matching integrated address: 4KHQkZ4MmVePC2yau6Mb8vhuGGy8LVdsZD8CFcQJvr4BSTfC5AQX3aXCn5RiDPjvsEHiJu1TC1ybR8pRTCbZM5bhTrAD3HDwWMtAn1K7nV
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
This will generate a random payment ID, and give you the address that
|
|
|
|
|
includes your own account and that payment ID. If you want to select a
|
|
|
|
|
particular payment ID, you can do that too. Use:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
integrated_address 82d79055f3b27f56
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Payments made to an integrated address generated from your account will go
|
|
|
|
|
to your account, with that payment ID attached, so you can tell payments
|
|
|
|
|
apart.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
### Using subaddresses
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
It's suggested to use subaddresses (starting with `8`) instead of your main
|
|
|
|
|
address (starting with `4`) to receive funds. Run:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
address new [<label text with white spaces allowed>]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This will generate a subaddress and its optional label, which addess you can
|
|
|
|
|
share to receive payment on the account it's linked to. For example,
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
address new github_donations
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
will generate a subaddress and its label 'github_donations'.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
To view all generated addresses, run:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
address all
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
## Proving to a third party you paid someone
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Если вы платите субъекту, а он заявляет, что не получил средств, вам может
|
|
|
|
|
потребоваться доказать третьему лицу, которому вы отправляли средства, или
|
|
|
|
|
даже самому субъекту, что платеж был действительно отправлен. Monero
|
|
|
|
|
является конфиденциальной сетью, поэтому вы не можете просто указать на свою
|
|
|
|
|
транзакцию в блокчейне, так как вы не можете сказать, кто ее отправил, и кто
|
|
|
|
|
ее получил. Однако существует возможность предоставлять `tx key` (Ключ
|
|
|
|
|
транзакций) третьей стороне, а эта сторона уже сможет определить, была ли
|
|
|
|
|
отправлена эта транзакция Monero этому конкретному адресу. Обратите
|
|
|
|
|
внимание, что сохранение этих ключей для каждой транзакции отключено по
|
|
|
|
|
умолчанию, и вам нужно будет включить его перед отправкой, если вы считаете,
|
|
|
|
|
что вам может понадобиться данная функция. Делается это с помощью команды:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
set store-tx-info 1
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
|
|
|
|
Вы можете извлечь `tx key` (Ключ транзакций) из более ранней транзакции:
|
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
get_tx_key 1234567890123456789012345678901212345678901234567890123456789012
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Введите идентификатор транзакции, для которого вы хотите узнать
|
|
|
|
|
ключ. Помните, что платеж мог быть разделен более чем на одну транзакцию,
|
|
|
|
|
поэтому вам может понадобиться несколько ключей для каждой транзакции. Затем
|
|
|
|
|
вы можете отправить этот ключ или ключи кому-либо, кому вы хотите
|
|
|
|
|
предоставить подтверждение совершения своей транзакции, а также
|
|
|
|
|
идентификатор транзакции и адрес, на который вы отправили средства. Обратите
|
|
|
|
|
внимание, что эта третья сторона, зная свой собственный адрес, и эти данные
|
|
|
|
|
сможет узнать, какие именно средства вы ей отправили.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Если вы являетесь третьей стороной (то есть кто-то хочет доказать вам, что
|
|
|
|
|
отправил Monero на ваш адрес), вы можете проверить это таким способом:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
check_tx_key TXID TXKEY ADDRESS
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Replace `TXID`, `TXKEY` and `ADDRESS` with the transaction ID,
|
|
|
|
|
per-transaction key, and destination address which were supplied to you,
|
|
|
|
|
respectively. `monero-wallet-cli` will check that transaction and let you
|
|
|
|
|
know how much monero this transaction paid to the given address.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
## How to find a payment to you
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Если вы получили платеж с использованием определенного `payment id`
|
|
|
|
|
(Идентификатор платежа), вы можете посмотреть информацию об этом с помощью
|
|
|
|
|
команды:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
payments PAYMENTID
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
|
|
|
|
Вы также можете указать более одного идентификатора платежа.
|
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
В более общем плане вы можете просматривать информацию обо всех входящих и
|
|
|
|
|
исходящих платежах, если введете команду:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
show_transfers
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Вы можете дополнительно указать высоту блока, чтобы отображать только
|
|
|
|
|
последние транзакции и запрашивать только входящие или исходящие
|
|
|
|
|
транзакции. Например, команда:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
show_transfers in 650000
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
покажет только входящие транзакции после блока 650000. Вы также можете
|
|
|
|
|
указывать диапазоны высоты блоков.
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Если вы хотите запустить фоновый майнинг, то можете сделать это прямо из
|
|
|
|
|
кошелька командой:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
start_mining 2
|
|
|
|
|
```
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
Это запустит майнинг на демоне в 2 потока. Обратите внимание, что это
|
|
|
|
|
соло-майнинг, и может потребоваться очень длительное время, прежде чем вы
|
|
|
|
|
найдете блок. Чтобы остановить майнинг, введите команду:
|
2018-09-30 10:53:21 +00:00
|
|
|
|
|
2021-07-12 14:57:49 +00:00
|
|
|
|
```
|
|
|
|
|
stop_mining
|
|
|
|
|
```
|