@aztec/stdlib 3.0.0-nightly.20250912 → 3.0.0-nightly.20250914
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/contract/interfaces/contract_class.d.ts +1 -1
- package/dest/rollup/base_or_merge_rollup_public_inputs.d.ts +2 -2
- package/dest/rollup/base_or_merge_rollup_public_inputs.js +1 -1
- package/dest/rollup/block_root_or_block_merge_public_inputs.d.ts +2 -2
- package/dest/rollup/block_root_or_block_merge_public_inputs.js +1 -1
- package/dest/rollup/root_rollup.d.ts +1 -1
- package/dest/rollup/root_rollup.js +1 -1
- package/package.json +8 -8
- package/src/contract/interfaces/contract_class.ts +1 -1
- package/src/rollup/base_or_merge_rollup_public_inputs.ts +1 -1
- package/src/rollup/block_root_or_block_merge_public_inputs.ts +1 -1
- package/src/rollup/root_rollup.ts +1 -1
|
@@ -14,7 +14,7 @@ export interface ContractClass {
|
|
|
14
14
|
/**
|
|
15
15
|
* Hash of the contract artifact. The specification of this hash is not enforced by the protocol. Should include
|
|
16
16
|
* commitments to code of utility functions and compilation metadata. Intended to be used by clients to verify that
|
|
17
|
-
* an
|
|
17
|
+
* an offchain fetched artifact matches a registered class.
|
|
18
18
|
*/
|
|
19
19
|
artifactHash: Fr;
|
|
20
20
|
/** List of individual private functions, constructors included. */
|
|
@@ -32,7 +32,7 @@ export declare class BaseOrMergeRollupPublicInputs {
|
|
|
32
32
|
*/
|
|
33
33
|
endSpongeBlob: SpongeBlob;
|
|
34
34
|
/**
|
|
35
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
35
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
36
36
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
37
37
|
*/
|
|
38
38
|
outHash: Fr;
|
|
@@ -70,7 +70,7 @@ export declare class BaseOrMergeRollupPublicInputs {
|
|
|
70
70
|
*/
|
|
71
71
|
endSpongeBlob: SpongeBlob,
|
|
72
72
|
/**
|
|
73
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
73
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
74
74
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
75
75
|
*/
|
|
76
76
|
outHash: Fr,
|
|
@@ -30,7 +30,7 @@ import { BlockConstantData } from './block_constant_data.js';
|
|
|
30
30
|
*/ startSpongeBlob, /**
|
|
31
31
|
* Sponge state to absorb blob inputs at the end of the rollup circuit.
|
|
32
32
|
*/ endSpongeBlob, /**
|
|
33
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
33
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
34
34
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
35
35
|
*/ outHash, /**
|
|
36
36
|
* The summed `transaction_fee` of the constituent transactions.
|
|
@@ -32,7 +32,7 @@ export declare class BlockRootOrBlockMergePublicInputs {
|
|
|
32
32
|
*/
|
|
33
33
|
endGlobalVariables: GlobalVariables;
|
|
34
34
|
/**
|
|
35
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
35
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
36
36
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
37
37
|
*/
|
|
38
38
|
outHash: Fr;
|
|
@@ -70,7 +70,7 @@ export declare class BlockRootOrBlockMergePublicInputs {
|
|
|
70
70
|
*/
|
|
71
71
|
endGlobalVariables: GlobalVariables,
|
|
72
72
|
/**
|
|
73
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
73
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
74
74
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
75
75
|
*/
|
|
76
76
|
outHash: Fr,
|
|
@@ -31,7 +31,7 @@ import { EpochConstantData } from './epoch_constant_data.js';
|
|
|
31
31
|
*/ startGlobalVariables, /**
|
|
32
32
|
* Global variables for the last block in the range.
|
|
33
33
|
*/ endGlobalVariables, /**
|
|
34
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
34
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
35
35
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
36
36
|
*/ outHash, /**
|
|
37
37
|
* The hashes of the proposed block headers of the constituent blocks.
|
|
@@ -64,7 +64,7 @@ export declare class RootRollupInputs {
|
|
|
64
64
|
/**
|
|
65
65
|
* Represents public inputs of the root rollup circuit.
|
|
66
66
|
*
|
|
67
|
-
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap
|
|
67
|
+
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap onchain verification.
|
|
68
68
|
*/
|
|
69
69
|
export declare class RootRollupPublicInputs {
|
|
70
70
|
/** Root of the archive tree before this rollup is processed */
|
|
@@ -74,7 +74,7 @@ import { PreviousRollupBlockData } from './previous_rollup_block_data.js';
|
|
|
74
74
|
/**
|
|
75
75
|
* Represents public inputs of the root rollup circuit.
|
|
76
76
|
*
|
|
77
|
-
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap
|
|
77
|
+
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap onchain verification.
|
|
78
78
|
*/ export class RootRollupPublicInputs {
|
|
79
79
|
previousArchiveRoot;
|
|
80
80
|
endArchiveRoot;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/stdlib",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20250914",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json",
|
|
@@ -69,13 +69,13 @@
|
|
|
69
69
|
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@aztec/bb.js": "3.0.0-nightly.
|
|
73
|
-
"@aztec/blob-lib": "3.0.0-nightly.
|
|
74
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
75
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
76
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
77
|
-
"@aztec/l1-artifacts": "3.0.0-nightly.
|
|
78
|
-
"@aztec/noir-noirc_abi": "3.0.0-nightly.
|
|
72
|
+
"@aztec/bb.js": "3.0.0-nightly.20250914",
|
|
73
|
+
"@aztec/blob-lib": "3.0.0-nightly.20250914",
|
|
74
|
+
"@aztec/constants": "3.0.0-nightly.20250914",
|
|
75
|
+
"@aztec/ethereum": "3.0.0-nightly.20250914",
|
|
76
|
+
"@aztec/foundation": "3.0.0-nightly.20250914",
|
|
77
|
+
"@aztec/l1-artifacts": "3.0.0-nightly.20250914",
|
|
78
|
+
"@aztec/noir-noirc_abi": "3.0.0-nightly.20250914",
|
|
79
79
|
"@google-cloud/storage": "^7.15.0",
|
|
80
80
|
"axios": "^1.9.0",
|
|
81
81
|
"json-stringify-deterministic": "1.0.12",
|
|
@@ -18,7 +18,7 @@ export interface ContractClass {
|
|
|
18
18
|
/**
|
|
19
19
|
* Hash of the contract artifact. The specification of this hash is not enforced by the protocol. Should include
|
|
20
20
|
* commitments to code of utility functions and compilation metadata. Intended to be used by clients to verify that
|
|
21
|
-
* an
|
|
21
|
+
* an offchain fetched artifact matches a registered class.
|
|
22
22
|
*/
|
|
23
23
|
artifactHash: Fr;
|
|
24
24
|
/** List of individual private functions, constructors included. */
|
|
@@ -37,7 +37,7 @@ export class BaseOrMergeRollupPublicInputs {
|
|
|
37
37
|
*/
|
|
38
38
|
public endSpongeBlob: SpongeBlob,
|
|
39
39
|
/**
|
|
40
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
40
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
41
41
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
42
42
|
*/
|
|
43
43
|
public outHash: Fr,
|
|
@@ -37,7 +37,7 @@ export class BlockRootOrBlockMergePublicInputs {
|
|
|
37
37
|
*/
|
|
38
38
|
public endGlobalVariables: GlobalVariables,
|
|
39
39
|
/**
|
|
40
|
-
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened
|
|
40
|
+
* SHA256 hash of L2 to L1 messages. Used to make public inputs constant-sized (to then be opened onchain).
|
|
41
41
|
* Note: Truncated to 31 bytes to fit in Fr.
|
|
42
42
|
*/
|
|
43
43
|
public outHash: Fr,
|
|
@@ -93,7 +93,7 @@ export class RootRollupInputs {
|
|
|
93
93
|
/**
|
|
94
94
|
* Represents public inputs of the root rollup circuit.
|
|
95
95
|
*
|
|
96
|
-
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap
|
|
96
|
+
* NOTE: in practice, we'll hash all of this up into a single public input, for cheap onchain verification.
|
|
97
97
|
*/
|
|
98
98
|
export class RootRollupPublicInputs {
|
|
99
99
|
constructor(
|