@aztec/simulator 3.0.0-nightly.20251218 → 3.0.0-nightly.20251219

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.
@@ -60,6 +60,7 @@ async function execute(base64Line) {
60
60
  });
61
61
  writeSync(process.stdout.fd, resultBuffer.toString('base64') + '\n');
62
62
  } catch (error) {
63
+ // If we error, treat as reverted
63
64
  const errorResult = serializeWithMessagePack({
64
65
  reverted: true,
65
66
  output: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/simulator",
3
- "version": "3.0.0-nightly.20251218",
3
+ "version": "3.0.0-nightly.20251219",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./server": "./dest/server.js",
@@ -64,26 +64,26 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/constants": "3.0.0-nightly.20251218",
68
- "@aztec/foundation": "3.0.0-nightly.20251218",
69
- "@aztec/native": "3.0.0-nightly.20251218",
70
- "@aztec/noir-acvm_js": "3.0.0-nightly.20251218",
71
- "@aztec/noir-noirc_abi": "3.0.0-nightly.20251218",
72
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251218",
73
- "@aztec/noir-types": "3.0.0-nightly.20251218",
74
- "@aztec/protocol-contracts": "3.0.0-nightly.20251218",
75
- "@aztec/stdlib": "3.0.0-nightly.20251218",
76
- "@aztec/telemetry-client": "3.0.0-nightly.20251218",
77
- "@aztec/world-state": "3.0.0-nightly.20251218",
67
+ "@aztec/constants": "3.0.0-nightly.20251219",
68
+ "@aztec/foundation": "3.0.0-nightly.20251219",
69
+ "@aztec/native": "3.0.0-nightly.20251219",
70
+ "@aztec/noir-acvm_js": "3.0.0-nightly.20251219",
71
+ "@aztec/noir-noirc_abi": "3.0.0-nightly.20251219",
72
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251219",
73
+ "@aztec/noir-types": "3.0.0-nightly.20251219",
74
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251219",
75
+ "@aztec/stdlib": "3.0.0-nightly.20251219",
76
+ "@aztec/telemetry-client": "3.0.0-nightly.20251219",
77
+ "@aztec/world-state": "3.0.0-nightly.20251219",
78
78
  "lodash.clonedeep": "^4.5.0",
79
79
  "lodash.merge": "^4.6.2",
80
80
  "tslib": "^2.4.0"
81
81
  },
82
82
  "devDependencies": {
83
- "@aztec/kv-store": "3.0.0-nightly.20251218",
84
- "@aztec/merkle-tree": "3.0.0-nightly.20251218",
85
- "@aztec/noir-contracts.js": "3.0.0-nightly.20251218",
86
- "@aztec/noir-test-contracts.js": "3.0.0-nightly.20251218",
83
+ "@aztec/kv-store": "3.0.0-nightly.20251219",
84
+ "@aztec/merkle-tree": "3.0.0-nightly.20251219",
85
+ "@aztec/noir-contracts.js": "3.0.0-nightly.20251219",
86
+ "@aztec/noir-test-contracts.js": "3.0.0-nightly.20251219",
87
87
  "@jest/globals": "^30.0.0",
88
88
  "@types/jest": "^30.0.0",
89
89
  "@types/lodash.clonedeep": "^4.5.7",
@@ -98,6 +98,7 @@ async function execute(base64Line: string): Promise<void> {
98
98
  });
99
99
  writeSync(process.stdout.fd, resultBuffer.toString('base64') + '\n');
100
100
  } catch (error: any) {
101
+ // If we error, treat as reverted
101
102
  const errorResult = serializeWithMessagePack({
102
103
  reverted: true,
103
104
  output: [] as string[],