@aztec/archiver 0.0.1-commit.b6e433891 → 0.0.1-commit.b9865e97

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 (121) hide show
  1. package/README.md +19 -11
  2. package/dest/archiver.d.ts +53 -15
  3. package/dest/archiver.d.ts.map +1 -1
  4. package/dest/archiver.js +248 -75
  5. package/dest/config.d.ts +6 -3
  6. package/dest/config.d.ts.map +1 -1
  7. package/dest/config.js +22 -16
  8. package/dest/errors.d.ts +44 -10
  9. package/dest/errors.d.ts.map +1 -1
  10. package/dest/errors.js +66 -12
  11. package/dest/factory.d.ts +13 -7
  12. package/dest/factory.d.ts.map +1 -1
  13. package/dest/factory.js +37 -25
  14. package/dest/index.d.ts +11 -3
  15. package/dest/index.d.ts.map +1 -1
  16. package/dest/index.js +10 -2
  17. package/dest/l1/calldata_retriever.d.ts +2 -1
  18. package/dest/l1/calldata_retriever.d.ts.map +1 -1
  19. package/dest/l1/calldata_retriever.js +15 -5
  20. package/dest/l1/data_retrieval.d.ts +19 -10
  21. package/dest/l1/data_retrieval.d.ts.map +1 -1
  22. package/dest/l1/data_retrieval.js +25 -32
  23. package/dest/l1/trace_tx.d.ts +12 -66
  24. package/dest/l1/trace_tx.d.ts.map +1 -1
  25. package/dest/l1/validate_historical_logs.d.ts +23 -0
  26. package/dest/l1/validate_historical_logs.d.ts.map +1 -0
  27. package/dest/l1/validate_historical_logs.js +108 -0
  28. package/dest/modules/contract_data_source_adapter.d.ts +25 -0
  29. package/dest/modules/contract_data_source_adapter.d.ts.map +1 -0
  30. package/dest/modules/contract_data_source_adapter.js +40 -0
  31. package/dest/modules/data_source_base.d.ts +71 -47
  32. package/dest/modules/data_source_base.d.ts.map +1 -1
  33. package/dest/modules/data_source_base.js +269 -137
  34. package/dest/modules/data_store_updater.d.ts +30 -13
  35. package/dest/modules/data_store_updater.d.ts.map +1 -1
  36. package/dest/modules/data_store_updater.js +166 -116
  37. package/dest/modules/instrumentation.d.ts +7 -2
  38. package/dest/modules/instrumentation.d.ts.map +1 -1
  39. package/dest/modules/instrumentation.js +25 -7
  40. package/dest/modules/l1_synchronizer.d.ts +11 -6
  41. package/dest/modules/l1_synchronizer.d.ts.map +1 -1
  42. package/dest/modules/l1_synchronizer.js +408 -211
  43. package/dest/modules/outbox_trees_resolver.d.ts +62 -0
  44. package/dest/modules/outbox_trees_resolver.d.ts.map +1 -0
  45. package/dest/modules/outbox_trees_resolver.js +162 -0
  46. package/dest/modules/validation.d.ts +4 -3
  47. package/dest/modules/validation.d.ts.map +1 -1
  48. package/dest/modules/validation.js +6 -6
  49. package/dest/store/block_store.d.ts +165 -66
  50. package/dest/store/block_store.d.ts.map +1 -1
  51. package/dest/store/block_store.js +648 -233
  52. package/dest/store/contract_class_store.d.ts +17 -4
  53. package/dest/store/contract_class_store.d.ts.map +1 -1
  54. package/dest/store/contract_class_store.js +24 -68
  55. package/dest/store/contract_instance_store.d.ts +28 -1
  56. package/dest/store/contract_instance_store.d.ts.map +1 -1
  57. package/dest/store/contract_instance_store.js +37 -2
  58. package/dest/store/data_stores.d.ts +68 -0
  59. package/dest/store/data_stores.d.ts.map +1 -0
  60. package/dest/store/data_stores.js +54 -0
  61. package/dest/store/function_names_cache.d.ts +17 -0
  62. package/dest/store/function_names_cache.d.ts.map +1 -0
  63. package/dest/store/function_names_cache.js +30 -0
  64. package/dest/store/l2_tips_cache.d.ts +13 -7
  65. package/dest/store/l2_tips_cache.d.ts.map +1 -1
  66. package/dest/store/l2_tips_cache.js +13 -76
  67. package/dest/store/log_store.d.ts +42 -40
  68. package/dest/store/log_store.d.ts.map +1 -1
  69. package/dest/store/log_store.js +257 -480
  70. package/dest/store/log_store_codec.d.ts +70 -0
  71. package/dest/store/log_store_codec.d.ts.map +1 -0
  72. package/dest/store/log_store_codec.js +101 -0
  73. package/dest/store/message_store.d.ts +9 -3
  74. package/dest/store/message_store.d.ts.map +1 -1
  75. package/dest/store/message_store.js +39 -10
  76. package/dest/test/fake_l1_state.d.ts +15 -3
  77. package/dest/test/fake_l1_state.d.ts.map +1 -1
  78. package/dest/test/fake_l1_state.js +80 -18
  79. package/dest/test/mock_l1_to_l2_message_source.d.ts +1 -1
  80. package/dest/test/mock_l1_to_l2_message_source.d.ts.map +1 -1
  81. package/dest/test/mock_l1_to_l2_message_source.js +2 -1
  82. package/dest/test/mock_l2_block_source.d.ts +51 -50
  83. package/dest/test/mock_l2_block_source.d.ts.map +1 -1
  84. package/dest/test/mock_l2_block_source.js +244 -181
  85. package/dest/test/noop_l1_archiver.d.ts +10 -6
  86. package/dest/test/noop_l1_archiver.d.ts.map +1 -1
  87. package/dest/test/noop_l1_archiver.js +22 -9
  88. package/package.json +14 -14
  89. package/src/archiver.ts +315 -82
  90. package/src/config.ts +25 -19
  91. package/src/errors.ts +103 -18
  92. package/src/factory.ts +49 -25
  93. package/src/index.ts +18 -2
  94. package/src/l1/calldata_retriever.ts +16 -5
  95. package/src/l1/data_retrieval.ts +36 -45
  96. package/src/l1/validate_historical_logs.ts +140 -0
  97. package/src/modules/contract_data_source_adapter.ts +55 -0
  98. package/src/modules/data_source_base.ts +341 -179
  99. package/src/modules/data_store_updater.ts +201 -147
  100. package/src/modules/instrumentation.ts +28 -8
  101. package/src/modules/l1_synchronizer.ts +538 -248
  102. package/src/modules/outbox_trees_resolver.ts +199 -0
  103. package/src/modules/validation.ts +10 -9
  104. package/src/store/block_store.ts +807 -285
  105. package/src/store/contract_class_store.ts +31 -103
  106. package/src/store/contract_instance_store.ts +51 -5
  107. package/src/store/data_stores.ts +104 -0
  108. package/src/store/function_names_cache.ts +37 -0
  109. package/src/store/l2_tips_cache.ts +16 -70
  110. package/src/store/log_store.ts +295 -652
  111. package/src/store/log_store_codec.ts +132 -0
  112. package/src/store/message_store.ts +43 -12
  113. package/src/structs/inbox_message.ts +1 -1
  114. package/src/test/fake_l1_state.ts +99 -27
  115. package/src/test/mock_l1_to_l2_message_source.ts +1 -0
  116. package/src/test/mock_l2_block_source.ts +299 -232
  117. package/src/test/noop_l1_archiver.ts +42 -9
  118. package/dest/store/kv_archiver_store.d.ts +0 -367
  119. package/dest/store/kv_archiver_store.d.ts.map +0 -1
  120. package/dest/store/kv_archiver_store.js +0 -481
  121. package/src/store/kv_archiver_store.ts +0 -697
