How would one extract the list of public keys from Electrum wallet?

1

I am looking for a way to extract all of the public keys associated with my electrum wallet. I am aware that listaddresses() does this for public addresses, such as 1CWX7o1Ppe4JpEpSLmuovU4HFY3D6Ay24C - however, I am looking to extract the public keys, such as 02b96c2739e9543bdc17bbe58b73a3a9a16aedf2ed554faca9e5acf0b279f5d0e1.

cpe871

Posted 2018-07-28T08:18:09.130

Reputation: 21

Answers

1

You cannot get all of them in one go. You can call getpubkeys("address") for each address (or do it via the GUI by going to the Addresses tab, right clicking on an address, and selecting "Public Keys")

Alternatively, you can get your master public keys (xpub) and derive from those.

Raghav Sood

Posted 2018-07-28T08:18:09.130

Reputation: 10 897

Thank you for the input! Would I be better off generating them directly from the xPub using something that generates addresses in the same fashion?cpe871 2018-07-28T08:58:17.950

If you're doing it often enough, having the xpub will likely help/save time. Electrum's client is open source, so you should be able to find the xpub->address code in there, and plenty of implementations exist in other languagesRaghav Sood 2018-07-28T09:07:15.233