Skip to content
Open
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2f65653
partial slash support
open-junius Sep 13, 2025
08ecfb3
fix compilation
open-junius Sep 13, 2025
db829a7
wrong unit change
open-junius Sep 13, 2025
e777995
fix ai comments
open-junius Sep 14, 2025
48077e6
update doc
open-junius Sep 14, 2025
9269de7
make doc better
open-junius Sep 14, 2025
53745d9
update doc
open-junius Sep 14, 2025
eb04ac7
update doc
open-junius Sep 14, 2025
7098620
update doc
open-junius Sep 14, 2025
4e01946
Merge branch 'main' into support-partial-slash
open-junius Sep 30, 2025
d17c986
update contract first
open-junius Oct 1, 2025
e4e148e
forge test passed
open-junius Oct 4, 2025
f46a127
compilation is ok
open-junius Oct 4, 2025
a4f87b9
add python file
open-junius Oct 8, 2025
b390327
add whole unit test flow
open-junius Oct 9, 2025
cc706ff
update toml file
open-junius Oct 9, 2025
c5a1e83
fix conflict
open-junius Oct 10, 2025
84db6e0
rebase PR
open-junius Oct 10, 2025
2da56ed
deposit test ok
open-junius Oct 12, 2025
5341695
add script to run unit test
open-junius Oct 13, 2025
970b18a
all test done
open-junius Oct 13, 2025
8bbf180
fix more alpha issues
open-junius Oct 14, 2025
a2219c7
done
open-junius Oct 14, 2025
3d90687
remove key
open-junius Oct 14, 2025
f73ef42
remove run all option
open-junius Oct 14, 2025
8450fa7
fix ai comments
open-junius Oct 14, 2025
ccbd4ad
add coldkey set and burn register
open-junius Oct 15, 2025
0c8abb2
update doc
open-junius Oct 15, 2025
0362d0e
fix lint issue
open-junius Oct 15, 2025
c476faa
fix ai comments
open-junius Oct 15, 2025
e9f8635
update doc and scripts
open-junius Oct 15, 2025
d935b26
fix typo
open-junius Oct 15, 2025
d00856a
fix grammar
open-junius Oct 15, 2025
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
226 changes: 218 additions & 8 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ prost = "0.12"
prost-types = "0.12"

# Crypto and security
blake2 = "0.10"
blake3 = "1.5"
aes-gcm = "0.10"
rand = "0.8"
Expand All @@ -92,6 +93,7 @@ libc = "0.2"

# Additional crypto dependencies
sp-core = "34.0.0"
sp-io = "34.0.0"
ed25519-dalek = { version = "2.1", features = ["rand_core", "pem"] }
p256 = { version = "0.13", features = ["ecdsa", "pkcs8", "pem"] }
pbkdf2 = { version = "0.12", features = ["hmac"] }
Expand Down
Loading