mirror of
https://github.com/monero-project/monero-site.git
synced 2024-12-13 20:06:35 +02:00
updated simplewallet knowledgebase: formatting and updates for 0.9 use
This commit is contained in:
parent
f3b296cc41
commit
b9c6e8f611
@ -10,26 +10,25 @@ attribution: "<!-- Icon is based on work by Freepik (http://www.freepik.com) and
|
||||
---
|
||||
# simplewallet
|
||||
|
||||
simplewallet is the wallet software that ships with the monero tree. It is a console program,
|
||||
and manages an account (while a bitcoin wallet manages both an account and the blockchain,
|
||||
Monero separates these: bitmonerod handles the blockchain, and simplewallet handles the account).
|
||||
`simplewallet` is the wallet software that ships with the Monero tree. It is a console program,
|
||||
and manages an account. While a bitcoin wallet manages both an account and the blockchain,
|
||||
Monero separates these: `bitmonerod` handles the blockchain, and `simplewallet` handles the account.
|
||||
|
||||
This guide assumes you already have created an account, according to the other guides, and
|
||||
will show how to perform various operations from the simplewallet UI.
|
||||
This guide will show how to perform various operations from the `simplewallet` UI. The guide assumes you are using the most recent version of the Monero Core software *(currently 0.9.0.0 Hydrogen Helix)*, and have already created an account according to the other guides.
|
||||
|
||||
|
||||
## Checking your balance
|
||||
|
||||
Since the blockchain handling and the wallet are separate programs, many uses of simplewallet
|
||||
Since the blockchain handling and the wallet are separate programs, many uses of `simplewallet`
|
||||
need to work with the daemon. This includes looking for incoming transactions to your address.
|
||||
Once you are running both simplewallet and bitmonerod, refresh the wallet's idea of the blockchain:
|
||||
Once you are running both `simplewallet` and `bitmonerod`, enter `balance`.
|
||||
|
||||
refresh
|
||||
|
||||
This will pull blocks from the daemon the wallet did not yet see, and update your balance
|
||||
to match. To see the balance without refreshing:
|
||||
Example:
|
||||
|
||||
balance
|
||||
Balance: 64.526198850000, unlocked balance: 44.526198850000, including unlocked dust: 0.006198850000
|
||||
|
||||
In this example, `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. `unlocked dust` refers to very small amounts of unspent outputs that may have accumulated in your account.
|
||||
|
||||
|
||||
## Sending monero
|
||||
@ -39,29 +38,31 @@ possibly a payment ID, if the receiving party requires one. In that latter case,
|
||||
may instead give you an integrated address, which is both of these packed into a single address
|
||||
(integrated address do not start with 4, but A).
|
||||
|
||||
This is the command to use when you are sending to a standard address:
|
||||
### Sending to a standard address:
|
||||
|
||||
transfer 3 ADDRESS AMOUNT PAYMENTID
|
||||
transfer ADDRESS AMOUNT PAYMENTID
|
||||
|
||||
Replace ADDRESS with the address you wnt to sent to, AMOUNT with how many monero you want to send.
|
||||
and PAYMENTID with the payment ID you were given. If the receiving party doesn't need one, just
|
||||
Replace `ADDRESS` with the address you want to send to, `AMOUNT` with how many monero you want to send,
|
||||
and `PAYMENTID` with the payment ID you were given. Payment ID's are optional. If the receiving party doesn't need one, just
|
||||
omit it.
|
||||
|
||||
If you have an integrated address to send to:
|
||||
### Sending to an integrated address:
|
||||
|
||||
transfer 3 ADDRESS AMOUNT
|
||||
transfer ADDRESS AMOUNT
|
||||
|
||||
The payment ID is implicit in the integrated address in that case.
|
||||
|
||||
The 3 above is the mixin. It's a good idea to leave it to 3, but you can increase the number if
|
||||
you want to mix with more outputs. The higher the mixin, the larger the transaction, and the
|
||||
higher fees needed.
|
||||
### Specify the mixin for a transaction:
|
||||
|
||||
transfer MIXIN ADDRESS AMOUNT
|
||||
|
||||
Replace `MIXIN` with the mixin amount you wish to use. **If not specified, the default mixin is 4.** It's a good idea to use the default, but you can increase the number if you want to mix with more outputs. The higher the mixin, the larger the transaction, and higher fees are needed.
|
||||
|
||||
|
||||
## Receiving monero
|
||||
|
||||
If you have your own Monero address, you just need to give your standard address to someone.
|
||||
Since Monero is anonymous, you won't see what address sent anything you receive. If you want to
|
||||
Since Monero is anonymous, you won't see what address sent you a payment. If you want to
|
||||
know, you'll have to tell the sender to use a payment ID, which is an arbitrary optional tag which
|
||||
gets attached to a transaction. To make life easier, you can generate an address that already
|
||||
includes a random payment ID:
|
||||
@ -101,7 +102,7 @@ to an address), then you can check this way:
|
||||
|
||||
check_tx_key TXID TXKEY ADDRESS
|
||||
|
||||
Replace TXID, TXKEY and ADDRESS with the transaction ID, per-transaction key, and destination
|
||||
Replace `TXID`, `TXKEY` and `ADDRESS` with the transaction ID, per-transaction key, and destination
|
||||
address which were supplied to you, respectively. simplewallet will check that transaction
|
||||
and let you know how much monero this transaction paid to the given address.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user