-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* PASS1-82: Delete input PSBT file after successful signing (#59) * PASS1-156: Bitcoin Core causes invalid bitcoin address error (#63) * PASS1-126: Passport crashes when making a microSD backup (#71) This issue was happening only when attempting to backup a device with a multisig configuration that contained multiple different derivation paths instead of all devices in a given configuration having the same derivation path. * PASS1-181: Passport fails to verify multi-sig change addresses in Sparrow (#72) * PASS1-191: Add pairing support for Simple Bitcoin Wallet (#75) Co-authored-by: Corey Lakey <[email protected]> Co-authored-by: Corey Lakey <[email protected]>
- Loading branch information
1 parent
3c27b48
commit 4268b2e
Showing
9 changed files
with
72 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
ports/stm32/boards/Passport/modules/wallets/simple_bitcoin_wallet.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-FileCopyrightText: 2021 Foundation Devices, Inc. <[email protected]> | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
# | ||
# simple_bitcoin_wallet.py - Simple Bitcoin Wallet support | ||
# | ||
|
||
from .generic_json_wallet import create_generic_json_wallet | ||
from .multisig_json import create_multisig_json_wallet | ||
from .multisig_import import read_multisig_config_from_qr, read_multisig_config_from_microsd | ||
from data_codecs.qr_type import QRType | ||
|
||
SimpleBitcoinWallet = { | ||
'label': 'Simple Bitcoin Wallet', | ||
'sig_types': [ | ||
{'id': 'single-sig', 'label': 'Single-sig', 'addr_type': None, | ||
'create_wallet': create_generic_json_wallet}, | ||
], | ||
'export_modes': [ | ||
{'id': 'qr', 'label': 'QR Code', 'qr_type': QRType.UR2}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters