Bitcoin Forum
November 01, 2024, 06:17:29 AM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 [92] 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 ... 193 »
1821  Bitcoin / Electrum / Re: How to move BTC from Paper Wallet to Electrum on: January 20, 2017, 11:00:35 AM
Abdussamad: I used the Console ismine ('XXXX') on the address that I got when I decrypted my Private Code and it returned "false". But I initiated the Sweep from Electrum.

I have the Transaction ID--can I use that to help track this

Again--Thanks

A sweep does not import the private key. Look up the transaction ID on a blockchain explorer (or post it here) and look where the coins went. Check again with that address.

Yeah I meant the target address that should belong to your electrum wallet.
1822  Bitcoin / Electrum / Re: How to move BTC from Paper Wallet to Electrum on: January 19, 2017, 06:45:14 PM
To bring the addresses tab into view press ctrl+A.

Alternatively you can switch to the console tab and use this command to determine if an address belongs to your wallet:

Code:
ismine('the address you swept the coins to')

If it returns true then the address is in your wallet.
1823  Bitcoin / Electrum / Re: How to move BTC from Paper Wallet to Electrum on: January 19, 2017, 04:07:07 PM
look at the orb icon in the bottom right. is it green or red? if it is not green thenclick on it and select a different electrum server. you can also do this via tools menu > network.

btw the difference between 34mbtc and 33.9 mbtc could just be the transaction fee. a sweep is an on-chain transaction so there are transaction fees involved. if you see 33.9 in your electrum wallet then you already have all your coins there.
1824  Bitcoin / Electrum / Re: Import a web wallet on: January 19, 2017, 02:01:19 PM
Okay thanks a lot sir was really helpful . One last thing tho . what would be your advice import the BC.in in the electrum ? or just make new wallte in electrum and and use both?
If you need the addresses used in Blockchain.info, just import and remember the seeds.

If not, I would recommend you to just create a new wallet in Electrum and use only Electrum. Blockchain.info is far too unstable IMO.

Yes I agree with this advice.
1825  Bitcoin / Electrum / Re: Import a web wallet on: January 19, 2017, 08:01:38 AM
I have blockchain.info web-wallet that i want to import to Electrum desktop wallet can i do that?

Also i am kinda newbie . Can i ask what is the best way to use Eletrum safely .I only have one pc that is always connected to the internet.

How to save my Electrum on an offline usb ?

If you don't know how to get your private keys in blockchain.info, just create a new electrum wallet and transfer all your funds to it.
Getting non-imported private keys from blockchain.info is a tedious business.  You'll get much less headache by doing that.

That is really a good option . but can i have a link for how the steps to get blockchain private keys . just for learning. Smiley

note that it is not a good idea to mess around with the private keys of an HD wallet like bc.i or electrum.

ok THanks sir but if i did this can i still use my wallet from blockchain web wallet to ? or once it is imported in Electrum it will be removed from blockchain?

You can use the wallet in both places.
1826  Bitcoin / Electrum / Re: Import a web wallet on: January 18, 2017, 06:50:40 PM
Use file > new/restore to create a new wallet if you already have an existing wallet. Otherwise just run electrum and it'll show the new wallet creation wizard on first startup.

Select 'standard wallet' type. Then 'I already have a seed'. Then on the seed entry screen click on 'options' and check 'bip39 seed'. Enter your blockchain.info wallet seed words. The rest of it is just clicking next, next, next.

You can use electrum safely on an online PC. Cold storage and such are only for advanced users and people with lots of bitcoins to secure. Since you are just starting out running electrum on your own PC is enough.
1827  Bitcoin / Electrum / Re: Get unused address in commandline on: January 18, 2017, 08:13:25 AM
edit: I missed some posts  Smiley

Why not use addrequest in combination with getaddressbalance? if an address has a balance then it's used and you get a new one with addrequest.
1828  Bitcoin / Electrum / Re: Electrum Wallet Seed Recovery on: January 16, 2017, 11:51:12 AM

