@aztec/simulator 3.0.0-nightly.20251009 → 3.0.0-nightly.20251010

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.
@@ -140,7 +140,7 @@ export class SideEffectArrayLengths {
140
140
  if (this.nullifiers.length + this.previousSideEffectArrayLengths.nullifiers >= MAX_NULLIFIERS_PER_TX) {
141
141
  throw new NullifierLimitReachedError();
142
142
  }
143
- this.nullifiers.push(new Nullifier(siloedNullifier, this.sideEffectCounter, /*noteHash=*/ Fr.ZERO));
143
+ this.nullifiers.push(new Nullifier(siloedNullifier, /*noteHash=*/ Fr.ZERO, this.sideEffectCounter));
144
144
  this.log.trace(`Tracing new nullifier (counter=${this.sideEffectCounter})`);
145
145
  this.incrementSideEffectCounter();
146
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/simulator",
3
- "version": "3.0.0-nightly.20251009",
3
+ "version": "3.0.0-nightly.20251010",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./server": "./dest/server.js",
@@ -63,25 +63,25 @@
63
63
  ]
64
64
  },
65
65
  "dependencies": {
66
- "@aztec/constants": "3.0.0-nightly.20251009",
67
- "@aztec/foundation": "3.0.0-nightly.20251009",
68
- "@aztec/noir-acvm_js": "3.0.0-nightly.20251009",
69
- "@aztec/noir-noirc_abi": "3.0.0-nightly.20251009",
70
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251009",
71
- "@aztec/noir-types": "3.0.0-nightly.20251009",
72
- "@aztec/protocol-contracts": "3.0.0-nightly.20251009",
73
- "@aztec/stdlib": "3.0.0-nightly.20251009",
74
- "@aztec/telemetry-client": "3.0.0-nightly.20251009",
75
- "@aztec/world-state": "3.0.0-nightly.20251009",
66
+ "@aztec/constants": "3.0.0-nightly.20251010",
67
+ "@aztec/foundation": "3.0.0-nightly.20251010",
68
+ "@aztec/noir-acvm_js": "3.0.0-nightly.20251010",
69
+ "@aztec/noir-noirc_abi": "3.0.0-nightly.20251010",
70
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251010",
71
+ "@aztec/noir-types": "3.0.0-nightly.20251010",
72
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251010",
73
+ "@aztec/stdlib": "3.0.0-nightly.20251010",
74
+ "@aztec/telemetry-client": "3.0.0-nightly.20251010",
75
+ "@aztec/world-state": "3.0.0-nightly.20251010",
76
76
  "lodash.clonedeep": "^4.5.0",
77
77
  "lodash.merge": "^4.6.2",
78
78
  "tslib": "^2.4.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@aztec/kv-store": "3.0.0-nightly.20251009",
82
- "@aztec/merkle-tree": "3.0.0-nightly.20251009",
83
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251009",
84
- "@aztec/noir-test-contracts.js": "3.0.0-nightly.20251009",
81
+ "@aztec/kv-store": "3.0.0-nightly.20251010",
82
+ "@aztec/merkle-tree": "3.0.0-nightly.20251010",
83
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251010",
84
+ "@aztec/noir-test-contracts.js": "3.0.0-nightly.20251010",
85
85
  "@jest/globals": "^30.0.0",
86
86
  "@types/jest": "^30.0.0",
87
87
  "@types/lodash.clonedeep": "^4.5.7",
@@ -216,7 +216,7 @@ export class SideEffectTrace implements PublicSideEffectTraceInterface {
216
216
  throw new NullifierLimitReachedError();
217
217
  }
218
218
 
219
- this.nullifiers.push(new Nullifier(siloedNullifier, this.sideEffectCounter, /*noteHash=*/ Fr.ZERO));
219
+ this.nullifiers.push(new Nullifier(siloedNullifier, /*noteHash=*/ Fr.ZERO, this.sideEffectCounter));
220
220
 
221
221
  this.log.trace(`Tracing new nullifier (counter=${this.sideEffectCounter})`);
222
222
  this.incrementSideEffectCounter();