@aztec/pxe 0.87.6 → 0.87.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/pxe",
|
|
3
|
-
"version": "0.87.
|
|
3
|
+
"version": "0.87.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./server": "./dest/entrypoints/server/index.js",
|
|
@@ -58,19 +58,19 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@aztec/bb-prover": "0.87.
|
|
62
|
-
"@aztec/bb.js": "0.87.
|
|
63
|
-
"@aztec/builder": "0.87.
|
|
64
|
-
"@aztec/constants": "0.87.
|
|
65
|
-
"@aztec/ethereum": "0.87.
|
|
66
|
-
"@aztec/foundation": "0.87.
|
|
67
|
-
"@aztec/key-store": "0.87.
|
|
68
|
-
"@aztec/kv-store": "0.87.
|
|
69
|
-
"@aztec/noir-protocol-circuits-types": "0.87.
|
|
70
|
-
"@aztec/noir-types": "0.87.
|
|
71
|
-
"@aztec/protocol-contracts": "0.87.
|
|
72
|
-
"@aztec/simulator": "0.87.
|
|
73
|
-
"@aztec/stdlib": "0.87.
|
|
61
|
+
"@aztec/bb-prover": "0.87.8",
|
|
62
|
+
"@aztec/bb.js": "0.87.8",
|
|
63
|
+
"@aztec/builder": "0.87.8",
|
|
64
|
+
"@aztec/constants": "0.87.8",
|
|
65
|
+
"@aztec/ethereum": "0.87.8",
|
|
66
|
+
"@aztec/foundation": "0.87.8",
|
|
67
|
+
"@aztec/key-store": "0.87.8",
|
|
68
|
+
"@aztec/kv-store": "0.87.8",
|
|
69
|
+
"@aztec/noir-protocol-circuits-types": "0.87.8",
|
|
70
|
+
"@aztec/noir-types": "0.87.8",
|
|
71
|
+
"@aztec/protocol-contracts": "0.87.8",
|
|
72
|
+
"@aztec/simulator": "0.87.8",
|
|
73
|
+
"@aztec/stdlib": "0.87.8",
|
|
74
74
|
"koa": "^2.16.1",
|
|
75
75
|
"koa-router": "^12.0.0",
|
|
76
76
|
"lodash.omit": "^4.5.0",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"viem": "2.23.7"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@aztec/merkle-tree": "0.87.
|
|
83
|
-
"@aztec/noir-test-contracts.js": "0.87.
|
|
82
|
+
"@aztec/merkle-tree": "0.87.8",
|
|
83
|
+
"@aztec/noir-test-contracts.js": "0.87.8",
|
|
84
84
|
"@jest/globals": "^29.5.0",
|
|
85
85
|
"@types/jest": "^29.5.0",
|
|
86
86
|
"@types/lodash.omit": "^4.5.7",
|
|
@@ -103,6 +103,10 @@ function createProver(config: PXEServiceConfig, simulator: CircuitSimulator, log
|
|
|
103
103
|
} else {
|
|
104
104
|
const bbConfig = config as Required<Pick<PXEServiceConfig, 'bbBinaryPath' | 'bbWorkingDirectory'>> &
|
|
105
105
|
PXEServiceConfig;
|
|
106
|
-
return BBNativePrivateKernelProver.new(
|
|
106
|
+
return BBNativePrivateKernelProver.new(
|
|
107
|
+
{ bbSkipCleanup: false, numConcurrentIVCVerifiers: 1, ...bbConfig },
|
|
108
|
+
simulator,
|
|
109
|
+
logger,
|
|
110
|
+
);
|
|
107
111
|
}
|
|
108
112
|
}
|