@aztec/archiver 0.80.0 → 0.82.0

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.
Files changed (54) hide show
  1. package/dest/archiver/archiver.d.ts +8 -20
  2. package/dest/archiver/archiver.d.ts.map +1 -1
  3. package/dest/archiver/archiver.js +72 -102
  4. package/dest/archiver/archiver_store.d.ts +5 -19
  5. package/dest/archiver/archiver_store.d.ts.map +1 -1
  6. package/dest/archiver/archiver_store_test_suite.d.ts.map +1 -1
  7. package/dest/archiver/archiver_store_test_suite.js +105 -142
  8. package/dest/archiver/config.d.ts +2 -0
  9. package/dest/archiver/config.d.ts.map +1 -1
  10. package/dest/archiver/config.js +5 -0
  11. package/dest/archiver/data_retrieval.d.ts +3 -4
  12. package/dest/archiver/data_retrieval.d.ts.map +1 -1
  13. package/dest/archiver/data_retrieval.js +8 -3
  14. package/dest/archiver/index.d.ts +1 -2
  15. package/dest/archiver/index.d.ts.map +1 -1
  16. package/dest/archiver/index.js +0 -1
  17. package/dest/archiver/kv_archiver_store/block_store.d.ts +6 -6
  18. package/dest/archiver/kv_archiver_store/block_store.d.ts.map +1 -1
  19. package/dest/archiver/kv_archiver_store/block_store.js +24 -21
  20. package/dest/archiver/kv_archiver_store/kv_archiver_store.d.ts +6 -14
  21. package/dest/archiver/kv_archiver_store/kv_archiver_store.d.ts.map +1 -1
  22. package/dest/archiver/kv_archiver_store/kv_archiver_store.js +2 -19
  23. package/dest/archiver/kv_archiver_store/log_store.d.ts.map +1 -1
  24. package/dest/archiver/kv_archiver_store/log_store.js +11 -42
  25. package/dest/archiver/structs/published.d.ts +1 -10
  26. package/dest/archiver/structs/published.d.ts.map +1 -1
  27. package/dest/archiver/structs/published.js +1 -1
  28. package/dest/factory.d.ts +1 -1
  29. package/dest/factory.d.ts.map +1 -1
  30. package/dest/factory.js +6 -24
  31. package/dest/test/mock_l2_block_source.d.ts +10 -0
  32. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  33. package/dest/test/mock_l2_block_source.js +16 -0
  34. package/package.json +12 -13
  35. package/src/archiver/archiver.ts +86 -124
  36. package/src/archiver/archiver_store.ts +5 -21
  37. package/src/archiver/archiver_store_test_suite.ts +116 -147
  38. package/src/archiver/config.ts +8 -0
  39. package/src/archiver/data_retrieval.ts +12 -11
  40. package/src/archiver/index.ts +1 -2
  41. package/src/archiver/kv_archiver_store/block_store.ts +28 -27
  42. package/src/archiver/kv_archiver_store/kv_archiver_store.ts +6 -27
  43. package/src/archiver/kv_archiver_store/log_store.ts +12 -59
  44. package/src/archiver/structs/published.ts +1 -11
  45. package/src/factory.ts +3 -28
  46. package/src/test/mock_l2_block_source.ts +18 -0
  47. package/dest/archiver/kv_archiver_store/nullifier_store.d.ts +0 -12
  48. package/dest/archiver/kv_archiver_store/nullifier_store.d.ts.map +0 -1
  49. package/dest/archiver/kv_archiver_store/nullifier_store.js +0 -73
  50. package/dest/archiver/memory_archiver_store/memory_archiver_store.d.ts +0 -175
  51. package/dest/archiver/memory_archiver_store/memory_archiver_store.d.ts.map +0 -1
  52. package/dest/archiver/memory_archiver_store/memory_archiver_store.js +0 -636
  53. package/src/archiver/kv_archiver_store/nullifier_store.ts +0 -97
  54. package/src/archiver/memory_archiver_store/memory_archiver_store.ts +0 -801
