Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.83 KB

monero.md

File metadata and controls

44 lines (27 loc) · 1.83 KB

Monero

is a cryptocurrency, that is

  • private: transactions and wallet balances are not publicly visible on the blockchain
  • untraceable: it's ambiguous which funds have been spent, and thus extremely unlikely that a transaction could be linked to particular user

How to get Monero?

Buy it with Bitcoin or other cryptocurrency on shapeshift.io or other cryptocurrency exchange.

A wallet

Generating a unique address for each transaction is not necessary, you can have just one, like a bank account. You can generate a paper wallet on moneroaddress.org, mymonero.com, or using the software as described below.

A wallet has a public address, a mnemonic seed, and a pair of keys - spend key and view key. All keys can be recovered from the mnemonic seed, so that's the only part that needs to be stored safely (or remembered).

Setting up a wallet

mymonero.com can be used, but doing it on command line is more fun:

(on macOS, using Homebrew)

A wallet program and a program running the Monero blockchain are needed. For some uses wallet program is enough, but not for making transactions or checking the balance.

  • download the client here
  • $ monerod - starts running the blockchain
  • $ monero-wallet-cli - starts wallet program, without any flags it will generate a new wallet

Loading a wallet

  • $ monerod - starts running the blockchain, then in separate window:
  • $ monero-wallet-cli --wallet-file <filename>

Checking balance

Once in wallet program, run balance or refresh.


sources