@aztec/stdlib 1.0.0-staging.4 → 1.0.0-staging.5
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.
|
@@ -7,7 +7,7 @@ export declare const TX_ERROR_EXISTING_NULLIFIER = "Existing nullifier";
|
|
|
7
7
|
export declare const TX_ERROR_INVALID_INCLUDE_BY_TIMESTAMP = "Invalid expiration timestamp";
|
|
8
8
|
export declare const TX_ERROR_INCORRECT_L1_CHAIN_ID = "Incorrect L1 chain id";
|
|
9
9
|
export declare const TX_ERROR_INCORRECT_ROLLUP_VERSION = "Incorrect rollup version";
|
|
10
|
-
export declare const TX_ERROR_INCORRECT_VK_TREE_ROOT = "Incorrect
|
|
10
|
+
export declare const TX_ERROR_INCORRECT_VK_TREE_ROOT = "Incorrect verification keys tree root";
|
|
11
11
|
export declare const TX_ERROR_INCORRECT_PROTOCOL_CONTRACT_TREE_ROOT = "Incorrect protocol contracts tree root";
|
|
12
12
|
export declare const TX_ERROR_INVALID_PROOF = "Invalid proof";
|
|
13
13
|
export declare const TX_ERROR_INCORRECT_CALLDATA = "Incorrect calldata for public call";
|
|
@@ -11,7 +11,7 @@ export const TX_ERROR_EXISTING_NULLIFIER = 'Existing nullifier';
|
|
|
11
11
|
export const TX_ERROR_INVALID_INCLUDE_BY_TIMESTAMP = 'Invalid expiration timestamp';
|
|
12
12
|
export const TX_ERROR_INCORRECT_L1_CHAIN_ID = 'Incorrect L1 chain id';
|
|
13
13
|
export const TX_ERROR_INCORRECT_ROLLUP_VERSION = 'Incorrect rollup version';
|
|
14
|
-
export const TX_ERROR_INCORRECT_VK_TREE_ROOT = 'Incorrect
|
|
14
|
+
export const TX_ERROR_INCORRECT_VK_TREE_ROOT = 'Incorrect verification keys tree root';
|
|
15
15
|
export const TX_ERROR_INCORRECT_PROTOCOL_CONTRACT_TREE_ROOT = 'Incorrect protocol contracts tree root';
|
|
16
16
|
// Proof
|
|
17
17
|
export const TX_ERROR_INVALID_PROOF = 'Invalid proof';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/stdlib",
|
|
3
|
-
"version": "1.0.0-staging.
|
|
3
|
+
"version": "1.0.0-staging.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"inherits": [
|
|
6
6
|
"../package.common.json",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@aztec/bb.js": "1.0.0-staging.
|
|
71
|
-
"@aztec/blob-lib": "1.0.0-staging.
|
|
72
|
-
"@aztec/constants": "1.0.0-staging.
|
|
73
|
-
"@aztec/ethereum": "1.0.0-staging.
|
|
74
|
-
"@aztec/foundation": "1.0.0-staging.
|
|
75
|
-
"@aztec/noir-noirc_abi": "1.0.0-staging.
|
|
70
|
+
"@aztec/bb.js": "1.0.0-staging.5",
|
|
71
|
+
"@aztec/blob-lib": "1.0.0-staging.5",
|
|
72
|
+
"@aztec/constants": "1.0.0-staging.5",
|
|
73
|
+
"@aztec/ethereum": "1.0.0-staging.5",
|
|
74
|
+
"@aztec/foundation": "1.0.0-staging.5",
|
|
75
|
+
"@aztec/noir-noirc_abi": "1.0.0-staging.5",
|
|
76
76
|
"@google-cloud/storage": "^7.15.0",
|
|
77
77
|
"axios": "^1.9.0",
|
|
78
78
|
"json-stringify-deterministic": "1.0.12",
|
|
@@ -14,7 +14,7 @@ export const TX_ERROR_EXISTING_NULLIFIER = 'Existing nullifier';
|
|
|
14
14
|
export const TX_ERROR_INVALID_INCLUDE_BY_TIMESTAMP = 'Invalid expiration timestamp';
|
|
15
15
|
export const TX_ERROR_INCORRECT_L1_CHAIN_ID = 'Incorrect L1 chain id';
|
|
16
16
|
export const TX_ERROR_INCORRECT_ROLLUP_VERSION = 'Incorrect rollup version';
|
|
17
|
-
export const TX_ERROR_INCORRECT_VK_TREE_ROOT = 'Incorrect
|
|
17
|
+
export const TX_ERROR_INCORRECT_VK_TREE_ROOT = 'Incorrect verification keys tree root';
|
|
18
18
|
export const TX_ERROR_INCORRECT_PROTOCOL_CONTRACT_TREE_ROOT = 'Incorrect protocol contracts tree root';
|
|
19
19
|
|
|
20
20
|
// Proof
|