@@ -1,175 +0,0 @@
1
- import { Fr } from '@aztec/foundation/fields';
2
- import { FunctionSelector } from '@aztec/stdlib/abi';
3
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
4
- import { type InBlock, type L2Block } from '@aztec/stdlib/block';
5
- import type { ContractClassPublic, ContractInstanceUpdateWithAddress, ContractInstanceWithAddress, ExecutablePrivateFunctionWithMembershipProof, UnconstrainedFunctionWithMembershipProof } from '@aztec/stdlib/contract';
6
- import type { GetContractClassLogsResponse, GetPublicLogsResponse } from '@aztec/stdlib/interfaces/client';
7
- import { type LogFilter, type PrivateLog, TxScopedL2Log } from '@aztec/stdlib/logs';
8
- import type { InboxLeaf } from '@aztec/stdlib/messaging';
9
- import { type BlockHeader, TxEffect, TxHash, TxReceipt } from '@aztec/stdlib/tx';
10
- import type { ArchiverDataStore, ArchiverL1SynchPoint } from '../archiver_store.js';
11
- import type { DataRetrieval } from '../structs/data_retrieval.js';
12
- import type { L1Published } from '../structs/published.js';
13
- /**
14
- * Simple, in-memory implementation of an archiver data store.
15
- */
16
- export declare class MemoryArchiverStore implements ArchiverDataStore {
17
- #private;
18
- /** The max number of logs that can be obtained in 1 "getPublicLogs" call. */
19
- readonly maxLogs: number;
20
- /**
21
- * An array containing all the L2 blocks that have been fetched so far.
22
- */
23
- private l2Blocks;
24
- /**
25
- * An array containing all the tx effects in the L2 blocks that have been fetched so far.
26
- */
27
- private txEffects;
28
- private taggedLogs;
29
- private logTagsPerBlock;
30
- private privateLogsPerBlock;
31
- private publicLogsPerBlock;
32
- private contractClassLogsPerBlock;
33
- private blockScopedNullifiers;
34
- /**
35
- * Contains all L1 to L2 messages.
36
- */
37
- private l1ToL2Messages;
38
- private contractClasses;
39
- private bytecodeCommitments;
40
- private privateFunctions;
41
- private unconstrainedFunctions;
42
- private contractInstances;
43
- private contractInstanceUpdates;
44
- private lastL1BlockNewBlocks;
45
- private lastL1BlockNewMessages;
46
- private lastProvenL2BlockNumber;
47
- private lastProvenL2EpochNumber;
48
- private functionNames;
49
- constructor(
50
- /** The max number of logs that can be obtained in 1 "getPublicLogs" call. */
51
- maxLogs: number);
52
- getContractClass(id: Fr): Promise<ContractClassPublic | undefined>;
53
- getContractClassIds(): Promise<Fr[]>;
54
- getContractInstance(address: AztecAddress): Promise<ContractInstanceWithAddress | undefined>;
55
- getBytecodeCommitment(contractClassId: Fr): Promise<Fr | undefined>;
56
- addFunctions(contractClassId: Fr, newPrivateFunctions: ExecutablePrivateFunctionWithMembershipProof[], newUnconstrainedFunctions: UnconstrainedFunctionWithMembershipProof[]): Promise<boolean>;
57
- addContractClasses(data: ContractClassPublic[], bytecodeCommitments: Fr[], blockNumber: number): Promise<boolean>;
58
- deleteContractClasses(data: ContractClassPublic[], blockNumber: number): Promise<boolean>;
59
- addContractInstances(data: ContractInstanceWithAddress[], _blockNumber: number): Promise<boolean>;
60
- deleteContractInstances(data: ContractInstanceWithAddress[], _blockNumber: number): Promise<boolean>;
61
- addContractInstanceUpdates(data: ContractInstanceUpdateWithAddress[], blockNumber: number): Promise<boolean>;
62
- deleteContractInstanceUpdates(data: ContractInstanceUpdateWithAddress[], blockNumber: number): Promise<boolean>;
63
- /**
64
- * Append new blocks to the store's list.
65
- * @param blocks - The L2 blocks to be added to the store and the last processed L1 block.
66
- * @returns True if the operation is successful.
67
- */
68
- addBlocks(blocks: L1Published<L2Block>[]): Promise<boolean>;
69
- /**
70
- * Unwinds blocks from the database
71
- * @param from - The tip of the chain, passed for verification purposes,
72
- * ensuring that we don't end up deleting something we did not intend
73
- * @param blocksToUnwind - The number of blocks we are to unwind
74
- * @returns True if the operation is successful
75
- */
76
- unwindBlocks(from: number, blocksToUnwind: number): Promise<boolean>;
77
- /**
78
- * Append new logs to the store's list.
79
- * @param block - The block for which to add the logs.
80
- * @returns True if the operation is successful.
81
- */
82
- addLogs(blocks: L2Block[]): Promise<boolean>;
83
- deleteLogs(blocks: L2Block[]): Promise<boolean>;
84
- addNullifiers(blocks: L2Block[]): Promise<boolean>;
85
- deleteNullifiers(blocks: L2Block[]): Promise<boolean>;
86
- findNullifiersIndexesWithBlock(blockNumber: number, nullifiers: Fr[]): Promise<(InBlock<bigint> | undefined)[]>;
87
- getTotalL1ToL2MessageCount(): Promise<bigint>;
88
- /**
89
- * Append L1 to L2 messages to the store.
90
- * @param messages - The L1 to L2 messages to be added to the store and the last processed L1 block.
91
- * @returns True if the operation is successful.
92
- */
93
- addL1ToL2Messages(messages: DataRetrieval<InboxLeaf>): Promise<boolean>;
94
- /**
95
- * Gets the L1 to L2 message index in the L1 to L2 message tree.
96
- * @param l1ToL2Message - The L1 to L2 message.
97
- * @returns The index of the L1 to L2 message in the L1 to L2 message tree (undefined if not found).
98
- */
99
- getL1ToL2MessageIndex(l1ToL2Message: Fr): Promise<bigint | undefined>;
100
- /**
101
- * Gets up to `limit` amount of L2 blocks starting from `from`.
102
- * @param from - Number of the first block to return (inclusive).
103
- * @param limit - The number of blocks to return.
104
- * @returns The requested L2 blocks.
105
- * @remarks When "from" is smaller than genesis block number, blocks from the beginning are returned.
106
- */
107
- getBlocks(from: number, limit: number): Promise<L1Published<L2Block>[]>;
108
- getBlockHeaders(from: number, limit: number): Promise<BlockHeader[]>;
109
- /**
110
- * Gets a tx effect.
111
- * @param txHash - The txHash of the tx effect.
112
- * @returns The requested tx effect.
113
- */
114
- getTxEffect(txHash: TxHash): Promise<InBlock<TxEffect> | undefined>;
115
- /**
116
- * Gets a receipt of a settled tx.
117
- * @param txHash - The hash of a tx we try to get the receipt for.
118
- * @returns The requested tx receipt (or undefined if not found).
119
- */
120
- getSettledTxReceipt(txHash: TxHash): Promise<TxReceipt | undefined>;
121
- /**
122
- * Gets L1 to L2 message (to be) included in a given block.
123
- * @param blockNumber - L2 block number to get messages for.
124
- * @returns The L1 to L2 messages/leaves of the messages subtree (throws if not found).
125
- */
126
- getL1ToL2Messages(blockNumber: bigint): Promise<Fr[]>;
127
- /**
128
- * Retrieves all private logs from up to `limit` blocks, starting from the block number `from`.
129
- * @param from - The block number from which to begin retrieving logs.
130
- * @param limit - The maximum number of blocks to retrieve logs from.
131
- * @returns An array of private logs from the specified range of blocks.
132
- */
133
- getPrivateLogs(from: number, limit: number): Promise<PrivateLog[]>;
134
- /**
135
- * Gets all logs that match any of the received tags (i.e. logs with their first field equal to a tag).
136
- * @param tags - The tags to filter the logs by.
137
- * @returns For each received tag, an array of matching logs is returned. An empty array implies no logs match
138
- * that tag.
139
- */
140
- getLogsByTags(tags: Fr[]): Promise<TxScopedL2Log[][]>;
141
- /**
142
- * Gets public logs based on the provided filter.
143
- * @param filter - The filter to apply to the logs.
144
- * @returns The requested logs.
145
- * @remarks Works by doing an intersection of all params in the filter.
146
- */
147
- getPublicLogs(filter: LogFilter): Promise<GetPublicLogsResponse>;
148
- /**
149
- * Gets contract class logs based on the provided filter.
150
- * NB: clone of the above fn, but for contract class logs
151
- * @param filter - The filter to apply to the logs.
152
- * @returns The requested logs.
153
- * @remarks Works by doing an intersection of all params in the filter.
154
- */
155
- getContractClassLogs(filter: LogFilter): Promise<GetContractClassLogsResponse>;
156
- getLastBlockNumber(): number;
157
- /**
158
- * Gets the number of the latest L2 block processed.
159
- * @returns The number of the latest L2 block processed.
160
- */
161
- getSynchedL2BlockNumber(): Promise<number>;
162
- getProvenL2BlockNumber(): Promise<number>;
163
- setProvenL2BlockNumber(l2BlockNumber: number): Promise<void>;
164
- setBlockSynchedL1BlockNumber(l1BlockNumber: bigint): Promise<void>;
165
- setMessageSynchedL1BlockNumber(l1BlockNumber: bigint): Promise<void>;
166
- getSynchPoint(): Promise<ArchiverL1SynchPoint>;
167
- getContractFunctionName(_address: AztecAddress, selector: FunctionSelector): Promise<string | undefined>;
168
- registerContractFunctionSignatures(_address: AztecAddress, signatures: string[]): Promise<void>;
169
- estimateSize(): Promise<{
170
- mappingSize: number;
171
- actualSize: number;
172
- numItems: number;
173
- }>;
174
- }
175
- //# sourceMappingURL=memory_archiver_store.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"memory_archiver_store.d.ts","sourceRoot":"","sources":["../../../src/archiver/memory_archiver_store/memory_archiver_store.ts"],"names":[],"mappings":"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"}