@aztec/stdlib 4.3.0-nightly.20260512-2 → 4.3.0-nightly.20260513

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.
@@ -4,7 +4,7 @@ import { times } from '@aztec/foundation/collection';
4
4
  import { Fr } from '@aztec/foundation/curves/bn254';
5
5
  import { GENESIS_CHECKPOINT_HEADER_HASH, L2Block } from '@aztec/stdlib/block';
6
6
  import { Checkpoint, L1PublishedData, PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
7
- import { jestExpect as expect } from '@jest/expect';
7
+ import { expect } from 'vitest';
8
8
  export function testL2TipsStore(makeTipsStore) {
9
9
  let tipsStore;
10
10
  // Track blocks and their hashes for test assertions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/stdlib",
3
- "version": "4.3.0-nightly.20260512-2",
3
+ "version": "4.3.0-nightly.20260513",
4
4
  "type": "module",
5
5
  "inherits": [
6
6
  "../package.common.json",
@@ -90,14 +90,14 @@
90
90
  },
91
91
  "dependencies": {
92
92
  "@aws-sdk/client-s3": "^3.892.0",
93
- "@aztec/bb.js": "4.3.0-nightly.20260512-2",
94
- "@aztec/blob-lib": "4.3.0-nightly.20260512-2",
95
- "@aztec/constants": "4.3.0-nightly.20260512-2",
96
- "@aztec/ethereum": "4.3.0-nightly.20260512-2",
97
- "@aztec/foundation": "4.3.0-nightly.20260512-2",
98
- "@aztec/l1-artifacts": "4.3.0-nightly.20260512-2",
99
- "@aztec/noir-noirc_abi": "4.3.0-nightly.20260512-2",
100
- "@aztec/validator-ha-signer": "4.3.0-nightly.20260512-2",
93
+ "@aztec/bb.js": "4.3.0-nightly.20260513",
94
+ "@aztec/blob-lib": "4.3.0-nightly.20260513",
95
+ "@aztec/constants": "4.3.0-nightly.20260513",
96
+ "@aztec/ethereum": "4.3.0-nightly.20260513",
97
+ "@aztec/foundation": "4.3.0-nightly.20260513",
98
+ "@aztec/l1-artifacts": "4.3.0-nightly.20260513",
99
+ "@aztec/noir-noirc_abi": "4.3.0-nightly.20260513",
100
+ "@aztec/validator-ha-signer": "4.3.0-nightly.20260513",
101
101
  "@google-cloud/storage": "^7.15.0",
102
102
  "axios": "^1.13.5",
103
103
  "json-stringify-deterministic": "1.0.12",
@@ -128,7 +128,8 @@
128
128
  "jest-mock-extended": "^4.0.0",
129
129
  "prettier": "^3.5.3",
130
130
  "ts-node": "^10.9.1",
131
- "typescript": "^5.3.3"
131
+ "typescript": "^5.3.3",
132
+ "vitest": "^4.0.0"
132
133
  },
133
134
  "files": [
134
135
  "dest",
@@ -11,7 +11,7 @@ import {
11
11
  } from '@aztec/stdlib/block';
12
12
  import { Checkpoint, L1PublishedData, PublishedCheckpoint } from '@aztec/stdlib/checkpoint';
13
13
 
14
- import { jestExpect as expect } from '@jest/expect';
14
+ import { expect } from 'vitest';
15
15
 
16
16
  import type { L2TipsStore } from '../l2_block_stream/index.js';
17
17