mirror of
https://github.com/monero-project/monero-site.git
synced 2024-12-23 12:09:49 +00:00
fixed merge conflict
This commit is contained in:
commit
a1c69468b1
5 changed files with 97 additions and 27 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
ietemplates/
|
ietemplates/
|
||||||
_site/*
|
_site/*
|
||||||
|
.idea/
|
||||||
|
|
|
@ -17,9 +17,11 @@
|
||||||
- name: ChainRadar
|
- name: ChainRadar
|
||||||
url: http://chainradar.com/xmr/blocks
|
url: http://chainradar.com/xmr/blocks
|
||||||
- name: MoneroBlocks
|
- name: MoneroBlocks
|
||||||
url: http://moneroblocks.eu
|
url: http://moneroblocks.info
|
||||||
- category: Libraries and Helpers
|
- category: Libraries and Helpers
|
||||||
merchants:
|
merchants:
|
||||||
|
- name: monero-nodejs (Node.js)
|
||||||
|
url: https://github.com/PsychicCat/monero-nodejs
|
||||||
- name: python-monero (Python)
|
- name: python-monero (Python)
|
||||||
url: https://github.com/tippero/python-monero
|
url: https://github.com/tippero/python-monero
|
||||||
- name: moneronjs (NodeJS)
|
- name: moneronjs (NodeJS)
|
||||||
|
@ -41,7 +43,7 @@
|
||||||
- name: MoneroPrice.com Price Converter
|
- name: MoneroPrice.com Price Converter
|
||||||
url: http://moneroprice.com/
|
url: http://moneroprice.com/
|
||||||
- name: Offline Monero address generator
|
- name: Offline Monero address generator
|
||||||
url: http://moneroaddress.org/
|
url: https://moneroaddress.org/
|
||||||
- category: Services
|
- category: Services
|
||||||
merchants:
|
merchants:
|
||||||
- name: CryptoEscrow Escrow Service
|
- name: CryptoEscrow Escrow Service
|
||||||
|
|
|
@ -37,6 +37,11 @@ simplewallet
|
||||||
outputs:
|
outputs:
|
||||||
address: string
|
address: string
|
||||||
|
|
||||||
|
getheight
|
||||||
|
returns the current block height
|
||||||
|
outputs:
|
||||||
|
height: string
|
||||||
|
|
||||||
transfer
|
transfer
|
||||||
send monero to a number of recipients
|
send monero to a number of recipients
|
||||||
inputs:
|
inputs:
|
||||||
|
|
|
@ -10,28 +10,29 @@ attribution: "<!-- Icon is based on work by Freepik (http://www.freepik.com) and
|
||||||
---
|
---
|
||||||
# simplewallet
|
# simplewallet
|
||||||
|
|
||||||
simplewallet is the wallet software that ships with the monero tree. It is a console program,
|
`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,
|
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).
|
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
|
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.
|
||||||
will show how to perform various operations from the simplewallet UI.
|
|
||||||
|
|
||||||
|
|
||||||
## Checking your balance
|
## 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.
|
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
|
Example:
|
||||||
|
|
||||||
This will pull blocks from the daemon the wallet did not yet see, and update your balance
|
This will pull blocks from the daemon the wallet did not yet see, and update your balance
|
||||||
to match. This process will normally be done in the background every minute or so. To see the
|
to match. This process will normally be done in the background every minute or so. To see the
|
||||||
balance without refreshing:
|
balance without refreshing:
|
||||||
|
|
||||||
balance
|
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
|
## Sending monero
|
||||||
|
|
||||||
|
@ -40,28 +41,34 @@ 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
|
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).
|
(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 want to send to, AMOUNT with how many monero you want to send.
|
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. If the receiving party doesn't need one, just
|
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.
|
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 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
|
### Specify the mixin for a transaction:
|
||||||
you want to mix with more outputs. The higher the mixin, the larger the transaction, and the
|
|
||||||
higher fees needed.
|
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
|
## Receiving monero
|
||||||
|
|
||||||
If you have your own Monero address, you just need to give your standard address to someone.
|
If you have your own Monero address, you just need to give your standard address to someone.
|
||||||
|
|
||||||
You can find out your address with:
|
You can find out your address with:
|
||||||
|
|
||||||
address
|
address
|
||||||
|
@ -89,7 +96,10 @@ to prove to a third party you did send the funds - or even to the merchant, if i
|
||||||
mistake. Monero is private, so you can't just point to your transaction in the blockchain,
|
mistake. Monero is private, so you can't just point to your transaction in the blockchain,
|
||||||
as you can't tell who sent it, and who received it. However, by supplying the per-transaction
|
as you can't tell who sent it, and who received it. However, by supplying the per-transaction
|
||||||
private key to a party, that party can tell whether that transaction sent monero to that
|
private key to a party, that party can tell whether that transaction sent monero to that
|
||||||
particular address.
|
particular address. Note that storing these per-transaction keys is disabled by default, and
|
||||||
|
you will have to enable it before sending, if you think you may need it:
|
||||||
|
|
||||||
|
set store-tx-keys 1
|
||||||
|
|
||||||
You can retrieve the tx key from an earlier transaction:
|
You can retrieve the tx key from an earlier transaction:
|
||||||
|
|
||||||
|
@ -106,7 +116,7 @@ to an address), then you can check this way:
|
||||||
|
|
||||||
check_tx_key TXID TXKEY ADDRESS
|
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
|
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.
|
and let you know how much monero this transaction paid to the given address.
|
||||||
|
|
||||||
|
|
|
@ -1 +1,53 @@
|
||||||
in progress
|
---
|
||||||
|
layout: static_page
|
||||||
|
title: "Monero tools"
|
||||||
|
title-pre-kick: "Monero tools "
|
||||||
|
title-kick: "for the network "
|
||||||
|
title-post-kick: ""
|
||||||
|
kick-class: "purple-kicks"
|
||||||
|
icon: "icon_userguides"
|
||||||
|
attribution: "<!-- Icon is based on work by Freepik (http://www.freepik.com) and is licensed under Creative Commons BY 3.0 -->"
|
||||||
|
---
|
||||||
|
# bitmonerod
|
||||||
|
|
||||||
|
`bitmonerod` is the daemon software that ships with the Monero tree. It is a console program, and manages the blockchain. 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 have already set up your VPS account and are using SSH to tunnel into the server console.
|
||||||
|
|
||||||
|
## Linux, 64-bit (Ubuntu 14.04)
|
||||||
|
|
||||||
|
### Make sure that port 18080 is open
|
||||||
|
`bitmonerod` uses this port to communicate with other nodes on the Monero network.
|
||||||
|
|
||||||
|
Example if using `ufw`: `sudo ufw allow 18080`
|
||||||
|
Example if using `iptables`: `sudo iptables -A INPUT -p tcp --dport 18080 -j ACCEPT`
|
||||||
|
|
||||||
|
### Download the current Monero Core binaries
|
||||||
|
|
||||||
|
wget https://downloads.getmonero.org/linux64
|
||||||
|
|
||||||
|
### Make a directory and extract the files.
|
||||||
|
|
||||||
|
mkdir bitmonero
|
||||||
|
tar -xjvf linux64 -C bitmonero
|
||||||
|
|
||||||
|
### Launch the daemon
|
||||||
|
|
||||||
|
cd bitmonero
|
||||||
|
./bitmonerod
|
||||||
|
|
||||||
|
### Options:
|
||||||
|
|
||||||
|
Show list of all options and settings:
|
||||||
|
|
||||||
|
./bitmonerod --help
|
||||||
|
|
||||||
|
Launch the daemon as a background process:
|
||||||
|
|
||||||
|
./bitmonerod --detach
|
||||||
|
|
||||||
|
Monitor the output of `bitmonerod` if running as daemon:
|
||||||
|
|
||||||
|
tail -f ~/.bitmonero/bitmonero.log
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue