Bitcoin Forum
July 02, 2024, 01:42:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 ... 193 »
2381  Bitcoin / Electrum / Re: Electrum in Ubuntu IO Error "Cannot read config file." on: June 25, 2014, 11:48:01 AM
Deleting the config file fixed it for me too. I couldn't imagine any beginner or even some novice users figuring this bug out because gui users will see a silent failure.  

I am a Ubuntu beginner and having the same issue...at the risk of sounding stupid, where do I find the config file to delete?

Many thanks

It's in a hidden folder in your home directory. It has a name that begins with a dot : ~/.electrum

Here's a guide for various platforms:

https://en.bitcoin.it/wiki/Electrum#Wallet_File
2382  Bitcoin / Electrum / Re: Electrum Safety Concerns on: June 17, 2014, 06:19:56 PM
Regarding 2. there is such thing as van eck phreaking:

http://en.wikipedia.org/wiki/Van_Eck_phreaking
2383  Bitcoin / Electrum / Re: List addresses! on: June 17, 2014, 03:41:39 PM
He wants only unused addresses. listaddresses will show all main account addresses including used ones.

Edit:
I think you have to combine listaddresses with getaddresshistory. Loop over the output of listaddresses and then use getaddresshistory on each of them. If getaddresshistory returns empty then that's an unused address.

For stuff like this I prefer the command line rather than the elecrum console:

Code:
electrum listaddresses
electrum getaddresshistory 1BitcoinEaterAddressDontSendf59kuE

Electrum spawns a daemon process when you use the command line so multiple requests are more efficient. Still, getaddresshistory takes a few seconds per address so perhaps there is a more efficient way?
2384  Bitcoin / Electrum / Re: EXPERTS ONLY !!!Restoring from seed + offline signing of tx on: June 13, 2014, 06:16:25 PM
i am using wireless.. so i just right click disable wifi ..


so u mean should be ok if i dual boot... windows = online and unbutu = offline.. even my windows have virus will they run to the unbuntu to collect the files and sent back to windows via the internet thru the hacker?

It's possible but unlikely. Malware is usually targeted at a large number of people. So windows malware is windows only. You would have to be targeted specifically with custom malware that can read ext4 partitions.

2385  Bitcoin / Electrum / Re: electrum won't start on: June 13, 2014, 06:13:23 PM
Try this:

https://bitcointalk.org/index.php?topic=594733.msg6552620#msg6552620

Also try deleting the config file in that directory as well.
2386  Bitcoin / Electrum / Re: HELP!!!My Electrum Keeps Synchornizing non stop on: June 11, 2014, 06:28:44 PM
Click on the red icon on the bottom right and change to another electrum server. Note that the first time you run electrum on a new system, or operating system user account, it downloads the blockchain headers and that can take a few minutes.
2387  Bitcoin / Electrum / Re: EXPERTS ONLY !!!Restoring from seed + offline signing of tx on: June 11, 2014, 06:26:58 PM
anyway is there anymore commands lines other then the gap limit?

Using your operating system's command line (not electrum console) you can run a lot of commands. On windows this is known as the command prompt. On MacOSx I think it is the terminal app and on other *nix based operating systems it is the shell. Run the following in the shell and you'll see a list of commands:

Code:
electrum help

For command specific help type something like this

Code:
electrum help signmessage
2388  Other / Beginners & Help / Re: Help deciding which light weight bitcoin wallet on: June 10, 2014, 09:50:28 AM
Indeed, your private keys on Electrum are not at risk of being viewed by nodes. Your public keys, however, are. It is for this reason that it is said that Electrum is not ideal for those wanting a full level of privacy.

