Bitcoin Forum
April 24, 2024, 05:06:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 ... 95 »
321  Bitcoin / Electrum / Re: Electrum 2.0 release on: March 06, 2015, 07:34:23 PM
How do I turn on HW1 support?
you need to install from sources; HW1 is not supported in the current executables.
Any reasons to why these aren't standard or are they not 100% ready?
I'm also interested in the answer to this.

it is because the developer who is doing the builds did not receive his HW1 yet
322  Bitcoin / Electrum / Re: Electrum 2.0 release on: March 05, 2015, 01:04:36 PM
2 strange things in this release:
1. The default transaction fee was changed from 20000 satoshi (0.0002) to 50000 satoshi (0.0005 BTC) per kb
2. The default unit was changed from BTC to mBTC.

Yes, I noticed the change in default fee. It's a bit high to default at 0.0005btc. You can change the default fee in "Tools/Preference" anyway.

This is because the previous version was rounding the number of kilobytes in the transaction.
The new version uses the number of bytes to compute the fee, which is often smaller.
323  Bitcoin / Electrum / Re: Gap limit setting missing in 1.9? on: March 03, 2015, 09:36:37 PM
Code:
wallet.storage.put( 'gap_limit', 100)

This still works for electrum 2.0, if anyone's wondering. It'd be nice to have this exposed in the GUI though

better do this:
Code:
wallet.change_gap_limit(100)

324  Bitcoin / Electrum / Re: how do I create multiple wallets on electrum. on: March 03, 2015, 09:31:32 PM
just install the latest version
325  Bitcoin / Electrum / Re: Electrum 2.0 release on: March 03, 2015, 12:53:48 PM
How do I turn on HW1 support?
you need to install from sources; HW1 is not supported in the current executables.
326  Bitcoin / Electrum / Re: What is an account? on: March 03, 2015, 11:18:20 AM
multiple accounts within a wallet are not supported, except if you open a trezor wallet.
327  Bitcoin / Electrum / Re: Electrum 2.0 release on: March 03, 2015, 11:16:35 AM
binaries for windows and osx have been uploaded, with trezor support.
328  Bitcoin / Electrum / Re: Electrum 2.0 release on: March 02, 2015, 09:09:57 PM
Standalone Executable for Windows gives me the following error:

Microsoft Visual C++ Runtime Library
Runtime Error!
R6034
An application has made an attempt to load the C runtime library incorrectly.
see https://github.com/spesmilo/electrum/issues/1000
329  Bitcoin / Electrum / Re: Multisig accounts with Trezor on: March 02, 2015, 06:51:31 PM
that is not possible for the moment, but we will add it in the future
330  Bitcoin / Electrum / Electrum 2.0 release on: March 02, 2015, 01:54:29 PM
The electrum.org website was updated with 2.0 source packages. Executables for windows and OSX will be released soon.

The release notes are a bit dense, due to the large amount of changes and new features in this release. In the coming weeks we will be adding more detailed documentation to the wiki and to the website.

There has been a very long hiatus in Electrum releases, because it took me a lot of time to decide about the new seed derivation method and wallet structure. Now that this part is done, I hope that we will resume to a faster release pace.

I would like to thank all the people who contributed to this release: developers, beta testers, and ordinary users who provided useful feedback.

Cheers,

Thomas

_____________________________

RELEASE-NOTES

# Release 2.0

* Before you upgrade, make sure you have saved your wallet seed on
paper.

* Documentation is now hosted on a wiki: http://electrum.orain.org

* New seed derivation method (not compatible with BIP39). The seed
phrase includes a version number, that refers to the wallet
structure. The version number also serves as a checksum, and it
will prevent the import of seeds from incompatible wallets. Old
Electrum seeds are still supported.

* New address derivation (BIP32). Standard wallets are single account
and use a gap limit of 20.

* Support for Multisig wallets using parallel BIP32 derivations and
P2SH addresses ("2 of 2", "2 of 3").

