@aztec/txe 3.0.0-nightly.20251002 → 3.0.0-nightly.20251003
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.
- package/dest/txe_session.js +2 -2
- package/package.json +15 -15
- package/src/txe_session.ts +2 -2
package/dest/txe_session.js
CHANGED
|
@@ -132,7 +132,7 @@ const DEFAULT_ADDRESS = AztecAddress.fromNumber(42);
|
|
|
132
132
|
// we perform this. We therefore search for known nullifiers now, as otherwise notes that were nullified would not
|
|
133
133
|
// be removed from the database.
|
|
134
134
|
// TODO(#12553): make the synchronizer sync here instead and remove this
|
|
135
|
-
await this.pxeOracleInterface.
|
|
135
|
+
await this.pxeOracleInterface.syncNoteNullifiers(contractAddress);
|
|
136
136
|
// Private execution has two associated block numbers: the anchor block (i.e. the historical block that is used to
|
|
137
137
|
// build the proof), and the *next* block, i.e. the one we'll create once the execution ends, and which will contain
|
|
138
138
|
// a single transaction with the effects of what was done in the test.
|
|
@@ -184,7 +184,7 @@ const DEFAULT_ADDRESS = AztecAddress.fromNumber(42);
|
|
|
184
184
|
// we perform this. We therefore search for known nullifiers now, as otherwise notes that were nullified would not
|
|
185
185
|
// be removed from the database.
|
|
186
186
|
// TODO(#12553): make the synchronizer sync here instead and remove this
|
|
187
|
-
await this.pxeOracleInterface.
|
|
187
|
+
await this.pxeOracleInterface.syncNoteNullifiers(contractAddress);
|
|
188
188
|
this.oracleHandler = new UtilityExecutionOracle(contractAddress, [], [], this.pxeOracleInterface);
|
|
189
189
|
this.state = {
|
|
190
190
|
name: 'UTILITY'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/txe",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251003",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dest/index.js",
|
|
6
6
|
"bin": "./dest/bin/index.js",
|
|
@@ -61,20 +61,20 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@aztec/accounts": "3.0.0-nightly.
|
|
65
|
-
"@aztec/archiver": "3.0.0-nightly.
|
|
66
|
-
"@aztec/aztec-node": "3.0.0-nightly.
|
|
67
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
68
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
69
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
70
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
71
|
-
"@aztec/key-store": "3.0.0-nightly.
|
|
72
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
73
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
74
|
-
"@aztec/pxe": "3.0.0-nightly.
|
|
75
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
76
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
77
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
64
|
+
"@aztec/accounts": "3.0.0-nightly.20251003",
|
|
65
|
+
"@aztec/archiver": "3.0.0-nightly.20251003",
|
|
66
|
+
"@aztec/aztec-node": "3.0.0-nightly.20251003",
|
|
67
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251003",
|
|
68
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251003",
|
|
69
|
+
"@aztec/constants": "3.0.0-nightly.20251003",
|
|
70
|
+
"@aztec/foundation": "3.0.0-nightly.20251003",
|
|
71
|
+
"@aztec/key-store": "3.0.0-nightly.20251003",
|
|
72
|
+
"@aztec/kv-store": "3.0.0-nightly.20251003",
|
|
73
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251003",
|
|
74
|
+
"@aztec/pxe": "3.0.0-nightly.20251003",
|
|
75
|
+
"@aztec/simulator": "3.0.0-nightly.20251003",
|
|
76
|
+
"@aztec/stdlib": "3.0.0-nightly.20251003",
|
|
77
|
+
"@aztec/world-state": "3.0.0-nightly.20251003",
|
|
78
78
|
"zod": "^3.23.8"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
package/src/txe_session.ts
CHANGED
|
@@ -263,7 +263,7 @@ export class TXESession implements TXESessionStateHandler {
|
|
|
263
263
|
// we perform this. We therefore search for known nullifiers now, as otherwise notes that were nullified would not
|
|
264
264
|
// be removed from the database.
|
|
265
265
|
// TODO(#12553): make the synchronizer sync here instead and remove this
|
|
266
|
-
await this.pxeOracleInterface.
|
|
266
|
+
await this.pxeOracleInterface.syncNoteNullifiers(contractAddress);
|
|
267
267
|
|
|
268
268
|
// Private execution has two associated block numbers: the anchor block (i.e. the historical block that is used to
|
|
269
269
|
// build the proof), and the *next* block, i.e. the one we'll create once the execution ends, and which will contain
|
|
@@ -335,7 +335,7 @@ export class TXESession implements TXESessionStateHandler {
|
|
|
335
335
|
// we perform this. We therefore search for known nullifiers now, as otherwise notes that were nullified would not
|
|
336
336
|
// be removed from the database.
|
|
337
337
|
// TODO(#12553): make the synchronizer sync here instead and remove this
|
|
338
|
-
await this.pxeOracleInterface.
|
|
338
|
+
await this.pxeOracleInterface.syncNoteNullifiers(contractAddress);
|
|
339
339
|
|
|
340
340
|
this.oracleHandler = new UtilityExecutionOracle(contractAddress, [], [], this.pxeOracleInterface);
|
|
341
341
|
|