That's actually a very nice outlook. People like you force us to look deeper and everyone learns something new from that. So yeah ask away Smiley

Well thanks a lot, I was about to close this thread and then boom! someone who understands me  Cheesy

Now that we know why we are talking, is it possible to calculate encrypted key on a calculator on some thing like this:
https://asecuritysite.com/encryption/PBKDF2z

PBKDF2 is not an encryption function. I explained that above but it's also explained on that page:

Quote
this is used to create an encryption key from a defined password, and where it is not possible to reverse the password from the hashed value.

A hash function is not an encryption function. Electrum uses AES to encrypt your seed:

https://github.com/spesmilo/electrum/blob/59ed5932a859fd807232960404764b8686355830/lib/bitcoin.py#L119
1829  Bitcoin / Electrum / Re: can't install Electrum on Linux Mint 18.1 Serena Cinnamon on: January 16, 2017, 08:26:40 AM
I think you should just use pip2 instead. There is no need to unpack the tarball.
1830  Bitcoin / Electrum / Re: Electrum Wallet Seed Recovery on: January 16, 2017, 08:14:26 AM
I am trying to understand how Electrum works exactly here Roll Eyes.

That's actually a very nice outlook. People like you force us to look deeper and everyone learns something new from that. So yeah ask away Smiley
1831  Bitcoin / Electrum / Re: Electrum Wallet Seed Recovery on: January 15, 2017, 09:24:42 AM
And for the Scene 2 now, What encryption is used to encrypt the hex in Scene 1...
Any devs here to help?

I believe that it uses the password to encrypt using pbkdf2 in the following manner:
Code:
  def mnemonic_to_seed(self, mnemonic, passphrase):
        PBKDF2_ROUNDS = 2048
        mnemonic = normalize_text(mnemonic)
        passphrase = normalize_text(passphrase)
        return pbkdf2.PBKDF2(mnemonic, 'electrum' + passphrase, iterations = PBKDF2_ROUNDS, macmodule = hmac, digestmodule = hashlib.sha512).read(64)


Hashing functions are not encryption functions. That's converting the seed words to the master private key. There is no encryption involved there. This function is actually from bip39 although electrum uses a different seed mnemonic format. The passphrase in this instance is the "extend your seed with custom words" thing that electrum introduced recently. To see that option create a new wallet and during the seed display window phase click on options.
 
I see you've figured out how to decrypt the new seed from scene 2 using the console. But the OP could just have opened the wallet file using electrum and then viewed the seed via the GUI menu option wallet > seed. You can open a different wallet file using file > open or with the -w command line switch.

1832  Bitcoin / Bitcoin Technical Support / Re: generating an HD wallet.dat file throught a seed? on: January 13, 2017, 12:25:10 AM
You can also get other tools that convert that Master Private Key into a BIP 39 mnemonic and vice versa so you can use that too.

That isn't possible since the way bip39 works the seed is passed through hashing functions and out comes the master private key. By definition the output of a hashing function cannot be reversed to get the input of the function. So it's a one way process.

However it should be possible to take the extended private key and encode it as a mnemonic using some other algorithm i.e. not bip39.
Hmm. Right, you can't do that since the mnemonic only goes one way to the seed. I must have been thinking of a different algorithm, but I can't remember what that was.

You could convert a number to a mnemonic with the old electrum algorithm. Pre 2.0. See under mnemonic here:

https://bitcoinspakistan.com/blog/electrum-seed-explained/

However an extended private key is more than just one number. There is a chain code, a key, depth and version number. So lots of stuff in there. Somebody would have to unravel all that.
1833  Bitcoin / Wallet software / Re: SPV wallet for accepting BTC on a website on: January 10, 2017, 07:29:15 AM
So, I'm building a website, but I don't want to use full bitcoin core. Is there any SPV wallet with RPC interface, so I can accept payments using it?

if you just want to receive bitcoins then you don't need a wallet on the server. you can install a deterministic wallet like electrum or mycelium on your own device. then on the server you just need a library that will take your wallet's extended public key and generate addresses from that. this way there is no risk of theft since the private keys remain on your own device and not on the server.