@@ -1,736 +1,379 @@
1
1
  import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
2
- import { BlockNumber } from '@aztec/foundation/branded-types';
3
- import { compactArray, filterAsync } from '@aztec/foundation/collection';
4
2
  import { Fr } from '@aztec/foundation/curves/bn254';
5
3
  import { createLogger } from '@aztec/foundation/log';
6
- import { BufferReader, numToUInt32BE } from '@aztec/foundation/serialize';
7
4
  import type { AztecAsyncKVStore, AztecAsyncMap } from '@aztec/kv-store';
8
- import type { AztecAddress } from '@aztec/stdlib/aztec-address';
9
- import { BlockHash, L2Block } from '@aztec/stdlib/block';
5
+ import type { BlockHash, L2Block } from '@aztec/stdlib/block';
10
6
  import { MAX_LOGS_PER_TAG } from '@aztec/stdlib/interfaces/api-limit';
11
- import type { GetContractClassLogsResponse, GetPublicLogsResponse } from '@aztec/stdlib/interfaces/client';
12
- import {
13
- ContractClassLog,
14
- ExtendedContractClassLog,
15
- ExtendedPublicLog,
16
- type LogFilter,
17
- LogId,
18
- PublicLog,
19
- type SiloedTag,
7
+ import type {
8
+ LogCursor,
9
+ LogResult,
10
+ PrivateLogsQuery,
11
+ PublicLogsQuery,
12
+ SiloedTag,
20
13
  Tag,
21
- TxScopedL2Log,
14
+ TagQuery,
22
15
  } from '@aztec/stdlib/logs';
23
16
  import { TxHash } from '@aztec/stdlib/tx';
24
17
 
25
- import { OutOfOrderLogInsertionError } from '../errors.js';
26
18
  import type { BlockStore } from './block_store.js';
19
+ import {
20
+ decodeKeyTail,
21
+ decodeValue,
22
+ encodeKey,
23
+ encodePublicPrefix,
24
+ encodeValue,
25
+ endOfTagRange,
26
+ endOfTxRange,
27
+ fieldHex,
28
+ incKey,
29
+ } from './log_store_codec.js';
27
30
 
28
31
  /**
29
- * A store for logs
32
+ * Indexes every emitted private and public log under a composite hex-string key
33
+ * `[contractAddress (public only)]-tag-blockNumber-txIndexWithinBlock-logIndexWithinTx`,
34
+ * where each numeric segment is zero-padded to 8 lowercase hex digits (4 bytes BE) and
35
+ * `contractAddress` / `tag` are the bare 64-hex-char field representations (no `0x` prefix). The
36
+ * fixed-width zero-padded hex segments sort lexicographically in the same order as the canonical
37
+ * `(contract, tag, blockNumber, txIndexWithinBlock, logIndexWithinTx)` tuple, so a single ordered
38
+ * range scan answers every {@link PrivateLogsQuery} / {@link PublicLogsQuery}.
39
+ *
40
+ * Per-block secondary indices (`#privateKeysByBlock`, `#publicKeysByBlock`) record the exact primary
41
+ * keys written for each block so {@link deleteLogs} can drop them on reorg without having to range
42
+ * scan by block (block isn't the leading key segment).
43
+ *
44
+ * Contract-class logs are no longer stored or served by the log store.
30
45
  */
31
46
  export class LogStore {
32
- // `tag` --> private logs
33
- #privateLogsByTag: AztecAsyncMap<string, Buffer[]>;
34
- // `{contractAddress}_${tag}` --> public logs
35
- #publicLogsByContractAndTag: AztecAsyncMap<string, Buffer[]>;
36
- #privateLogKeysByBlock: AztecAsyncMap<number, string[]>;
37
- #publicLogKeysByBlock: AztecAsyncMap<number, string[]>;
38
- #publicLogsByBlock: AztecAsyncMap<number, Buffer>;
39
- #contractClassLogsByBlock: AztecAsyncMap<number, Buffer>;
40
- #logsMaxPageSize: number;
47
+ /** Primary map: composite private key (tag + tail = 96 hex chars + separators) -> serialized {@link StoredLogValue}. */
48
+ #privateLogs: AztecAsyncMap<string, Buffer>;
49
+ /** Primary map: composite public key (contract + tag + tail) -> serialized {@link StoredLogValue}. */
50
+ #publicLogs: AztecAsyncMap<string, Buffer>;
51
+
52
+ /** Secondary deletion index: blockNumber -> the exact primary keys written for that block. */
53
+ #privateKeysByBlock: AztecAsyncMap<number, string[]>;
54
+ #publicKeysByBlock: AztecAsyncMap<number, string[]>;
55
+
41
56
  #log = createLogger('archiver:log_store');
42
57
 
58
+ /**
59
+ * @param genesisBlockHash - Hash of the synthetic genesis block. During early sync the PXE anchors to
60
+ * genesis and passes its hash as a query `referenceBlock`; since the archiver never indexes the
61
+ * genesis block, the store recognizes this hash directly and resolves it to the genesis block number
62
+ * rather than mistaking it for a reorg.
63
+ */
43
64
  constructor(
44
65
  private db: AztecAsyncKVStore,
45
66
  private blockStore: BlockStore,
46
- logsMaxPageSize: number = 1000,
67
+ private readonly genesisBlockHash: BlockHash,
47
68
  ) {
48
- this.#privateLogsByTag = db.openMap('archiver_private_tagged_logs_by_tag');
49
- this.#publicLogsByContractAndTag = db.openMap('archiver_public_tagged_logs_by_tag');
50
- this.#privateLogKeysByBlock = db.openMap('archiver_private_log_keys_by_block');
51
- this.#publicLogKeysByBlock = db.openMap('archiver_public_log_keys_by_block');
52
- this.#publicLogsByBlock = db.openMap('archiver_public_logs_by_block');
53
- this.#contractClassLogsByBlock = db.openMap('archiver_contract_class_logs_by_block');
54
-
55
- this.#logsMaxPageSize = logsMaxPageSize;
69
+ this.#privateLogs = db.openMap('archiver_private_logs');
70
+ this.#publicLogs = db.openMap('archiver_public_logs');
71
+ this.#privateKeysByBlock = db.openMap('archiver_private_log_keys_by_block');
72
+ this.#publicKeysByBlock = db.openMap('archiver_public_log_keys_by_block');
56
73
  }
57
74
 
58
75
  /**
59
- * Extracts tagged logs from a single block, grouping them into private and public maps.
76
+ * Indexes every emitted private and public log from the given blocks. Wraps the write in a single
77
+ * `db.transactionAsync` so the primary entries and the per-block secondary indices stay consistent.
60
78
  *
61
- * @param block - The L2 block to extract logs from.
62
- * @returns An object containing the private and public tagged logs for the block.
63
- */
64
- #extractTaggedLogsFromBlock(block: L2Block) {
65
- // SiloedTag (as string) -> array of log buffers.
66
- const privateTaggedLogs = new Map<string, Buffer[]>();
67
- // "{contractAddress}_{tag}" (as string) -> array of log buffers.
68
- const publicTaggedLogs = new Map<string, Buffer[]>();
69
-
70
- block.body.txEffects.forEach(txEffect => {
71
- const txHash = txEffect.txHash;
72
-
73
- txEffect.privateLogs.forEach(log => {
74
- // Private logs use SiloedTag (already siloed by kernel)
75
- const tag = log.fields[0];
76
- this.#log.debug(`Found private log with tag ${tag.toString()} in block ${block.number}`);
77
-
78
- const currentLogs = privateTaggedLogs.get(tag.toString()) ?? [];
79
- currentLogs.push(
80
- new TxScopedL2Log(
81
- txHash,
82
- block.number,
83
- block.timestamp,
84
- log.getEmittedFields(),
85
- txEffect.noteHashes,
86
- txEffect.nullifiers[0],
87
- ).toBuffer(),
88
- );
89
- privateTaggedLogs.set(tag.toString(), currentLogs);
90
- });
91
-
92
- txEffect.publicLogs.forEach(log => {
93
- // Public logs use Tag directly (not siloed) and are stored with contract address
94
- const tag = log.fields[0];
95
- const contractAddress = log.contractAddress;
96
- const key = `${contractAddress.toString()}_${tag.toString()}`;
97
- this.#log.debug(
98
- `Found public log with tag ${tag.toString()} from contract ${contractAddress.toString()} in block ${block.number}`,
99
- );
100
-
101
- const currentLogs = publicTaggedLogs.get(key) ?? [];
102
- currentLogs.push(
103
- new TxScopedL2Log(
104
- txHash,
105
- block.number,
106
- block.timestamp,
107
- log.getEmittedFields(),
108
- txEffect.noteHashes,
109
- txEffect.nullifiers[0],
110
- ).toBuffer(),
111
- );
112
- publicTaggedLogs.set(key, currentLogs);
113
- });
114
- });
115
-
116
- return { privateTaggedLogs, publicTaggedLogs };
117
- }
118
-
119
- /**
120
- * Extracts and aggregates tagged logs from a list of blocks.
121
- * @param blocks - The blocks to extract logs from.
122
- * @returns A map from tag (as string) to an array of serialized private logs belonging to that tag, and a map from
123
- * "{contractAddress}_{tag}" (as string) to an array of serialized public logs belonging to that key.
79
+ * A block is only ever added once; on reorg the archiver calls {@link deleteLogs} first, so we write
80
+ * the secondary index entries with a plain `set` (overwrite) rather than read-modify-append.
124
81
  */
