@aztec/prover-client 0.82.2 → 0.82.3
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/block_builder/light.js +1 -1
- package/dest/proving_broker/proof_store/gcs_proof_store.d.ts.map +1 -1
- package/dest/proving_broker/proof_store/gcs_proof_store.js +1 -0
- package/package.json +15 -15
- package/src/block_builder/light.ts +1 -1
- package/src/proving_broker/proof_store/gcs_proof_store.ts +1 -0
|
@@ -57,7 +57,7 @@ import { buildBaseRollupHints, buildHeaderAndBodyFromTxs, getTreeSnapshot } from
|
|
|
57
57
|
this.logger.debug(`Built block ${block.number}`, {
|
|
58
58
|
globalVariables: this.globalVariables?.toInspect(),
|
|
59
59
|
archiveRoot: newArchive.root.toString(),
|
|
60
|
-
blockHash: block.hash.toString()
|
|
60
|
+
blockHash: (await block.hash()).toString()
|
|
61
61
|
});
|
|
62
62
|
return block;
|
|
63
63
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gcs_proof_store.d.ts","sourceRoot":"","sources":["../../../src/proving_broker/proof_store/gcs_proof_store.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,QAAQ,EACb,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EAE1B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAK1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"gcs_proof_store.d.ts","sourceRoot":"","sources":["../../../src/proving_broker/proof_store/gcs_proof_store.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,QAAQ,EACb,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EAE1B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAK1D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAKnD,qBAAa,4BAA6B,YAAW,UAAU;IAGjD,OAAO,CAAC,QAAQ,CAAC,UAAU;IAAU,OAAO,CAAC,QAAQ,CAAC,IAAI;IAFtE,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAU;gBAEL,UAAU,EAAE,MAAM,EAAmB,IAAI,EAAE,MAAM;IAIjE,cAAc,CAAC,CAAC,SAAS,kBAAkB,EACtD,EAAE,EAAE,YAAY,EAChB,IAAI,EAAE,CAAC,EACP,MAAM,EAAE,mBAAmB,CAAC,CAAC,CAAC,GAC7B,OAAO,CAAC,QAAQ,CAAC;IAOpB,eAAe,CAAC,CAAC,SAAS,kBAAkB,EAC1C,GAAG,EAAE,YAAY,EACjB,KAAK,EAAE,CAAC,EACR,OAAO,EAAE,oBAAoB,CAAC,CAAC,CAAC,GAC/B,OAAO,CAAC,QAAQ,CAAC;IAIP,aAAa,CAAC,GAAG,EAAE,QAAQ,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAwBpE,cAAc,CAAC,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC,gBAAgB,CAAC;CAG1D"}
|
|
@@ -3,6 +3,7 @@ import { ProvingRequestType } from '@aztec/stdlib/proofs';
|
|
|
3
3
|
import { Storage } from '@google-cloud/storage';
|
|
4
4
|
import { join } from 'path';
|
|
5
5
|
const INPUTS_PATH = 'inputs';
|
|
6
|
+
// REFACTOR(#13067): Use the stdlib/file-store instead of referencing google-cloud-storage directly.
|
|
6
7
|
export class GoogleCloudStorageProofStore {
|
|
7
8
|
bucketName;
|
|
8
9
|
path;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "0.82.
|
|
3
|
+
"version": "0.82.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -66,19 +66,19 @@
|
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@aztec/bb-prover": "0.82.
|
|
70
|
-
"@aztec/blob-lib": "0.82.
|
|
71
|
-
"@aztec/constants": "0.82.
|
|
72
|
-
"@aztec/ethereum": "0.82.
|
|
73
|
-
"@aztec/foundation": "0.82.
|
|
74
|
-
"@aztec/kv-store": "0.82.
|
|
75
|
-
"@aztec/noir-protocol-circuits-types": "0.82.
|
|
76
|
-
"@aztec/noir-types": "0.82.
|
|
77
|
-
"@aztec/protocol-contracts": "0.82.
|
|
78
|
-
"@aztec/simulator": "0.82.
|
|
79
|
-
"@aztec/stdlib": "0.82.
|
|
80
|
-
"@aztec/telemetry-client": "0.82.
|
|
81
|
-
"@aztec/world-state": "0.82.
|
|
69
|
+
"@aztec/bb-prover": "0.82.3",
|
|
70
|
+
"@aztec/blob-lib": "0.82.3",
|
|
71
|
+
"@aztec/constants": "0.82.3",
|
|
72
|
+
"@aztec/ethereum": "0.82.3",
|
|
73
|
+
"@aztec/foundation": "0.82.3",
|
|
74
|
+
"@aztec/kv-store": "0.82.3",
|
|
75
|
+
"@aztec/noir-protocol-circuits-types": "0.82.3",
|
|
76
|
+
"@aztec/noir-types": "0.82.3",
|
|
77
|
+
"@aztec/protocol-contracts": "0.82.3",
|
|
78
|
+
"@aztec/simulator": "0.82.3",
|
|
79
|
+
"@aztec/stdlib": "0.82.3",
|
|
80
|
+
"@aztec/telemetry-client": "0.82.3",
|
|
81
|
+
"@aztec/world-state": "0.82.3",
|
|
82
82
|
"@google-cloud/storage": "^7.15.0",
|
|
83
83
|
"@iarna/toml": "^2.2.5",
|
|
84
84
|
"commander": "^12.1.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"zod": "^3.23.8"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@aztec/noir-contracts.js": "0.82.
|
|
91
|
+
"@aztec/noir-contracts.js": "0.82.3",
|
|
92
92
|
"@jest/globals": "^29.5.0",
|
|
93
93
|
"@types/jest": "^29.5.0",
|
|
94
94
|
"@types/memdown": "^3.0.0",
|
|
@@ -68,7 +68,7 @@ export class LightweightBlockBuilder implements BlockBuilder {
|
|
|
68
68
|
this.logger.debug(`Built block ${block.number}`, {
|
|
69
69
|
globalVariables: this.globalVariables?.toInspect(),
|
|
70
70
|
archiveRoot: newArchive.root.toString(),
|
|
71
|
-
blockHash: block.hash.toString(),
|
|
71
|
+
blockHash: (await block.hash()).toString(),
|
|
72
72
|
});
|
|
73
73
|
|
|
74
74
|
return block;
|
|
@@ -16,6 +16,7 @@ import type { ProofStore } from './proof_store.js';
|
|
|
16
16
|
|
|
17
17
|
const INPUTS_PATH = 'inputs';
|
|
18
18
|
|
|
19
|
+
// REFACTOR(#13067): Use the stdlib/file-store instead of referencing google-cloud-storage directly.
|
|
19
20
|
export class GoogleCloudStorageProofStore implements ProofStore {
|
|
20
21
|
private readonly storage: Storage;
|
|
21
22
|
|