@aztec/stdlib 4.0.0-nightly.20260205 → 4.0.0-nightly.20260207

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.
@@ -3,7 +3,7 @@ import { z } from 'zod';
3
3
  import { BlockHash } from './block_hash.js';
4
4
  export function randomInBlock() {
5
5
  return {
6
- l2BlockNumber: BlockNumber(Math.floor(Math.random() * 1000)),
6
+ l2BlockNumber: BlockNumber(Math.floor(Math.random() * 1000) + 1),
7
7
  l2BlockHash: BlockHash.random()
8
8
  };
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/stdlib",
3
- "version": "4.0.0-nightly.20260205",
3
+ "version": "4.0.0-nightly.20260207",
4
4
  "type": "module",
5
5
  "inherits": [
6
6
  "../package.common.json",
@@ -89,14 +89,14 @@
89
89
  },
90
90
  "dependencies": {
91
91
  "@aws-sdk/client-s3": "^3.892.0",
92
- "@aztec/bb.js": "4.0.0-nightly.20260205",
93
- "@aztec/blob-lib": "4.0.0-nightly.20260205",
94
- "@aztec/constants": "4.0.0-nightly.20260205",
95
- "@aztec/ethereum": "4.0.0-nightly.20260205",
96
- "@aztec/foundation": "4.0.0-nightly.20260205",
97
- "@aztec/l1-artifacts": "4.0.0-nightly.20260205",
98
- "@aztec/noir-noirc_abi": "4.0.0-nightly.20260205",
99
- "@aztec/validator-ha-signer": "4.0.0-nightly.20260205",
92
+ "@aztec/bb.js": "4.0.0-nightly.20260207",
93
+ "@aztec/blob-lib": "4.0.0-nightly.20260207",
94
+ "@aztec/constants": "4.0.0-nightly.20260207",
95
+ "@aztec/ethereum": "4.0.0-nightly.20260207",
96
+ "@aztec/foundation": "4.0.0-nightly.20260207",
97
+ "@aztec/l1-artifacts": "4.0.0-nightly.20260207",
98
+ "@aztec/noir-noirc_abi": "4.0.0-nightly.20260207",
99
+ "@aztec/validator-ha-signer": "4.0.0-nightly.20260207",
100
100
  "@google-cloud/storage": "^7.15.0",
101
101
  "axios": "^1.12.0",
102
102
  "json-stringify-deterministic": "1.0.12",
@@ -17,7 +17,7 @@ export type DataInBlock<T> = {
17
17
 
18
18
  export function randomInBlock(): InBlock {
19
19
  return {
20
- l2BlockNumber: BlockNumber(Math.floor(Math.random() * 1000)),
20
+ l2BlockNumber: BlockNumber(Math.floor(Math.random() * 1000) + 1),
21
21
  l2BlockHash: BlockHash.random(),
22
22
  };
23
23
  }