@aztec/simulator 4.0.0-nightly.20260216 → 4.0.0-nightly.20260217

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.
@@ -76,8 +76,8 @@ import { strict as assert } from 'assert';
76
76
  globalVariables: globals
77
77
  });
78
78
  const constantData = new TxConstantData(header, txContext, Fr.zero(), Fr.zero());
79
- const includeByTimestamp = 0n; // Not used in the simulator.
80
- const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ gasUsedByPrivate, feePayer, includeByTimestamp, forPublic);
79
+ const expirationTimestamp = 0n; // Not used in the simulator.
80
+ const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ gasUsedByPrivate, feePayer, expirationTimestamp, forPublic);
81
81
  const calldata = [
82
82
  ...setupCallRequests,
83
83
  ...appCallRequests,
@@ -100,8 +100,8 @@ export async function createTxForPrivateOnly(feePayer = AztecAddress.zero(), gas
100
100
  const gasSettings = new GasSettings(gasLimits, Gas.empty(), maxFeesPerGas, GasFees.empty());
101
101
  const txContext = new TxContext(Fr.zero(), Fr.zero(), gasSettings);
102
102
  const constantData = new TxConstantData(BlockHeader.empty(), txContext, Fr.zero(), Fr.zero());
103
- const includeByTimestamp = 0n; // Not used in the simulator.
104
- const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ gasUsedByPrivate, feePayer, includeByTimestamp, /*forPublic=*/ undefined, forRollup);
103
+ const expirationTimestamp = 0n; // Not used in the simulator.
104
+ const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ gasUsedByPrivate, feePayer, expirationTimestamp, /*forPublic=*/ undefined, forRollup);
105
105
  return await Tx.create({
106
106
  data: txData,
107
107
  chonkProof: ChonkProof.empty(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/simulator",
3
- "version": "4.0.0-nightly.20260216",
3
+ "version": "4.0.0-nightly.20260217",
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": "4.0.0-nightly.20260216",
68
- "@aztec/foundation": "4.0.0-nightly.20260216",
69
- "@aztec/native": "4.0.0-nightly.20260216",
70
- "@aztec/noir-acvm_js": "4.0.0-nightly.20260216",
71
- "@aztec/noir-noirc_abi": "4.0.0-nightly.20260216",
72
- "@aztec/noir-protocol-circuits-types": "4.0.0-nightly.20260216",
73
- "@aztec/noir-types": "4.0.0-nightly.20260216",
74
- "@aztec/protocol-contracts": "4.0.0-nightly.20260216",
75
- "@aztec/stdlib": "4.0.0-nightly.20260216",
76
- "@aztec/telemetry-client": "4.0.0-nightly.20260216",
77
- "@aztec/world-state": "4.0.0-nightly.20260216",
67
+ "@aztec/constants": "4.0.0-nightly.20260217",
68
+ "@aztec/foundation": "4.0.0-nightly.20260217",
69
+ "@aztec/native": "4.0.0-nightly.20260217",
70
+ "@aztec/noir-acvm_js": "4.0.0-nightly.20260217",
71
+ "@aztec/noir-noirc_abi": "4.0.0-nightly.20260217",
72
+ "@aztec/noir-protocol-circuits-types": "4.0.0-nightly.20260217",
73
+ "@aztec/noir-types": "4.0.0-nightly.20260217",
74
+ "@aztec/protocol-contracts": "4.0.0-nightly.20260217",
75
+ "@aztec/stdlib": "4.0.0-nightly.20260217",
76
+ "@aztec/telemetry-client": "4.0.0-nightly.20260217",
77
+ "@aztec/world-state": "4.0.0-nightly.20260217",
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": "4.0.0-nightly.20260216",
84
- "@aztec/merkle-tree": "4.0.0-nightly.20260216",
85
- "@aztec/noir-contracts.js": "4.0.0-nightly.20260216",
86
- "@aztec/noir-test-contracts.js": "4.0.0-nightly.20260216",
83
+ "@aztec/kv-store": "4.0.0-nightly.20260217",
84
+ "@aztec/merkle-tree": "4.0.0-nightly.20260217",
85
+ "@aztec/noir-contracts.js": "4.0.0-nightly.20260217",
86
+ "@aztec/noir-test-contracts.js": "4.0.0-nightly.20260217",
87
87
  "@jest/globals": "^30.0.0",
88
88
  "@types/jest": "^30.0.0",
89
89
  "@types/lodash.clonedeep": "^4.5.7",
@@ -134,13 +134,13 @@ export async function createTxForPublicCalls(
134
134
  const txContext = new TxContext(Fr.zero(), Fr.zero(), gasSettings);
135
135
  const header = BlockHeader.empty({ globalVariables: globals });
136
136
  const constantData = new TxConstantData(header, txContext, Fr.zero(), Fr.zero());
137
- const includeByTimestamp = 0n; // Not used in the simulator.
137
+ const expirationTimestamp = 0n; // Not used in the simulator.
138
138
 
139
139
  const txData = new PrivateKernelTailCircuitPublicInputs(
140
140
  constantData,
141
141
  /*gasUsed=*/ gasUsedByPrivate,
142
142
  feePayer,
143
- includeByTimestamp,
143
+ expirationTimestamp,
144
144
  forPublic,
145
145
  );
146
146
 
@@ -171,13 +171,13 @@ export async function createTxForPrivateOnly(
171
171
  const gasSettings = new GasSettings(gasLimits, Gas.empty(), maxFeesPerGas, GasFees.empty());
172
172
  const txContext = new TxContext(Fr.zero(), Fr.zero(), gasSettings);
173
173
  const constantData = new TxConstantData(BlockHeader.empty(), txContext, Fr.zero(), Fr.zero());
174
- const includeByTimestamp = 0n; // Not used in the simulator.
174
+ const expirationTimestamp = 0n; // Not used in the simulator.
175
175
 
176
176
  const txData = new PrivateKernelTailCircuitPublicInputs(
177
177
  constantData,
178
178
  /*gasUsed=*/ gasUsedByPrivate,
179
179
  feePayer,
180
- includeByTimestamp,
180
+ expirationTimestamp,
181
181
  /*forPublic=*/ undefined,
182
182
  forRollup,
183
183
  );
@@ -146,7 +146,7 @@ async function createTxFromHint(cppTx: AvmTxHint): Promise<Tx> {
146
146
  constants,
147
147
  cppTx.gasUsedByPrivate,
148
148
  cppTx.feePayer,
149
- 0n, // includeByTimestamp
149
+ 0n, // expirationTimestamp
150
150
  forPublic,
151
151
  undefined, // forRollup - not needed for public simulation
152
152
  );