-
Notifications
You must be signed in to change notification settings - Fork 10
feat: offline private key export #160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
ce8a12d
feat(hd): integrate hd privkey export
CharlVS 938554c
chore: roll KDF
CharlVS 423b6a0
chore: enable tendermint hd support
CharlVS ec55546
refactor(rpc): Misc rpc class formats/fixes
CharlVS 0ffd4d9
feat: private keys + fixed Tendermint
CharlVS d86e5d4
refactor(sdk): implement co-ordinated activation manager
CharlVS 50bf020
fix: invalid path error
CharlVS 7a3116e
fix: remove unnecessary activation logging
CharlVS 29b5481
chore(pr): apply formatting and fixes to PR
CharlVS 4c77699
feat(example): integrate private key export to example app
CharlVS 242b069
chore: roll KDF
CharlVS 4b24883
Merge branch 'dev' of https://github.com/KomodoPlatform/komodo-wallet…
CharlVS 454ac70
chore: roll KDF
CharlVS cda3780
feat: fee estimation
CharlVS f5f144b
fix(build): make re-build failure stand out
CharlVS 2ab32ae
chore: roll KDF
CharlVS 182ff66
feat(tx): further progress on fee/priority integration
CharlVS e756a29
Merge branch 'dev' of https://github.com/KomodoPlatform/komodo-wallet…
CharlVS 3cc9b32
chore: roll KDF fro `v2.6.1`
CharlVS bc92b1f
fix(api): disable fee/priority features
CharlVS 002b89d
fix: Temporarily disable fee/priority features
CharlVS d3b4493
feat: add memo support protocol value
CharlVS 4f9dc29
fix: resolve incorrect `unban_pubkeys` parsing
CharlVS 14c0210
fix: resolve regression in legacy withdrawal manager
CharlVS 3a7aec2
feat(security): Include failed activations in privkey export
CharlVS a0cc8d7
docs(build): expand asset build failure explination
CharlVS 2abf52f
fix: tweak private key type json to match class properties
CharlVS d03fbe6
fix(RPC): fix new address generation types
CharlVS 76d89df
chore: bump version tags
CharlVS fd76e40
fix: apply Claude PR review suggestions
CharlVS File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| analyzer: | ||
| errors: | ||
| public_member_api_docs: ignore | ||
| omit_local_variable_types: ignore | ||
| include: package:very_good_analysis/analysis_options.6.0.0.yaml |
This file contains hidden or 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 hidden or 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 hidden or 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
2 changes: 1 addition & 1 deletion
2
packages/komodo_defi_framework/lib/src/services/seed_node_service.dart
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: WSS Transform Incorrectly Applied on Native Platforms
The
WssWebsocketTransformnow runs on all platforms due to the removal of thekIsWebcondition from itsneedsTransformmethod. This transform is designed for web platforms, which require WSS connections. Applying it on native platforms, where non-WSS servers are supported, will lead to incorrect filtering of electrum servers.Locations (1)
packages/komodo_coins/lib/src/config_transform.dart#L119-L120Fix in Cursor • Fix in Web