Author

Topic: console in text, stdio mode (Read 484 times)

newbie
Activity: 3
Merit: 0
April 17, 2016, 11:25:53 AM
#3
In GUI Console I can generate new addresses as I need-
http://docs.electrum.org/en/latest/faq.html#how-can-i-pre-generate-new-addresses
------------------
for x in range(0, 50):
     print wallet.create_new_address()
---------------------------
as well I can run other command

but if I using -g text, stdio mode, it's not clear to me how run  commands like this?

Probably it's possible to do in python console or script using electrum python module
hero member
Activity: 619
Merit: 500
April 16, 2016, 10:59:37 AM
#2
Addresses are automatically created once you used an existing one.
I don't think there is a dedicated command to create a new address (neither in the GUI nor the CLI)

You could use
Code:
electrum listaddresses
to show a list of your wallet addresses.

You can see all the available command line options if you type
Code:
electrum --help
to show a list of commands

And if you want to get more information about a specific command you could for example use
Code:
electrum listaddresses help
newbie
Activity: 3
Merit: 0
April 14, 2016, 08:31:29 AM
#1
Im interesting how can I use console command in text, stdio mode , like in GUI mode? for example I want generate new addresses in text mode, is it possible?
Jump to: