@aztec/simulator 3.0.0-nightly.20251009 → 3.0.0-nightly.20251011
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,
|
|
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.
|
|
3
|
+
"version": "3.0.0-nightly.20251011",
|
|
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.
|
|
67
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
68
|
-
"@aztec/noir-acvm_js": "3.0.0-nightly.
|
|
69
|
-
"@aztec/noir-noirc_abi": "3.0.0-nightly.
|
|
70
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.
|
|
71
|
-
"@aztec/noir-types": "3.0.0-nightly.
|
|
72
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
73
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
74
|
-
"@aztec/telemetry-client": "3.0.0-nightly.
|
|
75
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
66
|
+
"@aztec/constants": "3.0.0-nightly.20251011",
|
|
67
|
+
"@aztec/foundation": "3.0.0-nightly.20251011",
|
|
68
|
+
"@aztec/noir-acvm_js": "3.0.0-nightly.20251011",
|
|
69
|
+
"@aztec/noir-noirc_abi": "3.0.0-nightly.20251011",
|
|
70
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251011",
|
|
71
|
+
"@aztec/noir-types": "3.0.0-nightly.20251011",
|
|
72
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251011",
|
|
73
|
+
"@aztec/stdlib": "3.0.0-nightly.20251011",
|
|
74
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251011",
|
|
75
|
+
"@aztec/world-state": "3.0.0-nightly.20251011",
|
|
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.
|
|
82
|
-
"@aztec/merkle-tree": "3.0.0-nightly.
|
|
83
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
84
|
-
"@aztec/noir-test-contracts.js": "3.0.0-nightly.
|
|
81
|
+
"@aztec/kv-store": "3.0.0-nightly.20251011",
|
|
82
|
+
"@aztec/merkle-tree": "3.0.0-nightly.20251011",
|
|
83
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251011",
|
|
84
|
+
"@aztec/noir-test-contracts.js": "3.0.0-nightly.20251011",
|
|
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,
|
|
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();
|