@aztec/pxe 4.3.0-nightly.20260514 → 4.3.0-rc.1
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.
|
@@ -13,7 +13,7 @@ import { ORACLE_INTERFACE_HASH } from '../oracle_version.js';
|
|
|
13
13
|
* - If the change is backward-breaking (e.g. removing/renaming an oracle), bump ORACLE_VERSION_MAJOR.
|
|
14
14
|
* - If the change is an oracle addition (non-breaking), bump ORACLE_VERSION_MINOR.
|
|
15
15
|
*
|
|
16
|
-
* TODO(
|
|
16
|
+
* TODO(F-667): The following only takes into consideration changes to the oracles defined in Oracle.ts and omits TXE
|
|
17
17
|
* oracles. Ensure this checks TXE oracles as well. This hasn't been implemented yet since we don't have a clean TXE
|
|
18
18
|
* oracle interface like we do in PXE (i.e., there is no single Oracle class that contains only the oracles).
|
|
19
19
|
*/ function assertOracleInterfaceMatches() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/pxe",
|
|
3
|
-
"version": "4.3.0-
|
|
3
|
+
"version": "4.3.0-rc.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"typedocOptions": {
|
|
6
6
|
"entryPoints": [
|
|
@@ -70,19 +70,19 @@
|
|
|
70
70
|
]
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@aztec/bb-prover": "4.3.0-
|
|
74
|
-
"@aztec/bb.js": "4.3.0-
|
|
75
|
-
"@aztec/builder": "4.3.0-
|
|
76
|
-
"@aztec/constants": "4.3.0-
|
|
77
|
-
"@aztec/ethereum": "4.3.0-
|
|
78
|
-
"@aztec/foundation": "4.3.0-
|
|
79
|
-
"@aztec/key-store": "4.3.0-
|
|
80
|
-
"@aztec/kv-store": "4.3.0-
|
|
81
|
-
"@aztec/noir-protocol-circuits-types": "4.3.0-
|
|
82
|
-
"@aztec/noir-types": "4.3.0-
|
|
83
|
-
"@aztec/protocol-contracts": "4.3.0-
|
|
84
|
-
"@aztec/simulator": "4.3.0-
|
|
85
|
-
"@aztec/stdlib": "4.3.0-
|
|
73
|
+
"@aztec/bb-prover": "4.3.0-rc.1",
|
|
74
|
+
"@aztec/bb.js": "4.3.0-rc.1",
|
|
75
|
+
"@aztec/builder": "4.3.0-rc.1",
|
|
76
|
+
"@aztec/constants": "4.3.0-rc.1",
|
|
77
|
+
"@aztec/ethereum": "4.3.0-rc.1",
|
|
78
|
+
"@aztec/foundation": "4.3.0-rc.1",
|
|
79
|
+
"@aztec/key-store": "4.3.0-rc.1",
|
|
80
|
+
"@aztec/kv-store": "4.3.0-rc.1",
|
|
81
|
+
"@aztec/noir-protocol-circuits-types": "4.3.0-rc.1",
|
|
82
|
+
"@aztec/noir-types": "4.3.0-rc.1",
|
|
83
|
+
"@aztec/protocol-contracts": "4.3.0-rc.1",
|
|
84
|
+
"@aztec/simulator": "4.3.0-rc.1",
|
|
85
|
+
"@aztec/stdlib": "4.3.0-rc.1",
|
|
86
86
|
"koa": "^2.16.1",
|
|
87
87
|
"koa-router": "^13.1.1",
|
|
88
88
|
"lodash.omit": "^4.5.0",
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
"viem": "npm:@aztec/viem@2.38.2"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@aztec/merkle-tree": "4.3.0-
|
|
95
|
-
"@aztec/noir-test-contracts.js": "4.3.0-
|
|
94
|
+
"@aztec/merkle-tree": "4.3.0-rc.1",
|
|
95
|
+
"@aztec/noir-test-contracts.js": "4.3.0-rc.1",
|
|
96
96
|
"@jest/globals": "^30.0.0",
|
|
97
97
|
"@types/jest": "^30.0.0",
|
|
98
98
|
"@types/lodash.omit": "^4.5.7",
|
|
@@ -17,7 +17,7 @@ import { ORACLE_INTERFACE_HASH } from '../oracle_version.js';
|
|
|
17
17
|
* - If the change is backward-breaking (e.g. removing/renaming an oracle), bump ORACLE_VERSION_MAJOR.
|
|
18
18
|
* - If the change is an oracle addition (non-breaking), bump ORACLE_VERSION_MINOR.
|
|
19
19
|
*
|
|
20
|
-
* TODO(
|
|
20
|
+
* TODO(F-667): The following only takes into consideration changes to the oracles defined in Oracle.ts and omits TXE
|
|
21
21
|
* oracles. Ensure this checks TXE oracles as well. This hasn't been implemented yet since we don't have a clean TXE
|
|
22
22
|
* oracle interface like we do in PXE (i.e., there is no single Oracle class that contains only the oracles).
|
|
23
23
|
*/
|