@aztec/stdlib 5.2.0-nightly.20260813 → 5.2.0-nightly.20260814
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.
|
@@ -36,7 +36,7 @@ type CheckpointSimulationOverridesPlanInput = {
|
|
|
36
36
|
/**
|
|
37
37
|
* Builds the SimulationOverridesPlan describing the simulated L1 rollup state for a checkpoint's
|
|
38
38
|
* enqueue-time simulations: `canProposeAt` (in Sequencer.doWork) and the propose-related sims
|
|
39
|
-
* (
|
|
39
|
+
* (validateCheckpointHeader, simulateProposeTx). The plan reflects "as if our pipelined parent
|
|
40
40
|
* checkpoint has landed and any required invalidation has executed" — the gap that needs to be
|
|
41
41
|
* bridged at enqueue time.
|
|
42
42
|
*
|
|
@@ -4,7 +4,7 @@ import { computeCheckpointPayloadDigest } from './digest.js';
|
|
|
4
4
|
/**
|
|
5
5
|
* Builds the SimulationOverridesPlan describing the simulated L1 rollup state for a checkpoint's
|
|
6
6
|
* enqueue-time simulations: `canProposeAt` (in Sequencer.doWork) and the propose-related sims
|
|
7
|
-
* (
|
|
7
|
+
* (validateCheckpointHeader, simulateProposeTx). The plan reflects "as if our pipelined parent
|
|
8
8
|
* checkpoint has landed and any required invalidation has executed" — the gap that needs to be
|
|
9
9
|
* bridged at enqueue time.
|
|
10
10
|
*
|
|
@@ -35,7 +35,7 @@ import { computeCheckpointPayloadDigest } from './digest.js';
|
|
|
35
35
|
// `getEffectivePendingCheckpointNumber` silently collapses pending back to proven — producing
|
|
36
36
|
// a spurious `Rollup__InvalidArchive` against the on-chain genesis archive. The other fields
|
|
37
37
|
// (headerHash, outHash, payloadDigest) are not strictly load-bearing for `canProposeAt` /
|
|
38
|
-
// `
|
|
38
|
+
// `validateCheckpointHeader`, but mirroring the full cell keeps the simulation byte-faithful with
|
|
39
39
|
// what the actual `propose()` send will observe, which is a defense against future reads
|
|
40
40
|
// taking dependencies on them.
|
|
41
41
|
builder.withPendingTempCheckpointLogFields({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/stdlib",
|
|
3
|
-
"version": "5.2.0-nightly.
|
|
3
|
+
"version": "5.2.0-nightly.20260814",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json",
|
|
@@ -92,13 +92,13 @@
|
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
94
|
"@aws-sdk/client-s3": "^3.892.0",
|
|
95
|
-
"@aztec/bb.js": "5.2.0-nightly.
|
|
96
|
-
"@aztec/blob-lib": "5.2.0-nightly.
|
|
97
|
-
"@aztec/constants": "5.2.0-nightly.
|
|
98
|
-
"@aztec/ethereum": "5.2.0-nightly.
|
|
99
|
-
"@aztec/foundation": "5.2.0-nightly.
|
|
100
|
-
"@aztec/l1-artifacts": "5.2.0-nightly.
|
|
101
|
-
"@aztec/noir-noirc_abi": "5.2.0-nightly.
|
|
95
|
+
"@aztec/bb.js": "5.2.0-nightly.20260814",
|
|
96
|
+
"@aztec/blob-lib": "5.2.0-nightly.20260814",
|
|
97
|
+
"@aztec/constants": "5.2.0-nightly.20260814",
|
|
98
|
+
"@aztec/ethereum": "5.2.0-nightly.20260814",
|
|
99
|
+
"@aztec/foundation": "5.2.0-nightly.20260814",
|
|
100
|
+
"@aztec/l1-artifacts": "5.2.0-nightly.20260814",
|
|
101
|
+
"@aztec/noir-noirc_abi": "5.2.0-nightly.20260814",
|
|
102
102
|
"@google-cloud/storage": "^7.15.0",
|
|
103
103
|
"axios": "^1.15.1",
|
|
104
104
|
"json-stringify-deterministic": "1.0.12",
|
|
@@ -45,7 +45,7 @@ type CheckpointSimulationOverridesPlanInput = {
|
|
|
45
45
|
/**
|
|
46
46
|
* Builds the SimulationOverridesPlan describing the simulated L1 rollup state for a checkpoint's
|
|
47
47
|
* enqueue-time simulations: `canProposeAt` (in Sequencer.doWork) and the propose-related sims
|
|
48
|
-
* (
|
|
48
|
+
* (validateCheckpointHeader, simulateProposeTx). The plan reflects "as if our pipelined parent
|
|
49
49
|
* checkpoint has landed and any required invalidation has executed" — the gap that needs to be
|
|
50
50
|
* bridged at enqueue time.
|
|
51
51
|
*
|
|
@@ -81,7 +81,7 @@ export async function buildCheckpointSimulationOverridesPlan(
|
|
|
81
81
|
// `getEffectivePendingCheckpointNumber` silently collapses pending back to proven — producing
|
|
82
82
|
// a spurious `Rollup__InvalidArchive` against the on-chain genesis archive. The other fields
|
|
83
83
|
// (headerHash, outHash, payloadDigest) are not strictly load-bearing for `canProposeAt` /
|
|
84
|
-
// `
|
|
84
|
+
// `validateCheckpointHeader`, but mirroring the full cell keeps the simulation byte-faithful with
|
|
85
85
|
// what the actual `propose()` send will observe, which is a defense against future reads
|
|
86
86
|
// taking dependencies on them.
|
|
87
87
|
builder.withPendingTempCheckpointLogFields({
|