-
Notifications
You must be signed in to change notification settings - Fork 242
CW-673: Save Haven seeds to show it to the user after Haven removal #1518
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
OmarHatem28
merged 12 commits into
main
from
CW-673-save-haven-seeds-to-show-it-to-the-user-after-haven-removal
Dec 11, 2024
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
36a03b9
haven: backup seeds
MrCyjaneK 892c1e8
haven backup fixes
MrCyjaneK a311a19
ci fix
MrCyjaneK d763d1f
Merge branch 'main' into CW-673-save-haven-seeds-to-show-it-to-the-us…
MrCyjaneK d13d7a5
reorder build script
MrCyjaneK fefc56a
Merge branch 'main' into CW-673-save-haven-seeds-to-show-it-to-the-us…
MrCyjaneK 52b4fdf
disable haven
MrCyjaneK 10b0eea
properly call cw_haven code
MrCyjaneK 2d16992
[skip ci] update PR
MrCyjaneK 9de6b45
Merge remote-tracking branch 'origin/main' into CW-673-save-haven-see…
MrCyjaneK b6a7284
Merge branch 'main' into CW-673-save-haven-seeds-to-show-it-to-the-us…
OmarHatem28 560e98d
Update evm_chain_transaction_history.dart
OmarHatem28 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import 'package:cw_core/hive_type_ids.dart'; | ||
import 'package:hive/hive.dart'; | ||
|
||
part 'haven_seed_store.g.dart'; | ||
|
||
@HiveType(typeId: HavenSeedStore.typeId) | ||
class HavenSeedStore extends HiveObject { | ||
HavenSeedStore({required this.id, this.seed}); | ||
|
||
static const typeId = HAVEN_SEED_STORE_TYPE_ID; | ||
static const boxName = 'HavenSeedStore'; | ||
static const boxKey = 'havenSeedStoreKey'; | ||
|
||
@HiveField(0, defaultValue: '') | ||
String id; | ||
|
||
@HiveField(2) | ||
String? seed; | ||
} |
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
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.
Uh oh!
There was an error while loading. Please reload this page.