Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
793dccc
Add Nightstream zkVM adapter and integration tests
guillevalin Feb 12, 2026
52b5379
Use Git dependency for Nightstream, structure to generate and use cir…
guillevalin Feb 13, 2026
fdc036b
Initial support for Nightstream on MidnightPrivacy module.
guillevalin Feb 13, 2026
b7c704c
Improve note_spend placeholder circuit, connect it to worker and cont…
guillevalin Feb 13, 2026
623cf14
note-spend proving test.
guillevalin Feb 13, 2026
1b2f827
Remove Ligero adapter from Sovereign SDK
guillevalin Feb 17, 2026
ca0b8e9
Enhance Nightstream host performance metrics
guillevalin Feb 17, 2026
9a76a55
Enhance sparse cache preloading in NightstreamProofPackage
guillevalin Feb 17, 2026
4f544a5
Refactor Nightstream configuration and service scripts
guillevalin Feb 17, 2026
2755dfa
Add Midnight bridge support and enhance Nightstream functionality
guillevalin Feb 17, 2026
451fbc3
Enhance Nightstream functionality with viewer attestations and blackl…
guillevalin Feb 18, 2026
e5ef6e4
Update Nightstream dependencies to use Git sources
guillevalin Feb 18, 2026
5f829c4
Update Nightstream dependencies and enhance build configurations
guillevalin Feb 18, 2026
c8feda5
Update Nightstream dependencies and enhance build configurations
guillevalin Feb 19, 2026
0c08f9d
Update RISC-V target architecture in value_validator scripts
guillevalin Feb 19, 2026
ac1e016
Merge remote-tracking branch 'origin/feature/midnight-privacy' into f…
guillevalin Feb 19, 2026
e655248
Remove Ligero Rollup
guillevalin Feb 19, 2026
8382689
Merge branch 'feature/midnight-privacy' into feature/nightstream-zkvm
guillevalin Feb 27, 2026
5d5a4e3
Update Nightstream dependencies and improve proof handling
guillevalin Feb 27, 2026
0195cd0
update nightstream
nicarq Mar 1, 2026
aa4cd4f
fixes
nicarq Mar 1, 2026
b35b0cf
deposit circuit
nicarq Mar 1, 2026
3a98c1e
update
nicarq Mar 9, 2026
1a56771
Update Nightstream dependencies and improve build scripts
guillevalin Mar 9, 2026
c3f65ec
Update Nightstream dependencies to latest revision and enhance circui…
guillevalin Mar 9, 2026
960c121
feat: fix overflow on note spend (#104)
guillevalin Mar 10, 2026
ef9131c
feat: enhance note spend circuit with public binding digest functions
guillevalin Mar 10, 2026
8095a74
refactor: streamline viewer-attested note-spend tests
guillevalin Mar 10, 2026
5bdd7ac
Update Nightstream dependencies to latest revision and enhance proof …
guillevalin Mar 10, 2026
e5cf745
Enable Nightstream auto backend in Sovereign
guillevalin Mar 12, 2026
4dcac77
Add lambda deployment scripts and keep-state support
guillevalin Mar 17, 2026
fcaca76
Store proof packages in S3 by reference
guillevalin Mar 17, 2026
05795a8
Update lambda deployment scripts and docs
guillevalin Mar 17, 2026
6bb28f3
Add S3 Express proof storage support
guillevalin Mar 17, 2026
6cdc1c5
Keep MCP transfers on proof refs
guillevalin Mar 17, 2026
d81fa72
Fix proof-ref verifier signature handling
guillevalin Mar 17, 2026
7a9e777
Harden proof verifier Nightstream fetches
guillevalin Mar 24, 2026
5725f08
Merge branch 'feature/midnight-privacy' into feature/nightstream-zkvm
guillevalin Mar 24, 2026
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
7 changes: 7 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
[env]
# Skip guest (zkVM) builds by default during development. Guest compilation
# targets RISC-V and pulls in crates incompatible with the host, causing long
# build times and errors in rust-analyzer. Override with SKIP_GUEST_BUILD=0
# when you actually need to compile guest code.
SKIP_GUEST_BUILD = { value = "1", force = false }

[build]
# See <https://github.com/Sovereign-Labs/sovereign-sdk-wip/issues/1196>: it might break.
# But right now it seems to work.
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,5 @@ logs/mcp-external.log
midnight_fvk_service.sqlite
scripts/__pycache__
tsink
examples/rollup-ligero/midnight-l2-prod.json
examples/rollup-ligero/operator-wallets-prod.json
examples/test-data/genesis/production/mock
.cursor
examples/rollup-ligero/tsink-data
Loading