@aztec/prover-client 0.86.0-nightly.20250514 → 0.86.0-nightly.20250517
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/proving_broker/rpc.d.ts +3 -3
- package/package.json +15 -15
|
@@ -6,19 +6,19 @@ export declare const ProvingJobProducerSchema: ApiSchemaFor<ProvingJobProducer>;
|
|
|
6
6
|
export declare const ProvingJobConsumerSchema: ApiSchemaFor<ProvingJobConsumer>;
|
|
7
7
|
export declare const ProvingJobBrokerSchema: ApiSchemaFor<ProvingJobBroker>;
|
|
8
8
|
export declare function createProvingBrokerServer(broker: ProvingJobBroker): SafeJsonRpcServer;
|
|
9
|
-
export declare function createProvingJobBrokerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string,
|
|
9
|
+
export declare function createProvingJobBrokerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string, body: unknown, extraHeaders?: Record<string, string> | undefined, noRetry?: boolean | undefined) => Promise<{
|
|
10
10
|
response: any;
|
|
11
11
|
headers: {
|
|
12
12
|
get: (header: string) => string | null | undefined;
|
|
13
13
|
};
|
|
14
14
|
}>): ProvingJobBroker;
|
|
15
|
-
export declare function createProvingJobProducerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string,
|
|
15
|
+
export declare function createProvingJobProducerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string, body: unknown, extraHeaders?: Record<string, string> | undefined, noRetry?: boolean | undefined) => Promise<{
|
|
16
16
|
response: any;
|
|
17
17
|
headers: {
|
|
18
18
|
get: (header: string) => string | null | undefined;
|
|
19
19
|
};
|
|
20
20
|
}>): ProvingJobProducer;
|
|
21
|
-
export declare function createProvingJobConsumerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string,
|
|
21
|
+
export declare function createProvingJobConsumerClient(url: string, versions: Partial<ComponentsVersions>, fetch?: (host: string, body: unknown, extraHeaders?: Record<string, string> | undefined, noRetry?: boolean | undefined) => Promise<{
|
|
22
22
|
response: any;
|
|
23
23
|
headers: {
|
|
24
24
|
get: (header: string) => string | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "0.86.0-nightly.
|
|
3
|
+
"version": "0.86.0-nightly.20250517",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -64,19 +64,19 @@
|
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@aztec/bb-prover": "0.86.0-nightly.
|
|
68
|
-
"@aztec/blob-lib": "0.86.0-nightly.
|
|
69
|
-
"@aztec/constants": "0.86.0-nightly.
|
|
70
|
-
"@aztec/ethereum": "0.86.0-nightly.
|
|
71
|
-
"@aztec/foundation": "0.86.0-nightly.
|
|
72
|
-
"@aztec/kv-store": "0.86.0-nightly.
|
|
73
|
-
"@aztec/noir-protocol-circuits-types": "0.86.0-nightly.
|
|
74
|
-
"@aztec/noir-types": "0.86.0-nightly.
|
|
75
|
-
"@aztec/protocol-contracts": "0.86.0-nightly.
|
|
76
|
-
"@aztec/simulator": "0.86.0-nightly.
|
|
77
|
-
"@aztec/stdlib": "0.86.0-nightly.
|
|
78
|
-
"@aztec/telemetry-client": "0.86.0-nightly.
|
|
79
|
-
"@aztec/world-state": "0.86.0-nightly.
|
|
67
|
+
"@aztec/bb-prover": "0.86.0-nightly.20250517",
|
|
68
|
+
"@aztec/blob-lib": "0.86.0-nightly.20250517",
|
|
69
|
+
"@aztec/constants": "0.86.0-nightly.20250517",
|
|
70
|
+
"@aztec/ethereum": "0.86.0-nightly.20250517",
|
|
71
|
+
"@aztec/foundation": "0.86.0-nightly.20250517",
|
|
72
|
+
"@aztec/kv-store": "0.86.0-nightly.20250517",
|
|
73
|
+
"@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250517",
|
|
74
|
+
"@aztec/noir-types": "0.86.0-nightly.20250517",
|
|
75
|
+
"@aztec/protocol-contracts": "0.86.0-nightly.20250517",
|
|
76
|
+
"@aztec/simulator": "0.86.0-nightly.20250517",
|
|
77
|
+
"@aztec/stdlib": "0.86.0-nightly.20250517",
|
|
78
|
+
"@aztec/telemetry-client": "0.86.0-nightly.20250517",
|
|
79
|
+
"@aztec/world-state": "0.86.0-nightly.20250517",
|
|
80
80
|
"@google-cloud/storage": "^7.15.0",
|
|
81
81
|
"@iarna/toml": "^2.2.5",
|
|
82
82
|
"commander": "^12.1.0",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"zod": "^3.23.8"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@aztec/noir-contracts.js": "0.86.0-nightly.
|
|
89
|
+
"@aztec/noir-contracts.js": "0.86.0-nightly.20250517",
|
|
90
90
|
"@jest/globals": "^29.5.0",
|
|
91
91
|
"@types/jest": "^29.5.0",
|
|
92
92
|
"@types/node": "^18.7.23",
|