-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge outpoints list with Sp Wallet * Move scanning logic to wallet * Use bitcoin structs where possible * Provide start and end as arguments for scan_blocks * Add SpScanner with Updater that processes results * Add owned_outpoints list to scanner * Split get block data stream into separate function * Refactor SpScanner, add process_blocks function * Add Updater trait that is implemented by WalletUpdater * Remove unused update_wallet_with_transaction * Move mnemonic and label to SpWallet from SpClient * Add ChainBackend trait implemented by BlindbitBackend * Move SpScanner, ChainBackend, Updater to sp_client lib * Move blindbit backend to sp-client behind feature
- Loading branch information
Showing
26 changed files
with
555 additions
and
1,321 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// This file is automatically generated, so please do not edit it. | ||
// Generated by `flutter_rust_bridge`@ 2.3.0. | ||
|
||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import | ||
|
||
import 'frb_generated.dart'; | ||
import 'package:collection/collection.dart'; | ||
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart'; | ||
|
||
class U8Array32 extends NonGrowableListView<int> { | ||
static const arraySize = 32; | ||
|
||
@internal | ||
Uint8List get inner => _inner; | ||
final Uint8List _inner; | ||
|
||
U8Array32(this._inner) | ||
: assert(_inner.length == arraySize), | ||
super(_inner); | ||
|
||
U8Array32.init() : this(Uint8List(arraySize)); | ||
} |
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
Oops, something went wrong.