@interfold/sdk 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,6 +22,7 @@ interface E3 {
22
22
  decryptionVerifier: string;
23
23
  committeePublicKey: string;
24
24
  ciphertextOutput: string;
25
+ ciphertextCommitment: string;
25
26
  plaintextOutput: string;
26
27
  }
27
28
  interface RequestParams {
@@ -34,9 +35,6 @@ interface E3RequestParams extends RequestParams {
34
35
  paramSet: number;
35
36
  computeProviderParams: `0x${string}`;
36
37
  customParams?: `0x${string}`;
37
- /** When true, ciphernodes generate wrapper/fold proofs for DKG proof aggregation.
38
- * When false, proof aggregation is skipped for faster computation. Defaults to true. */
39
- proofAggregationEnabled?: boolean;
40
38
  }
41
39
  declare enum E3Stage {
42
40
  None = 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interfold/sdk",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -51,7 +51,7 @@
51
51
  "release": "pnpm publish --access=public"
52
52
  },
53
53
  "devDependencies": {
54
- "@interfold/config": "^0.3.0",
54
+ "@interfold/config": "^0.5.0",
55
55
  "concurrently": "^9.1.2",
56
56
  "tsup": "^8.5.0",
57
57
  "typescript": "5.8.3",
@@ -61,8 +61,8 @@
61
61
  "dependencies": {
62
62
  "@aztec/bb.js": "3.0.0-nightly.20260102",
63
63
  "@noir-lang/noir_js": "1.0.0-beta.16",
64
- "@interfold/wasm": "^0.3.0",
65
- "@interfold/contracts": "^0.3.0",
64
+ "@interfold/wasm": "^0.5.0",
65
+ "@interfold/contracts": "^0.5.0",
66
66
  "comlink": "^4.4.2",
67
67
  "viem": "2.30.6",
68
68
  "vite-plugin-top-level-await": "^1.5.0",