Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suryapratap1/d1b29cca45a59af25888d9daf5cdf068 to your computer and use it in GitHub Desktop.
Save suryapratap1/d1b29cca45a59af25888d9daf5cdf068 to your computer and use it in GitHub Desktop.
How to create a Monero command line wallet
# LINUX: Download the Linux 64-bit command line client and extract it
wget https://downloads.getmonero.org/linux64
tar jxvf linux64
# MAC: Download the Mac command line client and extract it
wget https://downloads.getmonero.org/mac64
tar jxvf mac64
# WINDOWS: Create a new folder with Windows File Explorer, and use your web browser to download the following file to the new folder
https://downloads.getmonero.org/win64
# WINDOWS: Double click the Monero zip file that has been downloaded to extract it. Then open Command Prompt. Use the 'cd' command to naviate to your new folder
cd monero
# Run the Monero daemon. It will sync with the network and display the message "You are now synchronized with the network. You may now start monero-wallet-cli" when it is completely up to date with the network
# LINUX/MAC:
./monerod
# WINDOWS:
monerod.exe
# The job of the Monero daemon is to monitor the network for new transactions. You now need to open a new terminal window and run the Monero command line wallet, which will communicate with the Monero daemon that you've just stared.
# LINUX/MAC:
./monero-wallet-cli
# WINDOWS:
monero-wallet-cli.exe
# Follow the instructions displayed to create a new wallet. When told the 25 word SEED, write this down on paper and keep it in a very safe place. Even if you forget your passwords, the 25 word SEED can be used to recreate your wallet from any machine and have complete control over your Monero funds. Sample output from the Monero wallet is below:
Specify wallet file name (e.g., MyWallet). If the wallet doesn't exist, it will be created.
Wallet file name (or Ctrl-C to quit): testwallet
No wallet found with that name. Confirm creation of new wallet named: testwallet
(Y/Yes/N/No): Y
Generating new wallet...
Enter a password for your new wallet: ********
Confirm Password: ********
List of available languages for your wallet's seed:
0 : English
1 : Spanish
2 : German
3 : Italian
4 : Portuguese
5 : Russian
6 : Japanese
Enter the number corresponding to the language of your choice: 0
Generated new wallet: 47CL7FiNtW417VjzWt9Zse8Z8URhaHaA2L9jJq6rrLtDhiYK9PfbCavhhMKws9xEdKHBeGcQtJmPt4uEMivooNztC5UkHLD
View key: 005c98c3db115140289bd0dfad97f910e6eeb5e8e12d02fdd4ab2373fbe9110a
**********************************************************************
Your wallet has been generated!
To start synchronizing with the daemon, use "refresh" command.
Use "help" command to see the list of available commands.
Always use "exit" command when closing monero-wallet-cli to save your
current session's state. Otherwise, you might need to synchronize
your wallet again (your wallet keys are NOT at risk in any case).
PLEASE NOTE: the following 25 words can be used to recover access to your wallet. Please write them down and store them somewhere safe and secure. Please do not store them in your email or on file storage services outside of your immediate control.
locker welders womanly lodge gumball selfish altitude dewdrop
terminal nagged exit acquire hookup ashtray wobbly nineteen
duration duties javelin patio baffles ambush bamboo bite nineteen
**********************************************************************
Starting refresh...
Refresh done, blocks received: 0
Balance: 0.000000000000, unlocked balance: 0.000000000000
Background refresh thread started
# Type "address" to see your public wallet address. You can give this address to anyone, and they will be able to send you Monero. However, NEVER give anyone your 25 word SEED.
[wallet 47CL7F]: address
47CL7FiNtW417VjzWt9Zse8Z8URhaHaA2L9jJq6rrLtDhiYK9PfbCavhhMKws9xEdKHBeGcQtJmPt4uEMivooNztC5UkHLD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment