1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 16:42:10 +02:00
tldr/pages/common/electrum.md
Agniva De Sarker 3da76e4150 Applying the snake_case convention throughout the repo (#967)
* Applying the snake_case convention throughout the repo

- Also removing the file extension where not needed
- Adding {{ }} on a few old pages

* Addressing concerns

- Added {{ }} where they were missed out
- Removed spaces inside {{ }}
- Reverting "file" to "filename" to make it clearer

* Fixing the comments on nc page
2016-07-22 22:24:06 +02:00

31 lines
703 B
Markdown

# electrum
> Ergonomic Bitcoin wallet and private key management.
- Create a new wallet:
`electrum -w {{new_wallet.dat}} create`
- Restore an existing wallet from seed offline:
`electrum -w {{recovery_wallet.dat}} restore -o`
- Create a signed transaction offline:
`electrum mktx {{recipient}} {{amount}} -f 0.0000001 -F {{from}} -o`
- Display all wallet receiving addresses:
`electrum listaddresses -a`
- Sign a message:
`electrum signmessage {{address}} {{message}}`
- Verify a message:
`electrum verifymessage {{address}} {{signature}} {{message}}`
- Connect only to a specific electrum-server instance:
`electrum -p socks5:{{127.0.0.1}}:9050 -s {{56ckl5obj37gypcu.onion}}:50001:t -1`