English French
{% include disclaimer.html translated="no" translationOutdated="no" %} {% include disclaimer.html translated="yes" translationOutdated="no" %}
`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. `monero-wallet-cli` est une application de portefeuille qui est incluse dans la suite Monero. C'est un programme en ligne de commandes qui permet de gérer un compte. Tandis que le portefeuille Bitcoin gère à la fois un compte et la chaîne de bloc, Monero sépare ces deux composants : `monerod` s'occupe de la chaîne de blocs, et `monero-wallet-cli` gère le compte.
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. Ce guide montrera comment effectuer diverses opération depuis l'interface de `monero-wallet-cli`. Ce guide suppose que vous utilisiez la version la plus récenter de Monero et que vous ayez déjà créé un compte comme exposé dans l'autre guide.
Overview
You can have a list of the most important commands by running `help`:
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.

"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.

"donate <amount>" - Donate XMR to the development team.
Checking your balance ## Vérifier votre solde
Since the blockchain handling and the wallet are separate programs, many uses of `monero-wallet-cli` need to work with the @daemon. This includes looking for incoming transactions to your address. Once you are running both `monero-wallet-cli` and `monerod`, enter `balance`. Dans la mesure ou la gestion de la chaîne de blocs et le portefeuille sont des applications séparées, de nombreux usages de `monero-wallet-cli` implique de fonctionner avec le démon. Incluant la vérifications des transactions entrantes sur votre adresse. Une fois que `monero-wallet-cli` et `monerod` sont tous deux en cours d'exécution, entrez `balance`.
Output:
Currently selected account: [0] Primary account
Tag: (No tag assigned)
Balance: 7.499942880000, unlocked balance: 7.499942880000
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. Dans cette exemple, `Balance` correspond à votre solde total. `unlocked balance` est le montant actuellement disponible pour être dépensé. Les nouvelles transactions reçues nécessitent 10 confirmations sur la chaîne de blocs avant d'être débloquées. `unlocked dust` corresponds à de très faible montants de sorties non dépensées qui ont pu s'accumuler sur votre compte.
Sending monero ## Envoyer des Moneroj
You will need the standard address you want to send to (a long string starting with '4' or a '8'). The command structure is:
transfer ADDRESS AMOUNT
transfer ADRESSE MONTANT
Replace `ADDRESS` with the address you want to send to and `AMOUNT` with how many monero you want to send.
Receiving monero ## Recevoir des moneroj
If you have your own Monero address, you just need to give your address to someone. Si vous avez votre propre adresse Monero, vous devez simplement communiquer à quelqu'un votre adresse standard.
You can find out your primary address with: Vous pouvez trouver votre adresse standard avec :
address
address
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`: Comme Monero est anonyme, vous ne verrez pas l'adresse à partir de laquelle les fonds vous sont envoyés. Si vous voulez le savoir, par exemple pour créditer un client particulier, vous devrez indiquer à l'émetteur d'utiliser un ID de paiement, qui est une étiquette optionnelle et arbitraire qui sera associé à la transaction. Pour vous faciliter la vie, vous pouvez générer une adresse qui inclus déjà un ID de paiement aléatoire.