* Compact serialization format for unsigned or partially signed
transactions, that includes the BIP32 master public key and
derivation needed to sign inputs. Serialized transactions can be
sent to cosigners or to cold storage using QR codes (using Andreas
Schildbach's base 43 idea).

* Support for BIP70 payment requests:
- Verification of the chain of signatures uses tlslite.
- In the GUI, payment requests are shown in the 'Invoices' tab.

* Support for hardware wallets: Trezor (Satoshilabs) and Btchip (Ledger).

* Two-factor authentication service by TrustedCoin. This service uses
"2 of 3" multisig wallets and Google Authenticator. Note that
wallets protected by this service can be deterministically restored
from seed, without Trustedcoin's server.

* Cosigner Pool plugin: encrypted communication channel for multisig
wallets, to send and receive partially signed transactions.

* Audio Modem plugin: send and receive transactions by sound.

* OpenAlias plugin: send bitcoins to aliases verified using DNSSEC.

* New 'Receive' tab in the GUI:
- create and manage payment requests, with QR Codes
- the former 'Receive' tab was renamed to 'Addresses'
- the former Point of Sale plugin is replaced by a resizeable
window that pops up if you click on the QR code

* The 'Send' tab in the Qt GUI supports transactions with multiple
outputs, and raw hexadecimal scripts.

* The GUI can connect to the Electrum daemon: "electrum -d" will
start the daemon if it is not already running, and the GUI will
connect to it. The daemon can serve several clients. It times out
if no client uses if for more than 5 minutes.

* The install wizard can be used to import addresses or private
keys. A watching-only wallet is created by entering a list of
addresses in the wizard dialog.

* New file format: Wallets files are saved as JSON. Note that new
wallet files cannot be read by older versions of Electrum. Old
wallet files will be converted to the new format; this operation
may take some time, because public keys will be derived for each
address of your wallet.

* The client accepts servers with a CA-signed SSL certificate.

* ECIES encrypt/decrypt methods, availabe in the GUI and using
the command line:
encrypt <pubkey> <message>
decrypt <pubkey> <message>

* The Android GUI has received various updates and it is much more
stable. Another script was added to Android, called Authenticator,
that works completely offline: it reads an unsigned transaction
shown as QR code, signs it and shows the result as a QR code.

331  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: March 02, 2015, 01:49:00 PM
The Electrum website has been updated for version 2.0: https://electrum.org
Windows and OSX executables will be added soon.
332  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: March 01, 2015, 09:30:02 PM
2.0 has been tagged!
see https://twitter.com/ElectrumWallet/status/572020854567149568
333  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: February 23, 2015, 09:10:53 AM
Thanks to all beta testers! Electrum 2.0 will be released this week. Expect us.
334  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: February 18, 2015, 07:02:07 PM
Could anyone please answer my question that I posted above
Thank you . any answer is appreciated a lot

Quote
Is there is any changelog page ? I would like to see what are the Upcoming changes , would be nice to see more features on this wallet

see https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES
335  Bitcoin / Electrum / Re: Electrum - State of the Alloy on: February 09, 2015, 04:03:28 PM
Really what I am after, is the functionality provided by the merchant.py.  So, possibly what I am seeing is the best way for anyone to use Electrum as a service to their bitcoin application, is to create a plugin for Electrum that provides the interface.

I agree with that. it's on my todo list.
336  Bitcoin / Electrum / Re: Electrum - State of the Alloy on: February 06, 2015, 06:21:27 AM
I am using the window complied version of Electrum 2.0 beta. When I try to restore an wallet and select the Trezor hardware wallet the program closes. Please advice or direct me to some online documentation of I am doing something wrong. Thanks.

thanks for noticing that.
I fixed it here: https://github.com/spesmilo/electrum/commit/271a27fc83121e206631ebac95490973f6e96adb
next binaries will have the fix.
337  Bitcoin / Mycelium / Re: Recreating a wallet using a mnemonic in different software? on: February 05, 2015, 02:46:59 PM
The whole matter kind of reminds me of this http://xkcd.com/927/... Smiley

you're right, but at least Electrum's new standard does not impose a dictionary Smiley
338  Bitcoin / Wallet software / Re: Introducing Hive, a beautiful new wallet for Mac OS X on: February 05, 2015, 02:34:43 PM
Electrum 2.0 BETA is out. Can we use the seed interchangeably with Hive Web?
Hmm, I haven't played with it yet, so I don't know - I'm assuming it uses BIP32 now? If so, then probably, but it depends on what specific configuration it uses. I'll ask on our Slack.


see here: https://bitcointalk.org/index.php?topic=939337.msg10366268#msg10366268
339  Bitcoin / Mycelium / Re: Recreating a wallet using a mnemonic in different software? on: February 05, 2015, 02:31:32 PM
You will not be able to import BIP39 mnemonics into Electrum.

That's a shame, but thank you for the correction.

Electrum's legacy seed derivation method used a fixed wordlist.

That was a mistake, because now the old wordlist must be shipped with every new version of Electrum, just to ensure backward compatibility for existing seeds.
BIP39 is reproducing that same mistake. That's why I do not want to use it in Electrum. It is possible to do better.

BIP39 uses a hash of the utf8 encoded seed phrase, which is a good idea, because it would have allowed us to create a standard that is independent from a fixed wordlist.
However, when designing their checksum, the BIP39 guys decided to make it dependent on the wordlist... That's a pity, and that is not consistent.

Electrum's new seed derivation method and checksum are both completely independent from the wordlist.
It will allow us to update wordlists without breaking existing seeds, and to create localized wordlists without worrying about reusing the same words in different languages.
340  Bitcoin / Electrum / Re: Electrum 2.0 beta version on: February 05, 2015, 10:22:12 AM
What command now i need to use to increase the gap limit?

There is no proper command, because I don't want to encourage users doing that.
But you can do this in the python console:

Code:
wallet.change_gap_limit(n)

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 [17] 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 ... 95 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!