Skip to content
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

Recover securified entities #10

Merged
35 commits merged into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e4ed078
Add recovery and securify modules (empty)
CyonAlexRDX Sep 2, 2024
3897bf2
[no ci] WIP
CyonAlexRDX Sep 3, 2024
7c69eff
[no ci] WIP
CyonAlexRDX Sep 3, 2024
c7fd6bb
just
CyonAlexRDX Sep 3, 2024
a43aa05
fix
CyonAlexRDX Sep 3, 2024
4f21b51
just
CyonAlexRDX Sep 3, 2024
4bb0e73
bytes
CyonAlexRDX Sep 3, 2024
83b8629
fix
CyonAlexRDX Sep 3, 2024
1836ede
add AccessController to SecurifiedEntity state
CyonAlexRDX Sep 3, 2024
e1b22ac
indexer
CyonAlexRDX Sep 3, 2024
43880df
tests
CyonAlexRDX Sep 3, 2024
c7d9637
WIP
CyonAlexRDX Sep 6, 2024
7d0e196
CanonicalEntityIndexingNextFreeIndexAssigner
CyonAlexRDX Sep 6, 2024
a13a9f1
use CanonicalEntityIndexingNextFreeIndexAssigner, add tests
CyonAlexRDX Sep 6, 2024
b43a4a2
test gateway
CyonAlexRDX Sep 9, 2024
0cd5c10
update profile
CyonAlexRDX Sep 9, 2024
e94a78f
add failing test for recovery
CyonAlexRDX Sep 9, 2024
c7f29f0
WIP
CyonAlexRDX Sep 9, 2024
08d7f68
[no ci] WIP
CyonAlexRDX Sep 9, 2024
e7fb83c
[no ci] WIP
CyonAlexRDX Sep 9, 2024
d1d9ea7
[no ci] WIP
CyonAlexRDX Sep 10, 2024
1d29866
working recovery
CyonAlexRDX Sep 10, 2024
a5cc510
doc
CyonAlexRDX Sep 10, 2024
408deb5
doc
CyonAlexRDX Sep 10, 2024
ed8421f
doc
CyonAlexRDX Sep 10, 2024
2db7381
test recovering many
CyonAlexRDX Sep 10, 2024
84eba67
recovery of personas
CyonAlexRDX Sep 10, 2024
9f02021
IEI
Sajjon Sep 11, 2024
a85b535
testing
Sajjon Sep 11, 2024
93d3c7d
[no ci] WIP
Sajjon Sep 11, 2024
7167597
[no ci] WIP
Sajjon Sep 11, 2024
653c3a0
[no ci] WIP
Sajjon Sep 11, 2024
6cc9371
upgrade
Sajjon Sep 12, 2024
15c027e
fix gateway
Sajjon Sep 12, 2024
ad38187
cleanup
Sajjon Sep 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 21 additions & 16 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
{
"cSpell.words": [
"Caprese",
"FACTORINSTANCE",
"FACTORSOURCE",
"interactor",
"Interactors",
"Keyrings",
"preprocess",
"Quartier",
"Rémy",
"substate",
"txid",
"txids",
"unsecurified",
"Yubikey"
]
"cSpell.words": [
"Banksy",
"Caprese",
"FACTORINSTANCE",
"FACTORSOURCE",
"interactor",
"Interactors",
"Keyrings",
"preprocess",
"Quartier",
"Rémy",
"scrypto",
"securify",
"securifying",
"substate",
"txid",
"txids",
"unrecovered",
"unsecurified",
"Yubikey"
]
}
133 changes: 113 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ indexset = "0.4.0"
itertools = "0.13.0"
once_cell = "1.19.0"
rand = "0.8.5"
sha256 = "1.5.0"
sha2 = "0.10.8"
# strum = "0.26.1"
strum = { git = "https://github.com/Peternator7/strum/", rev = "f746c3699acf150112e26c00e6c8ca666d8d068d", features = [
"derive",
Expand All @@ -34,3 +34,6 @@ log = "0.4.20"
sensible-env-logger = "0.3.2"

pretty_env_logger = { git = "https://github.com/seanmonstar/pretty-env-logger/", rev = "0e238400e18649415dc710c025e99c009a1bb744" }
hex = "0.4.3"
enum-as-inner = "0.6.0"
futures = "0.3.30"
Loading
Loading