electrum wallet listaddress without change addresses

0

i use the command

electrum listaddresses -w .electrum/testnet/wallets....

On a bash console to get all addresses of the wallet. This however also return the "change" addresses which i cannot actually use on my project. Is there anyway to filter those addresses on bash or i need to open the wallet file and read it?

Nick Andriopoulos

Posted 2019-03-07T19:58:53.877

Reputation: 3

Answers

1

There's command specific help with electrum help <commandname>. If you run that for listaddresses you will see that the --receiving switch does what you want. So electrum listaddresses --receiving.

Abdussamad

Posted 2019-03-07T19:58:53.877

Reputation: 1 850