125
- #extractTaggedLogs(blocks: L2Block[]): {
126
- privateTaggedLogs: Map<string, Buffer[]>;
127
- publicTaggedLogs: Map<string, Buffer[]>;
128
- } {
129
- const taggedLogsInBlocks = blocks.map(block => this.#extractTaggedLogsFromBlock(block));
130
-
131
- // Now we merge the maps from each block into a single map.
132
- const privateTaggedLogs = taggedLogsInBlocks.reduce((acc, { privateTaggedLogs }) => {
133
- for (const [tag, logs] of privateTaggedLogs.entries()) {
134
- const currentLogs = acc.get(tag) ?? [];
135
- acc.set(tag, currentLogs.concat(logs));
136
- }
137
- return acc;
138
- }, new Map<string, Buffer[]>());
139
-
140
- const publicTaggedLogs = taggedLogsInBlocks.reduce((acc, { publicTaggedLogs }) => {
141
- for (const [key, logs] of publicTaggedLogs.entries()) {
142
- const currentLogs = acc.get(key) ?? [];
143
- acc.set(key, currentLogs.concat(logs));
144
- }
145
- return acc;
146
- }, new Map<string, Buffer[]>());
147
-
148
- return { privateTaggedLogs, publicTaggedLogs };
149
- }
150
-
151
- async #addPrivateLogs(blocks: L2Block[]): Promise<void> {
152
- const newBlocks = await filterAsync(
153
- blocks,
154
- async block => !(await this.#privateLogKeysByBlock.hasAsync(block.number)),
155
- );
156
-
157
- const { privateTaggedLogs } = this.#extractTaggedLogs(newBlocks);
158
- const keysOfPrivateLogsToUpdate = Array.from(privateTaggedLogs.keys());
159
-
160
- const currentPrivateTaggedLogs = await Promise.all(
161
- keysOfPrivateLogsToUpdate.map(async key => ({
162
- tag: key,
163
- logBuffers: await this.#privateLogsByTag.getAsync(key),
164
- })),
165
- );
166
-
167
- for (const taggedLogBuffer of currentPrivateTaggedLogs) {
168
- if (taggedLogBuffer.logBuffers && taggedLogBuffer.logBuffers.length > 0) {
169
- const newLogs = privateTaggedLogs.get(taggedLogBuffer.tag)!;
170
- if (newLogs.length === 0) {
171
- continue;
172
- }
173
- const lastExisting = TxScopedL2Log.fromBuffer(taggedLogBuffer.logBuffers.at(-1)!);
174
- const firstNew = TxScopedL2Log.fromBuffer(newLogs[0]);
175
- if (lastExisting.blockNumber > firstNew.blockNumber) {
176
- throw new OutOfOrderLogInsertionError(
177
- 'private',
178
- taggedLogBuffer.tag,
179
- lastExisting.blockNumber,
180
- firstNew.blockNumber,
181
- );
82
+ addLogs(blocks: L2Block[]): Promise<boolean> {
83
+ return this.db.transactionAsync(async () => {
84
+ for (const block of blocks) {
85
+ const blockHash = await block.hash();
86
+ const blockNumber = block.number;
87
+ const blockTimestamp = block.timestamp;
88
+
89
+ const privateKeys: string[] = [];
90
+ const privateValues: Buffer[] = [];
91
+ const publicKeys: string[] = [];
92
+ const publicValues: Buffer[] = [];
93
+
94
+ for (let txIndexWithinBlock = 0; txIndexWithinBlock < block.body.txEffects.length; txIndexWithinBlock++) {
95
+ const txEffect = block.body.txEffects[txIndexWithinBlock];
96
+ const txHash = txEffect.txHash;
97
+
98
+ // Private and public log indices are counted independently per tx, each starting at 0.
99
+ let privateLogIndexWithinTx = 0;
100
+ let publicLogIndexWithinTx = 0;
101
+
102
+ for (const log of txEffect.privateLogs) {
103
+ const tagHex = fieldHex(log.fields[0]);
104
+ const key = encodeKey(tagHex, blockNumber, txIndexWithinBlock, privateLogIndexWithinTx);
105
+ const value = encodeValue({
106
+ txHash,
107
+ blockHash,
108
+ blockTimestamp,
109
+ logData: log.getEmittedFields(),
110
+ });
111
+ privateKeys.push(key);
112
+ privateValues.push(value);
113
+ privateLogIndexWithinTx++;
114
+ }
115
+
116
+ for (const log of txEffect.publicLogs) {
117
+ const contractHex = fieldHex(log.contractAddress);
118
+ const tagHex = fieldHex(log.fields[0]);
119
+ const key = encodeKey(
120
+ encodePublicPrefix(contractHex, tagHex),
121
+ blockNumber,
122
+ txIndexWithinBlock,
123
+ publicLogIndexWithinTx,
124
+ );
125
+ const value = encodeValue({
126
+ txHash,
127
+ blockHash,
128
+ blockTimestamp,
129
+ logData: log.getEmittedFields(),
130
+ });
131
+ publicKeys.push(key);
132
+ publicValues.push(value);
133
+ publicLogIndexWithinTx++;
134
+ }
182
135
  }
183
- privateTaggedLogs.set(taggedLogBuffer.tag, taggedLogBuffer.logBuffers.concat(newLogs));
184
- }
185
- }
186
136
 
187
- for (const block of newBlocks) {
188
- const privateTagsInBlock: string[] = [];
189
- for (const [tag, logs] of privateTaggedLogs.entries()) {
190
- await this.#privateLogsByTag.set(tag, logs);
191
- privateTagsInBlock.push(tag);
192
- }
193
- await this.#privateLogKeysByBlock.set(block.number, privateTagsInBlock);
194
- }
195
- }
196
-
197
- async #addPublicLogs(blocks: L2Block[]): Promise<void> {
198
- const newBlocks = await filterAsync(
199
- blocks,
200
- async block => !(await this.#publicLogKeysByBlock.hasAsync(block.number)),
201
- );
202
-
203
- const { publicTaggedLogs } = this.#extractTaggedLogs(newBlocks);
204
- const keysOfPublicLogsToUpdate = Array.from(publicTaggedLogs.keys());
205
-
206
- const currentPublicTaggedLogs = await Promise.all(
207
- keysOfPublicLogsToUpdate.map(async key => ({
208
- tag: key,
209
- logBuffers: await this.#publicLogsByContractAndTag.getAsync(key),
210
- })),
211
- );
212
-
213
- for (const taggedLogBuffer of currentPublicTaggedLogs) {
214
- if (taggedLogBuffer.logBuffers && taggedLogBuffer.logBuffers.length > 0) {
215
- const newLogs = publicTaggedLogs.get(taggedLogBuffer.tag)!;
216
- if (newLogs.length === 0) {
217
- continue;
137
+ for (let i = 0; i < privateKeys.length; i++) {
138
+ await this.#privateLogs.set(privateKeys[i], privateValues[i]);
218
139
  }
219
- const lastExisting = TxScopedL2Log.fromBuffer(taggedLogBuffer.logBuffers.at(-1)!);
220
- const firstNew = TxScopedL2Log.fromBuffer(newLogs[0]);
221
- if (lastExisting.blockNumber > firstNew.blockNumber) {
222
- throw new OutOfOrderLogInsertionError(
223
- 'public',
224
- taggedLogBuffer.tag,
225
- lastExisting.blockNumber,
226
- firstNew.blockNumber,
227
- );
140
+ for (let i = 0; i < publicKeys.length; i++) {
141
+ await this.#publicLogs.set(publicKeys[i], publicValues[i]);
228
142
  }
229
- publicTaggedLogs.set(taggedLogBuffer.tag, taggedLogBuffer.logBuffers.concat(newLogs));
230
- }
231
- }
232
143
 
233
- for (const block of newBlocks) {
234
- const blockHash = await block.hash();
235
- const publicTagsInBlock: string[] = [];
236
- for (const [tag, logs] of publicTaggedLogs.entries()) {
237
- await this.#publicLogsByContractAndTag.set(tag, logs);
238
- publicTagsInBlock.push(tag);
239
- }
240
- await this.#publicLogKeysByBlock.set(block.number, publicTagsInBlock);
241
-
242
- const publicLogsInBlock = block.body.txEffects
243
- .map((txEffect, txIndex) =>
244
- [
245
- numToUInt32BE(txIndex),
246
- txEffect.txHash.toBuffer(),
247
- numToUInt32BE(txEffect.publicLogs.length),
248
- txEffect.publicLogs.map(log => log.toBuffer()),
249
- ].flat(),
250
- )
251
- .flat();
252
-
253
- await this.#publicLogsByBlock.set(block.number, this.#packWithBlockHash(blockHash, publicLogsInBlock));
254
- }
255
- }
256
-
257
- async #addContractClassLogs(blocks: L2Block[]): Promise<void> {
258
- const newBlocks = await filterAsync(
259
- blocks,
260
- async block => !(await this.#contractClassLogsByBlock.hasAsync(block.number)),
261
- );
262
-
263
- for (const block of newBlocks) {
264
- const blockHash = await block.hash();
265
-
266
- const contractClassLogsInBlock = block.body.txEffects
267
- .map((txEffect, txIndex) =>
268
- [
269
- numToUInt32BE(txIndex),
270
- txEffect.txHash.toBuffer(),
271
- numToUInt32BE(txEffect.contractClassLogs.length),
272
- txEffect.contractClassLogs.map(log => log.toBuffer()),
273
- ].flat(),
274
- )
275
- .flat();
276
-
277
- await this.#contractClassLogsByBlock.set(
278
- block.number,
279
- this.#packWithBlockHash(blockHash, contractClassLogsInBlock),
280
- );
281
- }
282
- }
144
+ await this.#privateKeysByBlock.set(blockNumber, privateKeys);
145
+ await this.#publicKeysByBlock.set(blockNumber, publicKeys);
283
146
 
284
- /**
285
- * Append new logs to the store's list.
286
- * @param blocks - The blocks for which to add the logs.
287
- * @returns True if the operation is successful.
288
- */
289
- addLogs(blocks: L2Block[]): Promise<boolean> {
290
- return this.db.transactionAsync(async () => {
291
- await Promise.all([
292
- this.#addPrivateLogs(blocks),
293
- this.#addPublicLogs(blocks),
294
- this.#addContractClassLogs(blocks),
295
- ]);
147
+ this.#log.debug(`Indexed logs for block ${blockNumber}`, {
148
+ blockNumber,
149
+ privateCount: privateKeys.length,
150
+ publicCount: publicKeys.length,
151
+ });
152
+ }
296
153
  return true;
297
154
  });
298
155
  }
299
156
 
300
- #packWithBlockHash(blockHash: BlockHash, data: Buffer<ArrayBufferLike>[]): Buffer<ArrayBufferLike> {
301
- return Buffer.concat([blockHash.toBuffer(), ...data]);
302
- }
303
-
304
- #unpackBlockHash(reader: BufferReader): BlockHash {
305
- const blockHash = reader.remainingBytes() > 0 ? reader.readObject(Fr) : undefined;
306
-
307
- if (!blockHash) {
308
- throw new Error('Failed to read block hash from log entry buffer');
309
- }
310
-
311
- return new BlockHash(blockHash);
312
- }
313
-
157
+ /**
158
+ * Deletes every log indexed under any of the given blocks. Secondary-index driven, so it doesn't
159
+ * have to range-scan the primary maps.
160
+ */
314
161
  deleteLogs(blocks: L2Block[]): Promise<boolean> {
315
162
  return this.db.transactionAsync(async () => {
316
- const blockNumbers = new Set(blocks.map(block => block.number));
317
- const firstBlockToDelete = Math.min(...blockNumbers);
318
-
319
- // Collect all unique private tags across all blocks being deleted
320
- const allPrivateTags = new Set(
321
- compactArray(await Promise.all(blocks.map(block => this.#privateLogKeysByBlock.getAsync(block.number)))).flat(),
322
- );
323
-
324
- // Trim private logs: for each tag, delete all instances including and after the first block being deleted.
325
- // This hinges on the invariant that logs for a given tag are always inserted in order of block number, which is enforced in #addPrivateLogs.
326
- for (const tag of allPrivateTags) {
327
- const existing = await this.#privateLogsByTag.getAsync(tag);
328
- if (existing === undefined || existing.length === 0) {
329
- continue;
163
+ for (const block of blocks) {
164
+ const blockNumber = block.number;
165
+
166
+ const [privateKeys, publicKeys] = await Promise.all([
167
+ this.#privateKeysByBlock.getAsync(blockNumber),
168
+ this.#publicKeysByBlock.getAsync(blockNumber),
169
+ ]);
170
+
171
+ if (privateKeys) {
172
+ for (const key of privateKeys) {
173
+ await this.#privateLogs.delete(key);
174
+ }
175
+ await this.#privateKeysByBlock.delete(blockNumber);
330
176
  }
331
- const lastIndexToKeep = existing.findLastIndex(
332
- buf => TxScopedL2Log.getBlockNumberFromBuffer(buf) < firstBlockToDelete,
333
- );
334
- const remaining = existing.slice(0, lastIndexToKeep + 1);
335
- await (remaining.length > 0 ? this.#privateLogsByTag.set(tag, remaining) : this.#privateLogsByTag.delete(tag));
336
- }
337
-
338
- // Collect all unique public keys across all blocks being deleted
339
- const allPublicKeys = new Set(
340
- compactArray(await Promise.all(blocks.map(block => this.#publicLogKeysByBlock.getAsync(block.number)))).flat(),
341
- );
342
-
343
- // And do the same as we did with private logs
344
- for (const key of allPublicKeys) {
345
- const existing = await this.#publicLogsByContractAndTag.getAsync(key);
346
- if (existing === undefined || existing.length === 0) {
347
- continue;
177
+ if (publicKeys) {
178
+ for (const key of publicKeys) {
179
+ await this.#publicLogs.delete(key);
180
+ }
181
+ await this.#publicKeysByBlock.delete(blockNumber);
348
182
  }
349
- const lastIndexToKeep = existing.findLastIndex(
350
- buf => TxScopedL2Log.getBlockNumberFromBuffer(buf) < firstBlockToDelete,
351
- );
352
- const remaining = existing.slice(0, lastIndexToKeep + 1);
353
- await (remaining.length > 0
354
- ? this.#publicLogsByContractAndTag.set(key, remaining)
355
- : this.#publicLogsByContractAndTag.delete(key));
356
183
  }
357
-
358
- // After trimming the tagged logs, we can delete the block-level keys that track which tags are in which blocks.
359
- await Promise.all(
360
- blocks.map(block =>
361
- Promise.all([
362
- this.#publicLogsByBlock.delete(block.number),
363
- this.#privateLogKeysByBlock.delete(block.number),
364
- this.#publicLogKeysByBlock.delete(block.number),
365
- this.#contractClassLogsByBlock.delete(block.number),
366
- ]),
367
- ),
368
- );
369
-
370
184
  return true;
371
185
  });
372
186
  }
373
187
 
374
- /**
375
- * Gets private logs that match any of the `tags`. For each tag, an array of matching logs is returned. An empty
376
- * array implies no logs match that tag.
377
- * @param tags - The tags to search for.
378
- * @param page - The page number (0-indexed) for pagination.
379
- * @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
380
- * @returns An array of log arrays, one per tag. Returns at most MAX_LOGS_PER_TAG logs per tag per page. If
381
- * MAX_LOGS_PER_TAG logs are returned for a tag, the caller should fetch the next page to check for more logs.
382
- */
383
- async getPrivateLogsByTags(
384
- tags: SiloedTag[],
385
- page: number = 0,
386
- upToBlockNumber?: BlockNumber,
387
- ): Promise<TxScopedL2Log[][]> {
388
- const logs = await Promise.all(tags.map(tag => this.#privateLogsByTag.getAsync(tag.toString())));
389
-
390
- const start = page * MAX_LOGS_PER_TAG;
391
- const end = start + MAX_LOGS_PER_TAG;
392
-
393
- return logs.map(logBuffers => {
394
- const deserialized = logBuffers?.slice(start, end).map(buf => TxScopedL2Log.fromBuffer(buf)) ?? [];
395
- if (upToBlockNumber !== undefined) {
396
- const cutoff = deserialized.findIndex(log => log.blockNumber > upToBlockNumber);
397
- if (cutoff !== -1) {
398
- return deserialized.slice(0, cutoff);
399
- }
400
- }
401
- return deserialized;
402
- });
188
+ /** Returns one inner array per element of `query.tags`, in input order. */
189
+ getPrivateLogsByTags(query: PrivateLogsQuery): Promise<LogResult[][]> {
190
+ LogStore.#validateQuery(query);
191
+ return this.db.transactionAsync(() => this.#runQuery(query, /* contractHex */ undefined));
403
192
  }
404
193
 
405
- /**
406
- * Gets public logs that match any of the `tags` from the specified contract. For each tag, an array of matching
407
- * logs is returned. An empty array implies no logs match that tag.
408
- * @param contractAddress - The contract address to search logs for.
409
- * @param tags - The tags to search for.
410
- * @param page - The page number (0-indexed) for pagination.
411
- * @param upToBlockNumber - If set, only return logs from blocks up to and including this block number.
412
- * @returns An array of log arrays, one per tag. Returns at most MAX_LOGS_PER_TAG logs per tag per page. If
413
- * MAX_LOGS_PER_TAG logs are returned for a tag, the caller should fetch the next page to check for more logs.
414
- */
415
- async getPublicLogsByTagsFromContract(
416
- contractAddress: AztecAddress,
417
- tags: Tag[],
418
- page: number = 0,
419
- upToBlockNumber?: BlockNumber,
420
- ): Promise<TxScopedL2Log[][]> {
421
- const logs = await Promise.all(
422
- tags.map(tag => {
423
- const key = `${contractAddress.toString()}_${tag.value.toString()}`;
424
- return this.#publicLogsByContractAndTag.getAsync(key);
425
- }),
426
- );
427
- const start = page * MAX_LOGS_PER_TAG;
428
- const end = start + MAX_LOGS_PER_TAG;
429
-
430
- return logs.map(logBuffers => {
431
- const deserialized = logBuffers?.slice(start, end).map(buf => TxScopedL2Log.fromBuffer(buf)) ?? [];
432
- if (upToBlockNumber !== undefined) {
433
- const cutoff = deserialized.findIndex(log => log.blockNumber > upToBlockNumber);
434
- if (cutoff !== -1) {
435
- return deserialized.slice(0, cutoff);
436
- }
437
- }
438
- return deserialized;
439
- });
194
+ /** Returns one inner array per element of `query.tags`, in input order. */
195
+ getPublicLogsByTags(query: PublicLogsQuery): Promise<LogResult[][]> {
196
+ LogStore.#validateQuery(query);
197
+ return this.db.transactionAsync(() => this.#runQuery(query, fieldHex(query.contractAddress)));
440
198
  }
441
199
 
442
- /**
443
- * Gets public logs based on the provided filter.
444
- * @param filter - The filter to apply to the logs.
445
- * @returns The requested logs.
446
- */
447
- getPublicLogs(filter: LogFilter): Promise<GetPublicLogsResponse> {
448
- if (filter.afterLog) {
449
- return this.#filterPublicLogsBetweenBlocks(filter);
450
- } else if (filter.txHash) {
451
- return this.#filterPublicLogsOfTx(filter);
452
- } else {
453
- return this.#filterPublicLogsBetweenBlocks(filter);
200
+ static #validateQuery(query: { txHash?: TxHash; fromBlock?: unknown; toBlock?: unknown }): void {
201
+ if (query.txHash !== undefined && (query.fromBlock !== undefined || query.toBlock !== undefined)) {
202
+ throw new Error('`txHash` is mutually exclusive with `fromBlock`/`toBlock`');
454
203
  }
455
204
  }
456
205
 
457
- async #filterPublicLogsOfTx(filter: LogFilter): Promise<GetPublicLogsResponse> {
458
- if (!filter.txHash) {
459
- throw new Error('Missing txHash');
206
+ async #runQuery(query: PrivateLogsQuery | PublicLogsQuery, contractHex: string | undefined): Promise<LogResult[][]> {
207
+ const isPublic = contractHex !== undefined;
208
+ const tags = (query.tags as ReadonlyArray<TagQuery<Tag | SiloedTag>>) ?? [];
209
+ const primaryMap = isPublic ? this.#publicLogs : this.#privateLogs;
210
+
211
+ // referenceBlock reorg check, in-transaction, against the same db the log primary maps live on. The
212
+ // genesis block is a valid anchor during early sync but is synthetic and never indexed in the block
213
+ // store, so resolve it directly to the genesis block number rather than mistaking it for a reorg.
214
+ let referenceBlockNumber: number | undefined;
215
+ if (query.referenceBlock) {
216
+ if (query.referenceBlock.equals(this.genesisBlockHash)) {
217
+ referenceBlockNumber = INITIAL_L2_BLOCK_NUM - 1;
218
+ } else {
219
+ const refBlk = await this.blockStore.getBlockData({ hash: query.referenceBlock });
220
+ if (!refBlk) {
221
+ throw new Error(
222
+ `Reference block ${query.referenceBlock.toString()} not found in the node. This might indicate a reorg has occurred.`,
223
+ );
224
+ }
225
+ referenceBlockNumber = refBlk.header.globalVariables.blockNumber;
226
+ }
460
227
  }
461
228
 
462
- const [blockNumber, txIndex] = (await this.blockStore.getTxLocation(filter.txHash)) ?? [];
463
- if (typeof blockNumber !== 'number' || typeof txIndex !== 'number') {
464
- return { logs: [], maxLogsHit: false };
229
+ // Compute the exclusive upper-block bound across `toBlock` and `referenceBlock`.
230
+ // `toBlock` is already exclusive; `referenceBlock` caps inclusively, so its exclusive form is +1.
231
+ let upperExclusive: number | undefined;
232
+ if (query.toBlock !== undefined) {
233
+ upperExclusive = query.toBlock;
234
+ }
235
+ if (referenceBlockNumber !== undefined) {
236
+ const refExclusive = referenceBlockNumber + 1;
237
+ upperExclusive = upperExclusive === undefined ? refExclusive : Math.min(upperExclusive, refExclusive);
465
238
  }
466
239
 
467
- const buffer = (await this.#publicLogsByBlock.getAsync(blockNumber)) ?? Buffer.alloc(0);
468
- const publicLogsInBlock: { txHash: TxHash; logs: PublicLog[] }[] = [];
469
- const reader = new BufferReader(buffer);
470
-
471
- const blockHash = this.#unpackBlockHash(reader);
472
-
473
- while (reader.remainingBytes() > 0) {
474
- const indexOfTx = reader.readNumber();
475
- const txHash = reader.readObject(TxHash);
476
- const numLogsInTx = reader.readNumber();
477
- publicLogsInBlock[indexOfTx] = { txHash, logs: [] };
478
- for (let i = 0; i < numLogsInTx; i++) {
479
- publicLogsInBlock[indexOfTx].logs.push(reader.readObject(PublicLog));
240
+ // Resolve txHash -> (blockNumber, txIndexInBlock) once for the whole query.
241
+ let txLocation: [number, number] | undefined;
242
+ if (query.txHash) {
243
+ const loc = await this.blockStore.getTxLocation(query.txHash);
244
+ if (!loc) {
245
+ return tags.map(() => []);
246
+ }
247
+ txLocation = loc;
248
+ if (upperExclusive !== undefined && txLocation[0] >= upperExclusive) {
249
+ return tags.map(() => []);
480
250
  }
481
251
  }
482
252
 
483
- const txData = publicLogsInBlock[txIndex];
484
-
485
- const logs: ExtendedPublicLog[] = [];
486
- const maxLogsHit = this.#accumulatePublicLogs(
487
- logs,
488
- blockNumber,
489
- blockHash,
490
- txIndex,
491
- txData.txHash,
492
- txData.logs,
493
- filter,
494
- );
495
-
496
- return { logs, maxLogsHit };
497
- }
498
-
499
- async #filterPublicLogsBetweenBlocks(filter: LogFilter): Promise<GetPublicLogsResponse> {
500
- const start =
501
- filter.afterLog?.blockNumber ?? Math.max(filter.fromBlock ?? INITIAL_L2_BLOCK_NUM, INITIAL_L2_BLOCK_NUM);
502
- const end = filter.toBlock;
253
+ const fromBlock = query.fromBlock ?? INITIAL_L2_BLOCK_NUM;
254
+ const includeEffects = query.includeEffects === true;
255
+
256
+ const perTagResults: LogResult[][] = [];
257
+ for (const tagEntry of tags) {
258
+ const { tagHex, afterLog } = normalizeTagEntry(tagEntry);
259
+ const prefix = contractHex !== undefined ? encodePublicPrefix(contractHex, tagHex) : tagHex;
260
+
261
+ const end = txLocation
262
+ ? endOfTxRange(prefix, txLocation[0], txLocation[1])
263
+ : endOfTagRange(prefix, upperExclusive);
264
+
265
+ let start: string;
266
+ if (afterLog) {
267
+ // Cursor wins as the start; `fromBlock` is ignored (fine if the cursor sits below it). The cursor
268
+ // carries `(blockNumber, txIndexWithinBlock, logIndexWithinTx)`, which slot directly into the
269
+ // composite key no tx-hash lookup needed.
270
+ start = incKey(encodeKey(prefix, afterLog.blockNumber, afterLog.txIndexWithinBlock, afterLog.logIndexWithinTx));
271
+ } else if (txLocation) {
272
+ start = encodeKey(prefix, txLocation[0], txLocation[1], 0);
273
+ } else {
274
+ start = encodeKey(prefix, fromBlock, 0, 0);
275
+ }
503
276
 
504
- if (typeof end === 'number' && end < start) {
505
- return {
506
- logs: [],
507
- maxLogsHit: true,
508
- };
277
+ const limit = query.limitPerTag ?? MAX_LOGS_PER_TAG;
278
+ const out: LogResult[] = [];
279
+ for await (const [rawKey, rawVal] of primaryMap.entriesAsync({ start, end, limit })) {
280
+ const tail = decodeKeyTail(rawKey);
281
+ const value = decodeValue(rawVal);
282
+ out.push({
283
+ logData: value.logData,
284
+ blockNumber: tail.blockNumber,
285
+ blockHash: value.blockHash,
286
+ blockTimestamp: value.blockTimestamp,
287
+ txHash: value.txHash,
288
+ txIndexWithinBlock: tail.txIndexWithinBlock,
289
+ logIndexWithinTx: tail.logIndexWithinTx,
290
+ });
291
+ }
292
+ perTagResults.push(out);
509
293
  }
510
294
 
511
- const logs: ExtendedPublicLog[] = [];
512
-
513
- let maxLogsHit = false;
514
- loopOverBlocks: for await (const [blockNumber, logBuffer] of this.#publicLogsByBlock.entriesAsync({ start, end })) {
515
- const publicLogsInBlock: { txHash: TxHash; logs: PublicLog[] }[] = [];
516
- const reader = new BufferReader(logBuffer);
517
-
518
- const blockHash = this.#unpackBlockHash(reader);
519
-
520
- while (reader.remainingBytes() > 0) {
521
- const indexOfTx = reader.readNumber();
522
- const txHash = reader.readObject(TxHash);
523
- const numLogsInTx = reader.readNumber();
524
- publicLogsInBlock[indexOfTx] = { txHash, logs: [] };
525
- for (let i = 0; i < numLogsInTx; i++) {
526
- publicLogsInBlock[indexOfTx].logs.push(reader.readObject(PublicLog));
295
+ if (includeEffects) {
296
+ // Dedupe by txHash across the entire page so a tx with many tagged logs costs one fetch.
297
+ const txHashByKey = new Map<string, TxHash>();
298
+ for (const arr of perTagResults) {
299
+ for (const log of arr) {
300
+ txHashByKey.set(log.txHash.toString(), log.txHash);
527
301
  }
528
302
  }
529
- for (let txIndex = filter.afterLog?.txIndex ?? 0; txIndex < publicLogsInBlock.length; txIndex++) {
530
- const txData = publicLogsInBlock[txIndex];
531
- maxLogsHit = this.#accumulatePublicLogs(
532
- logs,
533
- blockNumber,
534
- blockHash,
535
- txIndex,
536
- txData.txHash,
537
- txData.logs,
538
- filter,
539
- );
540
- if (maxLogsHit) {
541
- this.#log.debug(`Max logs hit at block ${blockNumber}`);
542
- break loopOverBlocks;
303
+ const uniqueTxs = Array.from(txHashByKey.values());
304
+ if (uniqueTxs.length > 0) {
305
+ const effects = await this.blockStore.getNoteHashesAndNullifiers(uniqueTxs);
306
+ const byTxHash = new Map<string, [Fr[], Fr[]]>();
307
+ uniqueTxs.forEach((tx, i) => byTxHash.set(tx.toString(), effects[i]));
308
+ for (let i = 0; i < perTagResults.length; i++) {
309
+ perTagResults[i] = perTagResults[i].map(log => {
310
+ const [noteHashes, nullifiers] = byTxHash.get(log.txHash.toString()) ?? [[], []];
311
+ return { ...log, noteHashes, nullifiers };
312
+ });
543
313
  }
544
314
  }
545
315
  }
546
316
 
547
- return { logs, maxLogsHit };
317
+ return perTagResults;
548
318
  }
549
319
 
550
320
  /**
551
- * Gets contract class logs based on the provided filter.
552
- * @param filter - The filter to apply to the logs.
553
- * @returns The requested logs.
321
+ * Reads back every private log indexed for the given block via the per-block secondary index. Order
322
+ * matches the canonical composite-key order (`tag`, `blockNumber`, `txIndexWithinBlock`,
323
+ * `logIndexWithinTx`). Used by the data-store-updater test suite to verify the indexed-vs-block-body
324
+ * counts without depending on the removed `getPublicLogs(LogFilter)` API.
554
325
  */
555
- getContractClassLogs(filter: LogFilter): Promise<GetContractClassLogsResponse> {
556
- if (filter.afterLog) {
557
- return this.#filterContractClassLogsBetweenBlocks(filter);
558
- } else if (filter.txHash) {
559
- return this.#filterContractClassLogsOfTx(filter);
560
- } else {
561
- return this.#filterContractClassLogsBetweenBlocks(filter);
562
- }
563
- }
564
-
565
- async #filterContractClassLogsOfTx(filter: LogFilter): Promise<GetContractClassLogsResponse> {
566
- if (!filter.txHash) {
567
- throw new Error('Missing txHash');
568
- }
569
-
570
- const [blockNumber, txIndex] = (await this.blockStore.getTxLocation(filter.txHash)) ?? [];
571
- if (typeof blockNumber !== 'number' || typeof txIndex !== 'number') {
572
- return { logs: [], maxLogsHit: false };
573
- }
574
- const contractClassLogsBuffer = (await this.#contractClassLogsByBlock.getAsync(blockNumber)) ?? Buffer.alloc(0);
575
- const contractClassLogsInBlock: { txHash: TxHash; logs: ContractClassLog[] }[] = [];
576
-
577
- const reader = new BufferReader(contractClassLogsBuffer);
578
- const blockHash = this.#unpackBlockHash(reader);
579
-
580
- while (reader.remainingBytes() > 0) {
581
- const indexOfTx = reader.readNumber();
582
- const txHash = reader.readObject(TxHash);
583
- const numLogsInTx = reader.readNumber();
584
- contractClassLogsInBlock[indexOfTx] = { txHash, logs: [] };
585
- for (let i = 0; i < numLogsInTx; i++) {
586
- contractClassLogsInBlock[indexOfTx].logs.push(reader.readObject(ContractClassLog));
587
- }
588
- }
589
-
590
- const txData = contractClassLogsInBlock[txIndex];
591
-
592
- const logs: ExtendedContractClassLog[] = [];
593
- const maxLogsHit = this.#accumulateContractClassLogs(
594
- logs,
595
- blockNumber,
596
- blockHash,
597
- txIndex,
598
- txData.txHash,
599
- txData.logs,
600
- filter,
326
+ getPrivateLogsForBlock(blockNumber: number): Promise<LogResult[]> {
327
+ return this.db.transactionAsync(() =>
328
+ this.#readBlockLogs(this.#privateKeysByBlock, this.#privateLogs, blockNumber),
601
329
  );
602
-
603
- return { logs, maxLogsHit };
604
330
  }
605
331
 
606
- async #filterContractClassLogsBetweenBlocks(filter: LogFilter): Promise<GetContractClassLogsResponse> {
607
- const start =
608
- filter.afterLog?.blockNumber ?? Math.max(filter.fromBlock ?? INITIAL_L2_BLOCK_NUM, INITIAL_L2_BLOCK_NUM);
609
- const end = filter.toBlock;
610
-
611
- if (typeof end === 'number' && end < start) {
612
- return {
613
- logs: [],
614
- maxLogsHit: true,
615
- };
616
- }
617
-
618
- const logs: ExtendedContractClassLog[] = [];
619
-
620
- let maxLogsHit = false;
621
- loopOverBlocks: for await (const [blockNumber, logBuffer] of this.#contractClassLogsByBlock.entriesAsync({
622
- start,
623
- end,
624
- })) {
625
- const contractClassLogsInBlock: { txHash: TxHash; logs: ContractClassLog[] }[] = [];
626
- const reader = new BufferReader(logBuffer);
627
- const blockHash = this.#unpackBlockHash(reader);
628
- while (reader.remainingBytes() > 0) {
629
- const indexOfTx = reader.readNumber();
630
- const txHash = reader.readObject(TxHash);
631
- const numLogsInTx = reader.readNumber();
632
- contractClassLogsInBlock[indexOfTx] = { txHash, logs: [] };
633
- for (let i = 0; i < numLogsInTx; i++) {
634
- contractClassLogsInBlock[indexOfTx].logs.push(reader.readObject(ContractClassLog));
635
- }
636
- }
637
- for (let txIndex = filter.afterLog?.txIndex ?? 0; txIndex < contractClassLogsInBlock.length; txIndex++) {
638
- const txData = contractClassLogsInBlock[txIndex];
639
- maxLogsHit = this.#accumulateContractClassLogs(
640
- logs,
641
- blockNumber,
642
- blockHash,
643
- txIndex,
644
- txData.txHash,
645
- txData.logs,
646
- filter,
647
- );
648
- if (maxLogsHit) {
649
- this.#log.debug(`Max logs hit at block ${blockNumber}`);
650
- break loopOverBlocks;
651
- }
652
- }
653
- }
654
-
655
- return { logs, maxLogsHit };
332
+ /** {@inheritDoc LogStore.getPrivateLogsForBlock} */
333
+ getPublicLogsForBlock(blockNumber: number): Promise<LogResult[]> {
334
+ return this.db.transactionAsync(() => this.#readBlockLogs(this.#publicKeysByBlock, this.#publicLogs, blockNumber));
656
335
  }
657
336
 
658
- #accumulatePublicLogs(
659
- results: ExtendedPublicLog[],
337
+ async #readBlockLogs(
338
+ keysByBlock: AztecAsyncMap<number, string[]>,
339
+ primaryMap: AztecAsyncMap<string, Buffer>,
660
340
  blockNumber: number,
661
- blockHash: BlockHash,
662
- txIndex: number,
663
- txHash: TxHash,
664
- txLogs: PublicLog[],
665
- filter: LogFilter = {},
666
- ): boolean {
667
- if (filter.fromBlock && blockNumber < filter.fromBlock) {
668
- return false;
669
- }
670
- if (filter.toBlock && blockNumber >= filter.toBlock) {
671
- return false;
672
- }
673
- if (filter.txHash && !txHash.equals(filter.txHash)) {
674
- return false;
341
+ ): Promise<LogResult[]> {
342
+ const keys = await keysByBlock.getAsync(blockNumber);
343
+ if (!keys || keys.length === 0) {
344
+ return [];
675
345
  }
676
-
677
- let maxLogsHit = false;
678
- let logIndex = typeof filter.afterLog?.logIndex === 'number' ? filter.afterLog.logIndex + 1 : 0;
679
- for (; logIndex < txLogs.length; logIndex++) {
680
- const log = txLogs[logIndex];
681
- if (
682
- (!filter.contractAddress || log.contractAddress.equals(filter.contractAddress)) &&
683
- (!filter.tag || log.fields[0]?.equals(filter.tag))
684
- ) {
685
- results.push(
686
- new ExtendedPublicLog(new LogId(BlockNumber(blockNumber), blockHash, txHash, txIndex, logIndex), log),
687
- );
688
-
689
- if (results.length >= this.#logsMaxPageSize) {
690
- maxLogsHit = true;
691
- break;
692
- }
346
+ const results: LogResult[] = [];
347
+ for (const key of keys) {
348
+ const raw = await primaryMap.getAsync(key);
349
+ if (!raw) {
350
+ continue;
693
351
  }
352
+ const tail = decodeKeyTail(key);
353
+ const value = decodeValue(raw);
354
+ results.push({
355
+ logData: value.logData,
356
+ blockNumber: tail.blockNumber,
357
+ blockHash: value.blockHash,
358
+ blockTimestamp: value.blockTimestamp,
359
+ txHash: value.txHash,
360
+ txIndexWithinBlock: tail.txIndexWithinBlock,
361
+ logIndexWithinTx: tail.logIndexWithinTx,
362
+ });
694
363
  }
695
-
696
- return maxLogsHit;
364
+ return results;
697
365
  }
366
+ }
698
367
 
699
- #accumulateContractClassLogs(
700
- results: ExtendedContractClassLog[],
701
- blockNumber: number,
702
- blockHash: BlockHash,
703
- txIndex: number,
704
- txHash: TxHash,
705
- txLogs: ContractClassLog[],
706
- filter: LogFilter = {},
707
- ): boolean {
708
- if (filter.fromBlock && blockNumber < filter.fromBlock) {
709
- return false;
710
- }
711
- if (filter.toBlock && blockNumber >= filter.toBlock) {
712
- return false;
713
- }
714
- if (filter.txHash && !txHash.equals(filter.txHash)) {
715
- return false;
716
- }
717
-
718
- let maxLogsHit = false;
719
- let logIndex = typeof filter.afterLog?.logIndex === 'number' ? filter.afterLog.logIndex + 1 : 0;
720
- for (; logIndex < txLogs.length; logIndex++) {
721
- const log = txLogs[logIndex];
722
- if (!filter.contractAddress || log.contractAddress.equals(filter.contractAddress)) {
723
- results.push(
724
- new ExtendedContractClassLog(new LogId(BlockNumber(blockNumber), blockHash, txHash, txIndex, logIndex), log),
725
- );
726
-
727
- if (results.length >= this.#logsMaxPageSize) {
728
- maxLogsHit = true;
729
- break;
730
- }
731
- }
732
- }
733
-
734
- return maxLogsHit;
368
+ /** Pulls `{ tagHex, afterLog }` out of a {@link TagQuery}, normalizing the bare-tag form. */
369
+ function normalizeTagEntry<T extends Tag | SiloedTag>(
370
+ entry: TagQuery<T>,
371
+ ): {
372
+ tagHex: string;
373
+ afterLog: LogCursor | undefined;
374
+ } {
375
+ if (typeof entry === 'object' && entry !== null && 'tag' in entry) {
376
+ return { tagHex: fieldHex(entry.tag.value), afterLog: entry.afterLog };
735
377
  }
378
+ return { tagHex: fieldHex((entry as T).value), afterLog: undefined };
736
379
  }