@aztec/constants 4.0.0-nightly.20260118 → 4.0.0-nightly.20260120
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.
- package/dest/constants.js +3 -3
- package/package.json +2 -2
- package/src/constants.ts +3 -3
package/dest/constants.js
CHANGED
|
@@ -6,13 +6,13 @@ import { GENESIS_BLOCK_HEADER_HASH as GENESIS_BLOCK_HEADER_HASH_BIGINT, INITIAL_
|
|
|
6
6
|
// Typescript-land-only constants
|
|
7
7
|
export const SPONSORED_FPC_SALT = BigInt(0);
|
|
8
8
|
// Autogenerated constants loaded from noir-land
|
|
9
|
-
// eslint-disable-next-line import/export
|
|
9
|
+
// eslint-disable-next-line import-x/export
|
|
10
10
|
export * from './constants.gen.js';
|
|
11
11
|
/** The initial L2 block number (typed as BlockNumber). This is the first block number in the Aztec L2 chain. */ // Shadow the export from constants.gen above
|
|
12
|
-
// eslint-disable-next-line import/export
|
|
12
|
+
// eslint-disable-next-line import-x/export
|
|
13
13
|
export const INITIAL_L2_BLOCK_NUM = BlockNumber(INITIAL_L2_BLOCK_NUM_RAW);
|
|
14
14
|
/** The initial L2 checkpoint number (typed as CheckpointNumber). This is the first checkpoint number in the Aztec L2 chain. */ // Shadow the export from constants.gen above
|
|
15
15
|
export const INITIAL_L2_CHECKPOINT_NUM = CheckpointNumber(INITIAL_CHECKPOINT_NUM_RAW);
|
|
16
16
|
/** The block header hash for the genesis block 0. */ // Shadow the export from constants.gen above
|
|
17
|
-
// eslint-disable-next-line import/export
|
|
17
|
+
// eslint-disable-next-line import-x/export
|
|
18
18
|
export const GENESIS_BLOCK_HEADER_HASH = new Fr(GENESIS_BLOCK_HEADER_HASH_BIGINT);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/constants",
|
|
3
|
-
"version": "4.0.0-nightly.
|
|
3
|
+
"version": "4.0.0-nightly.20260120",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@aztec/foundation": "4.0.0-nightly.
|
|
19
|
+
"@aztec/foundation": "4.0.0-nightly.20260120",
|
|
20
20
|
"tslib": "^2.4.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
package/src/constants.ts
CHANGED
|
@@ -13,12 +13,12 @@ import {
|
|
|
13
13
|
export const SPONSORED_FPC_SALT = BigInt(0);
|
|
14
14
|
|
|
15
15
|
// Autogenerated constants loaded from noir-land
|
|
16
|
-
// eslint-disable-next-line import/export
|
|
16
|
+
// eslint-disable-next-line import-x/export
|
|
17
17
|
export * from './constants.gen.js';
|
|
18
18
|
|
|
19
19
|
/** The initial L2 block number (typed as BlockNumber). This is the first block number in the Aztec L2 chain. */
|
|
20
20
|
// Shadow the export from constants.gen above
|
|
21
|
-
// eslint-disable-next-line import/export
|
|
21
|
+
// eslint-disable-next-line import-x/export
|
|
22
22
|
export const INITIAL_L2_BLOCK_NUM: BlockNumber = BlockNumber(INITIAL_L2_BLOCK_NUM_RAW);
|
|
23
23
|
|
|
24
24
|
/** The initial L2 checkpoint number (typed as CheckpointNumber). This is the first checkpoint number in the Aztec L2 chain. */
|
|
@@ -28,5 +28,5 @@ export const INITIAL_L2_CHECKPOINT_NUM: CheckpointNumber = CheckpointNumber(INIT
|
|
|
28
28
|
|
|
29
29
|
/** The block header hash for the genesis block 0. */
|
|
30
30
|
// Shadow the export from constants.gen above
|
|
31
|
-
// eslint-disable-next-line import/export
|
|
31
|
+
// eslint-disable-next-line import-x/export
|
|
32
32
|
export const GENESIS_BLOCK_HEADER_HASH = new Fr(GENESIS_BLOCK_HEADER_HASH_BIGINT);
|