if you tell us what programming language you are using for your web application we can suggest some libraries.
1834  Bitcoin / Electrum / Re: How to create an Electrum address? on: January 10, 2017, 06:18:44 AM
Thank you. That's exactly what I was looking for. I could show the same addresses when I created a new wallet using seed words.
Why does the electrum wallet show 20 addresses? Why slow down the computer to show the number of addresses more than 100. For example, in other wallets we can add individual addresses from the menu. What is the rationale of having an electrum wallet in this shape?

It seems you don't understand what a deterministic wallet is. Put simply each electrum wallet can have nearly unlimited addresses. Each time you use an address by receiving bitcoins to it electrum will generate new ones automatically so that you have at least 20 unused ones. So don't worry address generation is automatic and you don't have to do anything to generate new addresses. Ok?

1835  Bitcoin / Electrum / Re: transcation uncomfirmed after 9 hours on: January 10, 2017, 06:12:43 AM
Thanks for the reply it didn't even cross mind to increase the fee for the transaction since I usually never send that high of an amount. Ill keep that in mind for future transcations.

enable dynamic fees in preferences so that electrum can suggest suitable fees based on market conditions.
1836  Bitcoin / Bitcoin Technical Support / Re: generating an HD wallet.dat file throught a seed? on: January 10, 2017, 01:08:09 AM
You can also get other tools that convert that Master Private Key into a BIP 39 mnemonic and vice versa so you can use that too.

That isn't possible since the way bip39 works the seed is passed through hashing functions and out comes the master private key. By definition the output of a hashing function cannot be reversed to get the input of the function. So it's a one way process.

However it should be possible to take the extended private key and encode it as a mnemonic using some other algorithm i.e. not bip39.
1837  Bitcoin / Electrum / Re: About Electrum wallet backup on: January 09, 2017, 10:40:44 PM
I backed up my private keys. Can I use these private keys in other wallets too? Let's just say I've backed up the seed words of your wallet. What if the electrum project is canceled in the future?
By looking at Bitcoin's address, can we tell which wallet was created? Every wallet seems to be creating a unique address for itself. But money can be transferred between different wallets.
For example, I backed up private keys in the electrum wallet. Can I use the addresses in the electrum in a different wallet using these private keys?

As long as you have a copy of the electrum software you are good.

Possessing just the address does not give you the power to spend the bitcoins sent there. If it were designed like that your bitcoins could be spent by anybody!

When you spend bitcoins coins may be drawn from various addresses so anyone looking at the blockchain could infer that these addresses belong to the same wallet.
1838  Bitcoin / Electrum / Re: Need help with multisig wallet-- want to transfer BTC to my standard electrum on: January 09, 2017, 10:34:44 PM
You have a lot of questions and they all stem from a lack of basic knowledge about what you are dealing with. Master private keys (xprvs) are what you need not master public keys (xpubs). It is not possible to derive the master private key from the master public key. It is not possible to derive any private keys from any sort of public key.

Your wallet is a multisig wallet so you need signatures generated by multiple private keys that can only be derived from the master private keys. Without them you can't spend your bitcoins.

ThomasV or anybody else can't help you either. Bitcoin is not a bank.
1839  Bitcoin / Electrum / Re: Need help with multisig wallet-- want to transfer BTC to my standard electrum on: January 09, 2017, 05:58:29 PM
I'm sorry but without access to a wallet containing at least one of the missing cosigning xprvs there is nothing that can be done to recover your bitcoins.
1840  Bitcoin / Electrum / Re: Electrum wallet bitcoins lost forever? on: January 09, 2017, 06:47:28 AM
mickshake i suggest upgrading to the latest version of electrum and trying again. first backup your wallet file though. It's located here:

http://docs.electrum.org/en/latest/faq.html#where-is-my-wallet-file-located

Pages: « 1 ... 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 [92] 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 ... 193 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!