I think you mean address not public key. An address is a hash plus checksum of the public key. The public key itself is exposed only when you spend money from an address. That transaction gets broadcast to all the nodes and once it is confirmed it becomes a part of the blockchain.
2389  Other / Beginners & Help / Re: Help deciding which light weight bitcoin wallet on: June 10, 2014, 03:48:38 AM
I`m trying to pick either Multibit or Electrum.

Anyone using these, tell me the difference or which ones more user appeal.

Thanks!


Edit: I use a Mac

I personally use multibit. I find it to be very user friendly and easy to use.

My concern with Electrum is that your keys are stored on the server, making it not only possible for your keys/wallet to be hacked but also opening the possibility that you lose your seed (and your coins).

Electrum stores the seed in a wallet on your computer. Address specific private keys are deterministically generated from the seed at runtime. The private keys or seed are not stored on an electrum server. Electrum servers are queried for transaction details. They are sent your bitcoin addresses only. There are many electrum servers and they are all run by volunteers. They are funded solely by donations.
2390  Bitcoin / Electrum / Re: Does Electrum sync address changes? on: June 08, 2014, 11:41:56 AM
Yes.
2391  Bitcoin / Electrum / Re: Support of BIP0039 Reference Word List on: June 08, 2014, 09:47:12 AM
It doesn't look like Electrum is going to be adopting that word list:

https://bitcointalk.org/index.php?topic=623606.0

But other parts of that spec are being used. Like the mnemonic to seed  function:

https://github.com/spesmilo/electrum/blob/31226b8a34c92b3e6c71cf4fab7c56bf73fe54e0/lib/bitcoin.py#L116

I like to think we'd be able to use numeric bip32 private keys from other software in electrum. Or install watch only wallets using extended public keys generated offline.
2392  Bitcoin / Electrum / Re: How can I install Electrum wallet in Linux with comand lline? on: June 07, 2014, 09:19:28 PM
Add the --pre switch:

Code:
pip install --pre Elecrum-$ELECTRUM_VERSION.tar.gz

You need this for slowaes in newer versions of pip.
2393  Bitcoin / Electrum / Re: Offline Transactions With Imported Private Key on: June 07, 2014, 02:11:58 PM
deseed creates a wallet file with the extension .seedless. What happens when you run it?
deseed does nothing to imported addresses.

Yes it does. I just tried it and it works. Import private key in offline wallet. Then run deseed to create watch only wallet. No manual copy pasting required. Also please see the quote in the OP from thomasv.
2394  Bitcoin / Electrum / Re: Offline Transactions With Imported Private Key on: June 07, 2014, 10:32:02 AM
Code:
electrum deseed #default wallet
electrum -w /path/to/wallet/file deseed #other wallet

If the above doesn't work then what version electrum are you using?

edit: I just read your post again. You're not supposed to run it in the electrum console. You are supposed to run it on the command line i.e. command prompt on windows, shell on *nix.
2395  Bitcoin / Electrum / Re: Offline Transactions With Imported Private Key on: June 07, 2014, 08:43:28 AM
deseed creates a wallet file with the extension .seedless. What happens when you run it?
2396  Bitcoin / Electrum / Re: How can I install Electrum wallet in Linux with comand lline? on: June 07, 2014, 08:41:18 AM
You need to work on your search skills:
https://bitcointalk.org/index.php?topic=518133.msg5981126#msg5981126
2397  Bitcoin / Bitcoin Discussion / Re: What is the total number of Bitcoin addresses ever used ? on: June 07, 2014, 08:38:12 AM
What do you mean when you say a very small amount? I would think with all the security minded bitcoin owners there would be millions and millions of different bitcoin addresses.

Heh heh. I think you are being sarcastic and if you are I totally agree. Most people reuse addresses. Usually it's just one address that they use for everything.
2398  Bitcoin / Bitcoin Discussion / Re: What is the total number of Bitcoin addresses ever used ? on: June 06, 2014, 11:22:53 PM
Relevant chart:

https://blockchain.info/charts/n-unique-addresses

If someone has the total figure then I'd like to see that too. I vaguely recall somebody mentioning it on the forums and it was a very small amount. Most people just reuse addresses.
2399  Bitcoin / Wallet software / Re: what is the difference? on: June 05, 2014, 11:49:20 PM
Multibit vs. electrum:

https://bitcointalk.org/index.php?topic=636215.msg7092990#msg7092990

2400  Bitcoin / Bitcoin Technical Support / Re: Thoughts on the security of this method? on: June 05, 2014, 11:46:22 PM
I know this isn't 100% secure or anything, but realistically is this a reasonable course of action to secure some coins?

1. USB flash drive of Linux Mint or Ubuntu

2. While connected through direct LAN cable internet go download Electrum.

3. Create wallet and write down seed on paper(double, triple check seed ect.)

4. Write down receiving address from wallet.

5. Shutdown computer and send bitcoins from non secure source to the receiving address that was written down.

How does that sound as far as a decent way to have some coins secured? If I need to access them I can boot up from the USB flash and restore the wallet from its seed.

Save the master public key to a file and use that to create a watch only wallet for your online system. This will give you unlimited addresses and offline spending capabilities i.e. a proper offline wallet.

https://electrum.org/tutorials.html#offline-mpk

offline pc being your PC booted off a live disc. Online being it booted of your regular OS.
Pages: « 1 ... 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 ... 193 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!