Neil Booth
d5aa6466c9
Be careful removing windows from the list
I've occasionally had Python throw saying the window
isn't in the list.
9 years ago
Neil Booth
986e198e87
Ledger: move get_client() to the plugin
Mirrors the trezor code
9 years ago
Neil Booth
deccca1827
Ledger: handler belongs on wallet
Move closer to trezor sanity
9 years ago
Neil Booth
1ec3ad59cc
Ledger: get new wallet creation working again
This is enough to get new wallet creation working in the
absence of errors.
9 years ago
Neil Booth
45f518e191
Improve Master Public Keys dialog
- Put the radio buttons inside the group box
- Share more code between the have-group-box and not cases
- Use ChoicesLayout
- Don't use cosigner terminology unless it's a Multisig wallet
9 years ago
Neil Booth
b120dd8849
Fix root derivation changes for BIP44_Wallets
Wallet keys use root_name
Also typo xub -> xpub
9 years ago
ThomasV
e5aa543707
fix #1622
9 years ago
Neil Booth
384b8cd5f2
Install wizard: simplify create_or_restore
- Use ChoiceLayout to organize the layouts
- Do wallet filtering in wizard.py as it's GUI independent.
- Only pass the descriptions.
9 years ago
ThomasV
85b48191da
formatting (unneeded spaces)
9 years ago
ThomasV
c02db9ae25
rm switchgui.png file
9 years ago
ThomasV
c47e3499ce
rename wallet methods
9 years ago
Neil Booth
450ab76f78
Fix install wizard
Used to pass the wallet as an argument to wallet methods.
9 years ago
Neil Booth
cda92cd12c
Move cosigner methods to BIP32_RD_Wallet
9 years ago
Neil Booth
637164d335
Introduce BIP32_RD_Wallet
Represents a BIP_32 wallet with a root derivation.
This permits us to see address derivation for NewWallet types
in the QT Gui.
9 years ago
Neil Booth
3d781a2d1b
BIP32_HD_Wallet: Fix address derivation
Unfortunately there was root_name and root_derivation confusion
in the past for classes derived from BIP_32_HD_Wallet.
Address derivation used root_name and so would begin with 'x/'
whereas it should have begun with root_derivation, and so started
with 'm/'.
This fixes that old wart and removes some fudges from the trezor
code that used to work around it.
9 years ago
Neil Booth
4743f033b4
Fix the backwards-compat 'next_account2' code
9 years ago
Neil Booth
5baa5feb11
Put restore_wallet_class back in the derived classes
9 years ago
Neil Booth
5e8d28a187
leger: remove unused imports
9 years ago
Neil Booth
9946feb352
Have BTChipWallet derive from BIP44_Wallet
Narrowing the gap with the Trezor code a bit
9 years ago
ThomasV
2c29cd3bba
rm unused icon
9 years ago
Neil Booth
81d641a13f
Show BIP32 path for BIP32_HD_Wallet classes
from right-click Show Public Keys menu.
Fixes #1598
9 years ago
Neil Booth
d5c3c09bbc
Trezor: Implement decrypt message
For reasons I don't yet understand this can only decrypt
messages encrypted by the Trezor, not by Electrum
9 years ago
Neil Booth
9cf0a9720f
QT handler improvements
Now we have the top_level_window() function, stop using the window
stack.
9 years ago
Neil Booth
83cc5e2001
Fix top level window issue on Mac
Better, more generic fix superseding prior two patches.
9 years ago
Neil Booth
56bc717da1
Encrypt / decrypt: use top level window
Show errors on top level window, otherwise MacOSX gets stuck.
9 years ago
Neil Booth
b97c2857e0
Fixes for message sign and verify
base64 can throw which caused silent verification failures.
Ask for passwords with correct parent window otherwise dialog
not visible on MacOSX. Similarly for verification messages.
9 years ago
ThomasV
9ad4d63ad1
wizard: small tweaks, fix show_restore
9 years ago
Neil Booth
2f1d6b2379
Have Trezor dialog work even if wallet unpaired
Required cleanup of handler logic. Now every client
is constructed with a handler, so there is never a
question of not having one.
9 years ago
Neil Booth
2377476207
Separate out new QT util ChoicesLayout
For future use elsewhere
9 years ago
Neil Booth
3e8598c245
Move trezor-specific install wizard code to plugin
9 years ago
Neil Booth
54cdd551fe
Avoid unnecessary exception on missing libs
9 years ago
Neil Booth
9f0d2f4d21
Replace two uses of dialog with self
9 years ago
ThomasV
9c122c469b
Merge pull request #1617 from Kefkius/gui
Use info message box for Pay-To-Many instructions
9 years ago
ThomasV
6acbe4226e
don't open wizard window if no action was required
9 years ago
Neil Booth
a3bced210d
Treozr: improved settings screen
Nicer layout. Split into three tabs.
9 years ago
Kefkius
d29fd4d9d1
Use info message box for Pay-To-Many instructions
9 years ago
ThomasV
b21ea13940
trezor: fix create account
9 years ago
ThomasV
d867fcc266
update create_main_account in tests
9 years ago
ThomasV
5915b9b7e1
restore action-driven wizard logic
9 years ago
ThomasV
90a2fc1379
Revert "Fix MultiSig wallet creation."
This reverts commit 21038843ea
.
9 years ago
Neil Booth
0117109a2d
Trezor: show supported coins
Also fix dialog layout issue on MacOSX
9 years ago
Neil Booth
6fb7dbd30d
Implement passphrase protection toggling.
Along with chicken box.
9 years ago
Neil Booth
9b29c6c2e6
Trezor: all four available device initializations
Trezor and KeepKey devices can now be initialized by:
- device-generated seed
- existing seed
- BIP39 mnemonic
- master private key
9 years ago
ThomasV
bdb4782b36
Revert "Install wizard multisig improvement"
This reverts commit 4e7c6e5d16
.
That commit breaks the separation between make_seed and add_cosigners
9 years ago
Neil Booth
4e7c6e5d16
Install wizard multisig improvement
Preserves independence of wizard.py from wallet type;
the dependence is expressed entirely through actions
Fixes #1611
9 years ago
ThomasV
59343ec6ec
fix get_label in plot.py
9 years ago
ThomasV
97c443a86d
use a wallet-owned dummy_address, to minimize risk of losses. This was removed in 11d135b
without explanation
9 years ago
ThomasV
f49f538315
Revert "Use a real dummy address"
This reverts commit 9ed987c2da
.
9 years ago
ThomasV
62868ab29a
Register loaded wallets in daemon, to prevent a wallet from being opened twice.
Simplify the wizard logic.
9 years ago
Neil Booth
3d9f321cae
Use a shared device manager
Use a shared device manager across USB devices (not yet taken
advantage of by ledger). This reduces USB scans and abstracts
device management cleanly.
We no longer scan at regular intervals in a background thread.
9 years ago