Daniil Polyakov
9977cc5374
fix(ci, programs, privacy_preserving_circuit): properly check programs ci
2026-06-24 20:20:40 +03:00
Daniil Polyakov
d3e507f25d
refactor!(artifacts): keep lee and lez artifacts separated
2026-06-24 18:10:41 +03:00
Daniil Polyakov
e5ca40c0f9
feat: add bedrock withdraw events validation
2026-06-16 22:10:11 +03:00
agureev
2eac764421
chore: update ELFs
2026-06-11 16:41:02 +04:00
agureev
b95f071d60
chose: bump artifacts
...
All artifacts changed either through direct change in the privacy
circuit or through the lee dependency change.
2026-06-10 22:16:51 +04:00
Daniil Polyakov
7f5590907f
feat(sequencer): make bridge deposits fault-tolerant
2026-06-04 15:17:56 +03:00
jonesmarvin8
2104f71e39
feat(key-protocol/nssa)!: PQ resistance primitives for vsk/vpk for shared key agreement ( #474 )
...
* initialize pq encryption changes
* key agreement update
* add test and other fixes
* ci fixes
* fix unit tests
* updates from main and ci
* added updated specs for pq encryption
* addressing comments
* addressed comments
* fix clippy errors from main merge
* Rebased to main
2026-06-03 14:40:06 -04:00
Sergio Chouhy
4bcffafe27
refactor!: rename nssa crate to lee
...
BREAKING CHANGE:
- Crate `nssa` renamed to `lee`; update `Cargo.toml` dependencies from `nssa = { workspace = true }` to `lee = { workspace = true }`.
- Crate `nssa_core` renamed to `lee_core`; update similarly.
- Crate `key_protocol` moved under `lee`; update `Cargo.toml` dependencies from `key_protocol = { workspace = true }` to `lee_key_protocol = { workspace = true }`.
- Type `NSSATransaction` (in `common`) renamed to `LeeTransaction`.
- Error type `nssa::error::NssaError` renamed to `lee::error::LeeError`.
- Error type `nssa_core::error::NssaCoreError` renamed to `lee_core::error::LeeCoreError`.
- All `use nssa::` and `use nssa_core::` import paths must be updated to `use lee::` and `use lee_core::` respectively.
- Guest programs must replace `write_nssa_outputs` with `write_lee_outputs`.
- The sequencer RocksDB column family for the chain state was renamed. Existing databases are incompatible and must be wiped before running the new version.
- Domain separators updated: `"NSSA_seed"` → `"LEE_seed"` (key derivation), `"NSSA/v0.2/KDF-SHA256/"` → `"LEE/v0.2/KDF-SHA256/"` (encryption KDF), `"/NSSA/v0.2/AccountId/PDA/"` →
`"/LEE/v0.2/AccountId/PDA/"` (public PDA address derivation). All previously derived keys, encrypted outputs, and public PDA addresses are invalidated.
2026-06-01 17:11:42 -03:00
Daniil Polyakov
d86e02139f
chore(faucet): add genesis prefix to instruction names
2026-05-29 20:05:38 +03:00
Daniil Polyakov
9b8955daf5
feat(sequencer, programs): implement deposit operation for bridge
2026-05-29 20:01:24 +03:00
Sergio Chouhy
48da4b5119
fix!: protocol fixes
...
BREAKING CHANGE
- Nonce init (PrivateAuthorizedInit): the initial nonce for PrivateAuthorizedInit accounts was incorrectly computed. Privacy preserving circuit code changed, as well as its id.
- Authorization bidirectional check: programs must now set is_authorized = true for every authorized account in pre-states, not just avoid marking unauthorized ones as authorized.
- Authorization in chained calls: authorized-account set is now the union across the call chain instead of being reset at each hop.
2026-05-29 02:08:14 -03:00
Sergio Chouhy
71be6bae32
Merge branch 'main' into schouhy/private-pdas-as-external-input
2026-05-25 16:32:11 -03:00
Daniil Polyakov
fa47d471af
fix: disable default features for risc0-zkvm for workspace and enable client feature for nssa
2026-05-22 18:23:47 +03:00
Pravdyvy
5f14ac1cfe
revert(490): CI test
2026-05-22 07:28:49 +03:00
jonesmarvin8
cf9177a095
feat(wallet): add keycard support for public tx for auth-transfer ( #451 )
...
* feat: add basic commands for communicating with keycard
* initialize changes
* reorganization
* add script file for easier wallet access
* update commands
* fixes
* fixed load for non continuous run
* Updates for signatures with keycard
* fix BIP-340 signatures for fixed sized messages
* fmt
* refactor and add pin support to program facades
* fix unit test
* fixes
* Revert "fixes"
This reverts commit 41f34f4ff4145b7abb60fd9bec168ae4b60f23b4.
* fixes
* fixes
* Removed privacy keycard calls
* Revert "Removed privacy keycard calls"
This reverts commit d70ef505a1f40b87159099761f5fce5a31e3f17b.
* Add domain separators
* Removed privacy txs for keycard
* CI fixes
* CI fixes
* addressed some comments
* fix ci
* ci fixes
* fix integration test issue and updated keycard firmware
* addressed more comments
* fixed deny
* remove keycard-py
* fixed from earlier merge
* add hash_message tests
* add test
* fix deny
* CI fixes
* fixed integration tests
* Update public.rs
* update artifacts
* ci and comments
* addressed comments
* comment fixes
* fixes from merging main
* first round of comments
* Revert "Merge branch 'main' into marvin/keycard-commands"
This reverts commit 3fce53f663a3996938dddf77680854570063ca21, reversing
changes made to e7b42a5177641455a8917bd2e29db20afd9690e5.
* python comments
* addressed comments
* compile error fixed
* fix artifacts
* fix main merge error
* adjust signer logic workflow
* fmt
* merge main and shift keycard tests
* deny fix
* artifacts fix
* remove keycard scripts from root
* tps fix
* fmt
2026-05-21 20:46:13 -04:00
Sergio Chouhy
3c6d623c49
feat!: Add new path for externally provided seed to the circuit.
...
BREAKING CHANGE: add identity variants to the circuit and change semantics for `Claim::Authorized` for private PDAs
2026-05-21 11:22:31 -03:00
jonesmarvin8
694e484228
fix(nssa): audit 91 issue fix ( #489 )
...
* address audit-issue-91
* add privacy test version
* addressed comments
2026-05-21 09:00:27 -04:00
ygd58
94096bcdc6
fix(workspace): disable risc0-zkvm default features to avoid ring in guest builds
...
- Cargo.toml: add default-features = false to risc0-zkvm
- nssa/Cargo.toml: add explicit prove feature for ExecutorEnv/default_prover
- Regenerate artifacts
Fixes #468
2026-05-20 17:23:51 +02:00
Sergio Chouhy
58226fd0f7
fix test
2026-05-15 20:11:11 -03:00
Sergio Chouhy
57173cc140
make authorization propagate transitively through chain calls in the circuit like in the public execution
2026-05-15 17:24:24 -03:00
Daniil Polyakov
8c8f5b57af
fixup! refactor: use faucet program to manage faucet account
2026-05-15 01:46:39 +03:00
Daniil Polyakov
ee5a98fc48
refactor: use faucet program to manage faucet account
2026-05-15 01:34:07 +03:00
Daniil Polyakov
9075f30f19
refactor: use system faucet and vaults to supply accounts from genesis
...
Co-authored-by: Copilot <copilot@github.com>
2026-05-15 01:34:01 +03:00
Daniil Polyakov
5f207a3f02
feat: move initial accounts data into genesis
2026-05-15 01:33:50 +03:00
moudyellaz
ba84ba60ce
fix(privacy_preserving_circuit): refresh artifact
2026-05-14 23:45:52 +02:00
moudyellaz
3c8ff78319
merge: resolve conflicts with main
2026-05-14 18:40:49 +02:00
Sergio Chouhy
b3acd46f11
artifacts
2026-05-11 20:00:20 -03:00
Sergio Chouhy
355fe3842d
rename program
2026-05-11 19:38:28 -03:00
Sergio Chouhy
927c24de68
Merge branch 'main' into schouhy/diversify-private-pdas-by-identifier
2026-05-11 18:57:44 -03:00
Sergio Chouhy
a9baf5d3dc
rename progam
2026-05-11 17:09:46 -03:00
Sergio Chouhy
54c039f639
artifacts
2026-05-08 22:31:38 -03:00
Moudy
cf699fde7c
refactor: rename private_pda_spender to auth_transfer_proxy
2026-05-08 18:18:40 +02:00
moudyellaz
06fd4fc12e
fix: artifacts and deny
...
Refs: #454
2026-05-08 17:32:28 +02:00
Moudy
4e7963c655
feat: add dedicated sealing key for GMS distribution
2026-05-08 08:19:55 +02:00
moudyellaz
01eb4a58b8
fix(privacy_preserving_circuit): satisfy CI lints and refresh artifact for #454
...
Refs: #454
2026-05-07 21:23:35 +02:00
Sergio Chouhy
75ab606dcf
artifacts
2026-05-07 15:28:00 -03:00
Sergio Chouhy
8f6a519f0e
clippy
2026-05-07 13:45:51 -03:00
Sergio Chouhy
2d7d50646d
add tests
2026-05-07 12:27:51 -03:00
Sergio Chouhy
d24931c643
refactor proxy program
2026-05-06 15:59:42 -03:00
Moudy
f73cd6738f
refactor: delegate to auth-transfer, add shared account test
2026-05-06 14:22:50 +02:00
Sergio Chouhy
fb4ddb055a
Merge branch 'main' into schouhy/diversify-private-pdas-by-identifier
2026-05-06 00:22:58 -03:00
Sergio Chouhy
1599fc655c
add tests
2026-05-05 21:17:15 -03:00
Moudy
9e207450d6
fix: resolve merge conflicts with main
2026-05-05 12:37:54 +02:00
Sergio Chouhy
95afb2065d
use privateaccuontkind in privacy circuit
2026-05-04 18:07:56 -03:00
Sergio Chouhy
dd4670ab2f
encrypt privateaccountkind instead of identifier
2026-05-01 01:21:48 -03:00
Sergio Chouhy
8d9fa1224e
remove fixed identifier for pdas
2026-05-01 00:26:38 -03:00
Sergio Chouhy
fb48c82717
add identifier to private pda formula
2026-05-01 00:06:23 -03:00
Moudy
8a8bac8b69
ci: address fmt-rs, lint, and unit-tests failures from the merge
2026-04-30 22:16:26 +02:00
Moudy
8517906025
Merge branch 'main' into moudy/feat-strong-type-circuit-input
2026-04-30 20:17:47 +02:00
Moudy
b9ceda98cf
fix: rebuild artifacts
2026-04-30 16:04:48 +02:00