Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.5.2] - 2026-04-12

### Changed

- **`@orbinum/circuits`** bumped `0.4.4` → `0.5.0` — adds `fee` as a public signal to `unshield` and `transfer` circuits (breaking change in circuits, semver-minor here).
- **`src/circuits/config.ts`** — `expectedPublicSignals` updated:
- `Unshield`: 5 → 6 (`[merkle_root, nullifier, amount, recipient, asset_id, fee]`)
- `Transfer`: 5 → 7 (`[merkle_root, nullifiers[2], commitments[2], asset_id, fee]`)
- **`tests/circuits/config.test.ts`** — expectations updated to match new signal counts.

## [3.5.1] - 2026-04-08

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@orbinum/proof-generator",
"version": "3.5.1",
"version": "3.5.2",
"description": "ZK-SNARK proof generator for Orbinum. Combines snarkjs (witness) with arkworks WASM (proof generation) to produce 128-byte Groth16 proofs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -39,7 +39,7 @@
"orbinum"
],
"dependencies": {
"@orbinum/circuits": "0.4.4",
"@orbinum/circuits": "0.5.0",
"@orbinum/groth16-proofs": "3.0.0",
"circomlibjs": "0.1.7",
"snarkjs": "0.7.6"
Expand Down
Loading
Loading