mycitadel / mycitadel-desktop

MyCitadel Wallet app for Linux, Windows & MacOS desktop made with GTK+3
https://mycitadel.io
GNU Affero General Public License v3.0
153 stars 14 forks source link

Electrum Import #46

Open ulrichard opened 2 years ago

ulrichard commented 2 years ago

The first screen has some functionality for importing from other wallets. It would be cool, if Electrum wallets could be imported. This should be really easy by using https://github.com/RCasatta/electrum2descriptors With this library, converting an Electrum wallet file to a pair of descriptors is as easy as: ` let wallet = ElectrumWalletFile::from_file(wallet).unwrap();

let descriptors = wallet.to_descriptors().unwrap(); `

dr-orlovsky commented 2 years ago

The feature is planned for the next release. Thank you very much or the info about converter!