@aztec/simulator 5.2.0 → 5.3.0-nightly.20260819

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.
@@ -137,7 +137,7 @@ export class PublicTxSimulator {
137
137
  }
138
138
  }
139
139
  context.halt();
140
- // Such transactions should be filtered by GasTxValidator.
140
+ // Gas estimation deliberately declares limits above this ceiling; block building rejects them before execution.
141
141
  assert(context.getActualGasUsed().l2Gas <= MAX_PROCESSABLE_L2_GAS, `Transaction consumes ${context.getActualGasUsed().l2Gas} L2 gas, which exceeds the maximum processable gas of ${MAX_PROCESSABLE_L2_GAS}`);
142
142
  await this.payFee(context);
143
143
  const publicInputs = await context.generateAvmCircuitPublicInputs();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/simulator",
3
- "version": "5.2.0",
3
+ "version": "5.3.0-nightly.20260819",
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": "5.2.0",
68
- "@aztec/foundation": "5.2.0",
69
- "@aztec/native": "5.2.0",
70
- "@aztec/noir-acvm_js": "5.2.0",
71
- "@aztec/noir-noirc_abi": "5.2.0",
72
- "@aztec/noir-protocol-circuits-types": "5.2.0",
73
- "@aztec/noir-types": "5.2.0",
74
- "@aztec/protocol-contracts": "5.2.0",
75
- "@aztec/standard-contracts": "5.2.0",
76
- "@aztec/stdlib": "5.2.0",
77
- "@aztec/telemetry-client": "5.2.0",
78
- "@aztec/world-state": "5.2.0",
67
+ "@aztec/constants": "5.3.0-nightly.20260819",
68
+ "@aztec/foundation": "5.3.0-nightly.20260819",
69
+ "@aztec/native": "5.3.0-nightly.20260819",
70
+ "@aztec/noir-acvm_js": "5.3.0-nightly.20260819",
71
+ "@aztec/noir-noirc_abi": "5.3.0-nightly.20260819",
72
+ "@aztec/noir-protocol-circuits-types": "5.3.0-nightly.20260819",
73
+ "@aztec/noir-types": "5.3.0-nightly.20260819",
74
+ "@aztec/protocol-contracts": "5.3.0-nightly.20260819",
75
+ "@aztec/standard-contracts": "5.3.0-nightly.20260819",
76
+ "@aztec/stdlib": "5.3.0-nightly.20260819",
77
+ "@aztec/telemetry-client": "5.3.0-nightly.20260819",
78
+ "@aztec/world-state": "5.3.0-nightly.20260819",
79
79
  "lodash.clonedeep": "^4.5.0",
80
80
  "lodash.merge": "^4.6.2",
81
81
  "tslib": "^2.4.0"
82
82
  },
83
83
  "devDependencies": {
84
- "@aztec/kv-store": "5.2.0",
85
- "@aztec/noir-contracts.js": "5.2.0",
86
- "@aztec/noir-test-contracts.js": "5.2.0",
84
+ "@aztec/kv-store": "5.3.0-nightly.20260819",
85
+ "@aztec/noir-contracts.js": "5.3.0-nightly.20260819",
86
+ "@aztec/noir-test-contracts.js": "5.3.0-nightly.20260819",
87
87
  "@jest/globals": "^30.0.0",
88
88
  "@types/jest": "^30.0.0",
89
89
  "@types/lodash.clonedeep": "^4.5.7",
@@ -197,7 +197,7 @@ export class PublicTxSimulator implements PublicTxSimulatorInterface {
197
197
 
198
198
  context.halt();
199
199
 
200
- // Such transactions should be filtered by GasTxValidator.
200
+ // Gas estimation deliberately declares limits above this ceiling; block building rejects them before execution.
201
201
  assert(
202
202
  context.getActualGasUsed().l2Gas <= MAX_PROCESSABLE_L2_GAS,
203
203
  `Transaction consumes ${context.getActualGasUsed().l2Gas} L2 gas, which exceeds the maximum processable gas of ${MAX_PROCESSABLE_L2_GAS}`,