{% 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.
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`:
```
Important commands:
"welcome" - Show welcome message.
"help all" - Show the list of all available commands.
"help " - Show a command's documentation.
"apropos " - 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 []" - Create new subaddress.
"transfer " - Send XMR to an address.
"show_transfers [in|out|pending|failed|pool]" - Show transactions.
"sweep_all " - 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 " - Donate XMR to the development team.
```
## Checking your balance
مُنذ أنه هناك برامج مختلفه لمُعالجه كلاً من سلسله الكتل والمحفظه , العديد من
إستخدامات واجهه سطر الأوامر تحتاج العمل مع الخادم. من ذلك التحقق من
المعاملات القادمه إلي عنوانك. بمجرد تشغيلك الخادم وواجهه سطر الأوامر إكتب
`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.
## Sending monero
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
```
Replace `ADDRESS` with the address you want to send to and `AMOUNT` with how
many monero you want to send.
## Receiving monero
If you have your own Monero address, you just need to give your address to
someone.
You can find out your primary address with:
```
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`:
```
Random payment ID: <82d79055f3b27f56>
Matching integrated address: 4KHQkZ4MmVePC2yau6Mb8vhuGGy8LVdsZD8CFcQJvr4BSTfC5AQX3aXCn5RiDPjvsEHiJu1TC1ybR8pRTCbZM5bhTrAD3HDwWMtAn1K7nV
```
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:
```
integrated_address 82d79055f3b27f56
```
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.
### Using subaddresses
It's suggested to use subaddresses (starting with `8`) instead of your main
address (starting with `4`) to receive funds. Run:
```
address new []
```
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,
```
address new github_donations
```
will generate a subaddress and its label 'github_donations'.
To view all generated addresses, run:
```
address all
```
## Proving to a third party you paid someone
إذا دفعت لتاجر ويدّعي التاجر أنه لم يستلم الأموال ربما يجب عليك إثبات الدفع
لطرف تالت - أو ربما للتاجر نفسه إذا كان خطأ غير مقصود. مونيرو خاص ولذلك لا
يُمكنك الإشاره للمعامله في سلسله الكتل لأنه لا يُمكن معرفه الراسل أو
المُستلم منها. مع ذلك يُمكنك توفير المفتاح الخاص بالمعامله . وبالمفتاح الخاص
بالمعامله يمكن معرفه إذا تم إرسال الأموال لهذا العنوان أم لا. لاحظ أن تخزين
المفاتيح الخاصه بالمعاملات غير متاح إفتراضياً ويجب عليك إتاحته قبل الإرسال
إذا كنت تعتقد أنه ربما تحتاجه :
```
set store-tx-info 1
```
يُمكنك استرداد مفتاح معامله سابقه :
```
get_tx_key 1234567890123456789012345678901212345678901234567890123456789012
```
إدخل هويه المعامله التي تريد الحصول علي مفتاحها. تذكر أنه ربما إنقسم الدفع
إلي عده معاملات وسوف تحتاج إلي عده مفاتيح. بعد ذلك يُمكن إرسال هذا المفتاح
او المفاتيح مع هويه المعامله والعنوان المرسل إليه لإثبات الدفع. لاحظ أن
الطرف التالت إذا كان يعلم عنوان حسابك سيتمكن من معرفه الباقي العائد إليك من
هذه المعامله.
إذا كنت أنت الطرف التالت ( إذا كان هُناك شخص يريد إثبات لك أنه قد أرسل
الأموال لحساب معين) , يمكنك التحقق من ذلك عن طريق:
```
check_tx_key TXID TXKEY ADDRESS
```
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.
## How to find a payment to you
إذا تلقيت دفعة باستخدام هويه معامله محدده ، فيمكنك البحث عنها:
```
payments PAYMENTID
```
يُمكنك تحديد أكثر من هويه معامله واحده.
بشكل عام ، يمكنك مراجعة المدفوعات الواردة والصادرة:
```
show_transfers
```
يُمكنك تحديد طول معين لسرد المعاملات وطلب المعاملات الصادره أو الوارده فقط ,
مثال:
```
show_transfers in 650000
```
سوف يعرض فقط الدفعات الوارده بعد الكتله 650000 . يمكنك أيضاً تحديد نطاق
للكتل.
إذا كنت ترغب في التعدين يمكنك القيام بذلك من المحفظة:
```
start_mining 2
```
سيقوم ذلك ببدأ التعدين في الخادم . لاحظ أن هذا تعدين فردي وربما يأخذ وقت
طويلاً لإيجاد كتله, لإيقاف التعدين:
```
stop_mining
```