-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to get addresses for LocalCryptos chain addresses ? #36
Comments
I would think you would use the chain_private_key value, except the prefix "db99..." looks funny to me, so it may not be an extended private key. Anyway, you could try:
If that generates addresses, then check if the first one matches the value of If it doesn't generate addresses, or you get completely lost, you could possibly try creating an empty/dummy account on localcryptos, back it up, and post json here, for me to try. Just never, ever add any funds to the dummy account though. |
@dan-da thanks for the reply
|
Well, I tried, but no luck yet. First of all, the So instead I went to iancoleman's bip39 tool, chose ethereum, and pasted the So then I switched to the bip32 tab, which allows entering custom paths, and tried altering the bip44 path a couple ways, but still no match. So basically, I think you need to contact localcryptos support and ask them what bip32 path they use for their wallet. Once you have it, you should be able to plug it into iancoleman's tool as outlined above. Anyway, I'm going to leave this issue open as a reminder to implement raw seed support. |
thanks a lot, I already contacted them and will update this as soon as i get a reply |
ok, yeah seems a big oversight to me that the backup file does not include the bip32 path. |
Just to update, |
that's a big red flag. If it were me, I would run, not walk to get my assets out of there. At least their code is on github, but even still, why not use a standard that enables users to restore to another wallet if they wish? That kind of lockin seems borderline malicious. I took a quick look at their code in https://github.com/LocalCryptos/LocalCryptosWalletBackupExplorer/blob/master/src/components/StepThree/Explore/index.js At first glance, I don't see see use of a bip32 path, so I'm really not sure what they are doing. It would require some study. |
Hello. LocalCryptos doesn't have a HD/BIP32 wallet. We use a simple deterministic method of ratcheting keys instead. The algorithm we use isn't complex. You can read about it here if you like. If you would like to export the private keys for your address to import to another wallet, you have two options: (a) If you only need the private key for one address, use the LocalCryptos webapp. You can go to your wallet and click "Export private key" next to the address. (b) You can put your wallet backup into this tool (follow the steps under "How do I use this?") and then export a list of all your addresses and keys. Note that for Bitcoin wallets, you will need to use a SegWit-compatible Bitcoin wallet. Addresses in LocalCryptos use P2SH-wrapped P2WPKH addresses (in Electrum you can add the prefix |
Localcryptos has a bug in its withdrawal process. Three day ago I tried to withdraw all my BTC and the transaction still remains as "Pending". The transaction was never broadcasted because it never reached the Mempool. Now I have no access to my BTC and the support team of Localcryptos never answer. |
@localcryptosMichael localcryptosMichael,pleae your help |
Hey Rayo2010x, I'm sure our customer support team can provide you guidance here and figure out why your transaction is stuck. Please write to us here. This GitHub issue isn't the place for LocalCryptos support. If you already have a support ticket number, let me know, privately, and I'll take a look at it immediately. |
Thank you @localcryptosMichael, I have just resolved the problem by myself. Localcryptos support never answered to me. |
Hello,
in LocalCryptos (formerly LocalEthereum) the wallet backup is a json format which includes Coins with the following format
{"token":"BTC","export":{"wallet_version":"1.0","timestamp":1589471278},"first_address":{"address":"3A1mws7jvLBbXVH..........","wallet_address_n":0},"chain_private_key":"db99....."}
how can i get the chain addresses and chain private keys?
The text was updated successfully, but these errors were encountered: