diff --git a/.gitignore b/.gitignore index 53a9a65f..ce84d723 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ ietemplates/ _site/* +.idea/ diff --git a/_data/merchants.yml b/_data/merchants.yml index d635918e..1763e199 100644 --- a/_data/merchants.yml +++ b/_data/merchants.yml @@ -17,9 +17,11 @@ - name: ChainRadar url: http://chainradar.com/xmr/blocks - name: MoneroBlocks - url: http://moneroblocks.eu + url: http://moneroblocks.info - category: Libraries and Helpers merchants: + - name: monero-nodejs (Node.js) + url: https://github.com/PsychicCat/monero-nodejs - name: python-monero (Python) url: https://github.com/tippero/python-monero - name: moneronjs (NodeJS) @@ -41,7 +43,7 @@ - name: MoneroPrice.com Price Converter url: http://moneroprice.com/ - name: Offline Monero address generator - url: http://moneroaddress.org/ + url: https://moneroaddress.org/ - category: Services merchants: - name: CryptoEscrow Escrow Service diff --git a/knowledge-base/developer-guides/wallet-rpc.md b/knowledge-base/developer-guides/wallet-rpc.md index 99e09b1c..5248cae2 100644 --- a/knowledge-base/developer-guides/wallet-rpc.md +++ b/knowledge-base/developer-guides/wallet-rpc.md @@ -36,6 +36,11 @@ simplewallet return the wallet's address outputs: address: string + + getheight + returns the current block height + outputs: + height: string transfer send monero to a number of recipients diff --git a/knowledge-base/user-guides/simplewallet.md b/knowledge-base/user-guides/simplewallet.md index 2963a8ca..abeab12a 100644 --- a/knowledge-base/user-guides/simplewallet.md +++ b/knowledge-base/user-guides/simplewallet.md @@ -10,28 +10,29 @@ attribution: "" +--- +# 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 + + \ No newline at end of file