@aztec/archiver 0.0.1-commit.96dac018d → 0.0.1-commit.993d240
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/README.md +19 -11
- package/dest/archiver.d.ts +36 -17
- package/dest/archiver.d.ts.map +1 -1
- package/dest/archiver.js +257 -75
- package/dest/config.d.ts +6 -3
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +23 -15
- package/dest/errors.d.ts +55 -9
- package/dest/errors.d.ts.map +1 -1
- package/dest/errors.js +81 -14
- package/dest/factory.d.ts +13 -9
- package/dest/factory.d.ts.map +1 -1
- package/dest/factory.js +47 -35
- package/dest/index.d.ts +11 -3
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +10 -2
- package/dest/l1/calldata_retriever.d.ts +2 -1
- package/dest/l1/calldata_retriever.d.ts.map +1 -1
- package/dest/l1/calldata_retriever.js +15 -5
- package/dest/l1/data_retrieval.d.ts +24 -12
- package/dest/l1/data_retrieval.d.ts.map +1 -1
- package/dest/l1/data_retrieval.js +36 -37
- package/dest/l1/trace_tx.d.ts +12 -66
- package/dest/l1/trace_tx.d.ts.map +1 -1
- package/dest/l1/validate_historical_logs.d.ts +23 -0
- package/dest/l1/validate_historical_logs.d.ts.map +1 -0
- package/dest/l1/validate_historical_logs.js +108 -0
- package/dest/modules/contract_data_source_adapter.d.ts +25 -0
- package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
- package/dest/modules/contract_data_source_adapter.js +40 -0
- package/dest/modules/data_source_base.d.ts +70 -46
- package/dest/modules/data_source_base.d.ts.map +1 -1
- package/dest/modules/data_source_base.js +270 -135
- package/dest/modules/data_store_updater.d.ts +42 -17
- package/dest/modules/data_store_updater.d.ts.map +1 -1
- package/dest/modules/data_store_updater.js +191 -122
- package/dest/modules/instrumentation.d.ts +7 -2
- package/dest/modules/instrumentation.d.ts.map +1 -1
- package/dest/modules/instrumentation.js +25 -7
- package/dest/modules/l1_synchronizer.d.ts +12 -6
- package/dest/modules/l1_synchronizer.d.ts.map +1 -1
- package/dest/modules/l1_synchronizer.js +432 -205
- package/dest/modules/validation.d.ts +4 -3
- package/dest/modules/validation.d.ts.map +1 -1
- package/dest/modules/validation.js +6 -6
- package/dest/store/block_store.d.ts +174 -70
- package/dest/store/block_store.d.ts.map +1 -1
- package/dest/store/block_store.js +696 -250
- package/dest/store/contract_class_store.d.ts +17 -4
- package/dest/store/contract_class_store.d.ts.map +1 -1
- package/dest/store/contract_class_store.js +24 -68
- package/dest/store/contract_instance_store.d.ts +28 -1
- package/dest/store/contract_instance_store.d.ts.map +1 -1
- package/dest/store/contract_instance_store.js +37 -2
- package/dest/store/data_stores.d.ts +68 -0
- package/dest/store/data_stores.d.ts.map +1 -0
- package/dest/store/data_stores.js +54 -0
- package/dest/store/function_names_cache.d.ts +17 -0
- package/dest/store/function_names_cache.d.ts.map +1 -0
- package/dest/store/function_names_cache.js +30 -0
- package/dest/store/l2_tips_cache.d.ts +13 -7
- package/dest/store/l2_tips_cache.d.ts.map +1 -1
- package/dest/store/l2_tips_cache.js +13 -76
- package/dest/store/log_store.d.ts +42 -37
- package/dest/store/log_store.d.ts.map +1 -1
- package/dest/store/log_store.js +262 -408
- package/dest/store/log_store_codec.d.ts +70 -0
- package/dest/store/log_store_codec.d.ts.map +1 -0
- package/dest/store/log_store_codec.js +101 -0
- package/dest/store/message_store.d.ts +11 -1
- package/dest/store/message_store.d.ts.map +1 -1
- package/dest/store/message_store.js +51 -9
- package/dest/test/fake_l1_state.d.ts +20 -1
- package/dest/test/fake_l1_state.d.ts.map +1 -1
- package/dest/test/fake_l1_state.js +114 -18
- package/dest/test/mock_l1_to_l2_message_source.d.ts +1 -1
- package/dest/test/mock_l1_to_l2_message_source.d.ts.map +1 -1
- package/dest/test/mock_l1_to_l2_message_source.js +2 -1
- package/dest/test/mock_l2_block_source.d.ts +52 -46
- package/dest/test/mock_l2_block_source.d.ts.map +1 -1
- package/dest/test/mock_l2_block_source.js +246 -170
- package/dest/test/mock_structs.d.ts +4 -1
- package/dest/test/mock_structs.d.ts.map +1 -1
- package/dest/test/mock_structs.js +13 -1
- package/dest/test/noop_l1_archiver.d.ts +12 -6
- package/dest/test/noop_l1_archiver.d.ts.map +1 -1
- package/dest/test/noop_l1_archiver.js +26 -9
- package/package.json +14 -14
- package/src/archiver.ts +313 -75
- package/src/config.ts +32 -12
- package/src/errors.ts +122 -21
- package/src/factory.ts +54 -29
- package/src/index.ts +18 -2
- package/src/l1/calldata_retriever.ts +16 -5
- package/src/l1/data_retrieval.ts +52 -53
- package/src/l1/validate_historical_logs.ts +140 -0
- package/src/modules/contract_data_source_adapter.ts +55 -0
- package/src/modules/data_source_base.ts +336 -171
- package/src/modules/data_store_updater.ts +224 -154
- package/src/modules/instrumentation.ts +28 -8
- package/src/modules/l1_synchronizer.ts +572 -248
- package/src/modules/validation.ts +10 -9
- package/src/store/block_store.ts +865 -290
- package/src/store/contract_class_store.ts +31 -103
- package/src/store/contract_instance_store.ts +51 -5
- package/src/store/data_stores.ts +104 -0
- package/src/store/function_names_cache.ts +37 -0
- package/src/store/l2_tips_cache.ts +16 -70
- package/src/store/log_store.ts +301 -559
- package/src/store/log_store_codec.ts +132 -0
- package/src/store/message_store.ts +60 -10
- package/src/structs/inbox_message.ts +1 -1
- package/src/test/fake_l1_state.ts +142 -29
- package/src/test/mock_l1_to_l2_message_source.ts +1 -0
- package/src/test/mock_l2_block_source.ts +309 -205
- package/src/test/mock_structs.ts +20 -6
- package/src/test/noop_l1_archiver.ts +39 -9
- package/dest/store/kv_archiver_store.d.ts +0 -354
- package/dest/store/kv_archiver_store.d.ts.map +0 -1
- package/dest/store/kv_archiver_store.js +0 -464
- package/src/store/kv_archiver_store.ts +0 -671
|
@@ -1,23 +1,29 @@
|
|
|
1
|
+
import { SlotNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
|
+
import type { BlockHash } from '@aztec/stdlib/block';
|
|
2
4
|
import type { L1RollupConstants } from '@aztec/stdlib/epoch-helpers';
|
|
5
|
+
import type { BlockHeader } from '@aztec/stdlib/tx';
|
|
3
6
|
import { type TelemetryClient } from '@aztec/telemetry-client';
|
|
4
7
|
import { Archiver } from '../archiver.js';
|
|
5
8
|
import { ArchiverInstrumentation } from '../modules/instrumentation.js';
|
|
6
|
-
import type {
|
|
9
|
+
import type { ArchiverDataStores } from '../store/data_stores.js';
|
|
10
|
+
import { L2TipsCache } from '../store/l2_tips_cache.js';
|
|
7
11
|
/**
|
|
8
12
|
* Archiver with mocked L1 connectivity for testing.
|
|
9
13
|
* Uses mock L1 clients and a noop synchronizer, enabling tests that
|
|
10
14
|
* don't require real Ethereum connectivity.
|
|
11
15
|
*/
|
|
12
16
|
export declare class NoopL1Archiver extends Archiver {
|
|
13
|
-
constructor(
|
|
17
|
+
constructor(dataStores: ArchiverDataStores, l1Constants: L1RollupConstants & {
|
|
14
18
|
genesisArchiveRoot: Fr;
|
|
15
|
-
}, instrumentation: ArchiverInstrumentation);
|
|
19
|
+
}, instrumentation: ArchiverInstrumentation, initialHeader: BlockHeader, initialBlockHash: BlockHash, l2TipsCache: L2TipsCache);
|
|
16
20
|
/** Override start to skip L1 validation checks. */
|
|
17
21
|
start(_blockUntilSynced?: boolean): Promise<void>;
|
|
22
|
+
/** Always reports as fully synced since there is no real L1 to sync from. */
|
|
23
|
+
getSyncedL2SlotNumber(): Promise<SlotNumber | undefined>;
|
|
18
24
|
}
|
|
19
25
|
/** Creates an archiver with mocked L1 connectivity for testing. */
|
|
20
|
-
export declare function createNoopL1Archiver(
|
|
26
|
+
export declare function createNoopL1Archiver(dataStores: ArchiverDataStores, l1Constants: L1RollupConstants & {
|
|
21
27
|
genesisArchiveRoot: Fr;
|
|
22
|
-
}, telemetry
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
28
|
+
}, telemetry: TelemetryClient | undefined, initialHeader: BlockHeader): Promise<NoopL1Archiver>;
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9vcF9sMV9hcmNoaXZlci5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3Rlc3Qvbm9vcF9sMV9hcmNoaXZlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFJQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFFN0QsT0FBTyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBSXBELE9BQU8sS0FBSyxFQUFtQixTQUFTLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN0RSxPQUFPLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ3JFLE9BQU8sS0FBSyxFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ3BELE9BQU8sRUFBRSxLQUFLLGVBQWUsRUFBbUMsTUFBTSx5QkFBeUIsQ0FBQztBQUtoRyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDMUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFeEUsT0FBTyxLQUFLLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNsRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUF5QnhEOzs7O0dBSUc7QUFDSCxxQkFBYSxjQUFlLFNBQVEsUUFBUTtJQUMxQyxZQUNFLFVBQVUsRUFBRSxrQkFBa0IsRUFDOUIsV0FBVyxFQUFFLGlCQUFpQixHQUFHO1FBQUUsa0JBQWtCLEVBQUUsRUFBRSxDQUFBO0tBQUUsRUFDM0QsZUFBZSxFQUFFLHVCQUF1QixFQUN4QyxhQUFhLEVBQUUsV0FBVyxFQUMxQixnQkFBZ0IsRUFBRSxTQUFTLEVBQzNCLFdBQVcsRUFBRSxXQUFXLEVBaUR6QjtJQUVELG1EQUFtRDtJQUNuQyxLQUFLLENBQUMsaUJBQWlCLENBQUMsRUFBRSxPQUFPLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUloRTtJQUVELDZFQUE2RTtJQUM3RCxxQkFBcUIsSUFBSSxPQUFPLENBQUMsVUFBVSxHQUFHLFNBQVMsQ0FBQyxDQUV2RTtDQUNGO0FBRUQsbUVBQW1FO0FBQ25FLHdCQUFzQixvQkFBb0IsQ0FDeEMsVUFBVSxFQUFFLGtCQUFrQixFQUM5QixXQUFXLEVBQUUsaUJBQWlCLEdBQUc7SUFBRSxrQkFBa0IsRUFBRSxFQUFFLENBQUE7Q0FBRSxFQUMzRCxTQUFTLDZCQUF3QyxFQUNqRCxhQUFhLEVBQUUsV0FBVyxHQUN6QixPQUFPLENBQUMsY0FBYyxDQUFDLENBU3pCIn0=
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"noop_l1_archiver.d.ts","sourceRoot":"","sources":["../../src/test/noop_l1_archiver.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AAIpD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,KAAK,eAAe,EAAmC,MAAM,yBAAyB,CAAC;AAKhG,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAExE,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"noop_l1_archiver.d.ts","sourceRoot":"","sources":["../../src/test/noop_l1_archiver.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAE7D,OAAO,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AAIpD,OAAO,KAAK,EAAmB,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACtE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,KAAK,eAAe,EAAmC,MAAM,yBAAyB,CAAC;AAKhG,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC1C,OAAO,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAExE,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAyBxD;;;;GAIG;AACH,qBAAa,cAAe,SAAQ,QAAQ;IAC1C,YACE,UAAU,EAAE,kBAAkB,EAC9B,WAAW,EAAE,iBAAiB,GAAG;QAAE,kBAAkB,EAAE,EAAE,CAAA;KAAE,EAC3D,eAAe,EAAE,uBAAuB,EACxC,aAAa,EAAE,WAAW,EAC1B,gBAAgB,EAAE,SAAS,EAC3B,WAAW,EAAE,WAAW,EAiDzB;IAED,mDAAmD;IACnC,KAAK,CAAC,iBAAiB,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAIhE;IAED,6EAA6E;IAC7D,qBAAqB,IAAI,OAAO,CAAC,UAAU,GAAG,SAAS,CAAC,CAEvE;CACF;AAED,mEAAmE;AACnE,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,kBAAkB,EAC9B,WAAW,EAAE,iBAAiB,GAAG;IAAE,kBAAkB,EAAE,EAAE,CAAA;CAAE,EAC3D,SAAS,6BAAwC,EACjD,aAAa,EAAE,WAAW,GACzB,OAAO,CAAC,cAAc,CAAC,CASzB"}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import { SlotNumber } from '@aztec/foundation/branded-types';
|
|
1
2
|
import { Buffer32 } from '@aztec/foundation/buffer';
|
|
2
3
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
4
|
+
import { DateProvider } from '@aztec/foundation/timer';
|
|
3
5
|
import { getTelemetryClient } from '@aztec/telemetry-client';
|
|
4
6
|
import { mock } from 'jest-mock-extended';
|
|
5
7
|
import { EventEmitter } from 'node:events';
|
|
6
8
|
import { Archiver } from '../archiver.js';
|
|
7
9
|
import { ArchiverInstrumentation } from '../modules/instrumentation.js';
|
|
10
|
+
import { L2TipsCache } from '../store/l2_tips_cache.js';
|
|
8
11
|
/** Noop L1 synchronizer for testing without L1 connectivity. */ class NoopL1Synchronizer {
|
|
9
12
|
tracer;
|
|
10
13
|
constructor(tracer){
|
|
@@ -15,7 +18,7 @@ import { ArchiverInstrumentation } from '../modules/instrumentation.js';
|
|
|
15
18
|
return 0n;
|
|
16
19
|
}
|
|
17
20
|
getL1Timestamp() {
|
|
18
|
-
return
|
|
21
|
+
return undefined;
|
|
19
22
|
}
|
|
20
23
|
testEthereumNodeSynced() {
|
|
21
24
|
return Promise.resolve();
|
|
@@ -29,7 +32,7 @@ import { ArchiverInstrumentation } from '../modules/instrumentation.js';
|
|
|
29
32
|
* Uses mock L1 clients and a noop synchronizer, enabling tests that
|
|
30
33
|
* don't require real Ethereum connectivity.
|
|
31
34
|
*/ export class NoopL1Archiver extends Archiver {
|
|
32
|
-
constructor(
|
|
35
|
+
constructor(dataStores, l1Constants, instrumentation, initialHeader, initialBlockHash, l2TipsCache){
|
|
33
36
|
// Create mocks for L1 clients
|
|
34
37
|
const publicClient = mock();
|
|
35
38
|
const debugClient = mock();
|
|
@@ -40,29 +43,43 @@ import { ArchiverInstrumentation } from '../modules/instrumentation.js';
|
|
|
40
43
|
publicClient.getBlockNumber.mockResolvedValue(1n);
|
|
41
44
|
const events = new EventEmitter();
|
|
42
45
|
const synchronizer = new NoopL1Synchronizer(instrumentation.tracer);
|
|
46
|
+
const epochCache = mock();
|
|
47
|
+
epochCache.pipeliningOffset.mockReturnValue(0);
|
|
43
48
|
super(publicClient, debugClient, rollup, {
|
|
49
|
+
rollupAddress: EthAddress.ZERO,
|
|
44
50
|
registryAddress: EthAddress.ZERO,
|
|
51
|
+
inboxAddress: EthAddress.ZERO,
|
|
45
52
|
governanceProposerAddress: EthAddress.ZERO,
|
|
46
|
-
slashFactoryAddress: EthAddress.ZERO,
|
|
47
53
|
slashingProposerAddress: EthAddress.ZERO
|
|
48
|
-
},
|
|
54
|
+
}, dataStores, {
|
|
49
55
|
pollingIntervalMs: 1000,
|
|
50
56
|
batchSize: 100,
|
|
51
57
|
skipValidateCheckpointAttestations: true,
|
|
52
58
|
maxAllowedEthClientDriftSeconds: 300,
|
|
53
|
-
ethereumAllowNoDebugHosts: true
|
|
59
|
+
ethereumAllowNoDebugHosts: true,
|
|
60
|
+
skipHistoricalLogsCheck: true,
|
|
61
|
+
orphanProposedBlockPruneGraceSeconds: 2
|
|
54
62
|
}, blobClient, instrumentation, {
|
|
55
63
|
...l1Constants,
|
|
56
64
|
l1StartBlockHash: Buffer32.random()
|
|
57
|
-
}, synchronizer, events);
|
|
65
|
+
}, synchronizer, events, initialHeader, initialBlockHash, l2TipsCache, epochCache, new DateProvider());
|
|
58
66
|
}
|
|
59
67
|
/** Override start to skip L1 validation checks. */ start(_blockUntilSynced) {
|
|
60
68
|
// Just start the running promise without L1 checks
|
|
61
69
|
this.runningPromise.start();
|
|
62
70
|
return Promise.resolve();
|
|
63
71
|
}
|
|
72
|
+
/** Always reports as fully synced since there is no real L1 to sync from. */ getSyncedL2SlotNumber() {
|
|
73
|
+
return Promise.resolve(SlotNumber(Number.MAX_SAFE_INTEGER));
|
|
74
|
+
}
|
|
64
75
|
}
|
|
65
|
-
/** Creates an archiver with mocked L1 connectivity for testing. */ export async function createNoopL1Archiver(
|
|
66
|
-
const instrumentation = await ArchiverInstrumentation.new(telemetry, ()=>
|
|
67
|
-
|
|
76
|
+
/** Creates an archiver with mocked L1 connectivity for testing. */ export async function createNoopL1Archiver(dataStores, l1Constants, telemetry = getTelemetryClient(), initialHeader) {
|
|
77
|
+
const instrumentation = await ArchiverInstrumentation.new(telemetry, ()=>dataStores.db.estimateSize());
|
|
78
|
+
// Mirror the production factory: precompute the dynamic genesis block hash from the injected
|
|
79
|
+
// initial header so `L2TipsCache` reports the correct tip hash at block 0. Without this, the
|
|
80
|
+
// cache falls back to the static `GENESIS_BLOCK_HEADER_HASH`, which only matches deployments
|
|
81
|
+
// with default empty genesis.
|
|
82
|
+
const initialBlockHash = await initialHeader.hash();
|
|
83
|
+
const l2TipsCache = new L2TipsCache(dataStores.blocks, initialBlockHash);
|
|
84
|
+
return new NoopL1Archiver(dataStores, l1Constants, instrumentation, initialHeader, initialBlockHash, l2TipsCache);
|
|
68
85
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/archiver",
|
|
3
|
-
"version": "0.0.1-commit.
|
|
3
|
+
"version": "0.0.1-commit.993d240",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -65,23 +65,23 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@aztec/blob-client": "0.0.1-commit.
|
|
69
|
-
"@aztec/blob-lib": "0.0.1-commit.
|
|
70
|
-
"@aztec/constants": "0.0.1-commit.
|
|
71
|
-
"@aztec/epoch-cache": "0.0.1-commit.
|
|
72
|
-
"@aztec/ethereum": "0.0.1-commit.
|
|
73
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
74
|
-
"@aztec/kv-store": "0.0.1-commit.
|
|
75
|
-
"@aztec/l1-artifacts": "0.0.1-commit.
|
|
76
|
-
"@aztec/noir-protocol-circuits-types": "0.0.1-commit.
|
|
77
|
-
"@aztec/protocol-contracts": "0.0.1-commit.
|
|
78
|
-
"@aztec/stdlib": "0.0.1-commit.
|
|
79
|
-
"@aztec/telemetry-client": "0.0.1-commit.
|
|
68
|
+
"@aztec/blob-client": "0.0.1-commit.993d240",
|
|
69
|
+
"@aztec/blob-lib": "0.0.1-commit.993d240",
|
|
70
|
+
"@aztec/constants": "0.0.1-commit.993d240",
|
|
71
|
+
"@aztec/epoch-cache": "0.0.1-commit.993d240",
|
|
72
|
+
"@aztec/ethereum": "0.0.1-commit.993d240",
|
|
73
|
+
"@aztec/foundation": "0.0.1-commit.993d240",
|
|
74
|
+
"@aztec/kv-store": "0.0.1-commit.993d240",
|
|
75
|
+
"@aztec/l1-artifacts": "0.0.1-commit.993d240",
|
|
76
|
+
"@aztec/noir-protocol-circuits-types": "0.0.1-commit.993d240",
|
|
77
|
+
"@aztec/protocol-contracts": "0.0.1-commit.993d240",
|
|
78
|
+
"@aztec/stdlib": "0.0.1-commit.993d240",
|
|
79
|
+
"@aztec/telemetry-client": "0.0.1-commit.993d240",
|
|
80
80
|
"lodash.groupby": "^4.6.0",
|
|
81
81
|
"lodash.omit": "^4.5.0",
|
|
82
82
|
"tslib": "^2.5.0",
|
|
83
83
|
"viem": "npm:@aztec/viem@2.38.2",
|
|
84
|
-
"zod": "^
|
|
84
|
+
"zod": "^4"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@jest/globals": "^30.0.0",
|