@aztec/pxe 0.0.1-commit.3469e52 → 0.0.1-commit.54489865
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/bin/check_oracle_version.js +1 -1
- package/dest/block_synchronizer/block_synchronizer.d.ts +7 -5
- package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -1
- package/dest/block_synchronizer/block_synchronizer.js +56 -16
- package/dest/config/index.d.ts +3 -1
- package/dest/config/index.d.ts.map +1 -1
- package/dest/config/index.js +17 -0
- package/dest/contract_function_simulator/contract_function_simulator.d.ts +1 -1
- package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
- package/dest/contract_function_simulator/contract_function_simulator.js +5 -8
- package/dest/contract_function_simulator/noir-structs/event_validation_request.d.ts +1 -1
- package/dest/contract_function_simulator/noir-structs/event_validation_request.js +1 -1
- package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts +1 -1
- package/dest/contract_function_simulator/noir-structs/note_validation_request.js +1 -1
- package/dest/contract_function_simulator/oracle/interfaces.d.ts +13 -10
- package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/oracle.d.ts +5 -3
- package/dest/contract_function_simulator/oracle/oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/oracle.js +27 -17
- package/dest/contract_function_simulator/oracle/private_execution.d.ts +2 -22
- package/dest/contract_function_simulator/oracle/private_execution.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/private_execution.js +0 -37
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +9 -1
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/private_execution_oracle.js +16 -5
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +20 -12
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +36 -38
- package/dest/contract_sync/index.d.ts +23 -0
- package/dest/contract_sync/index.d.ts.map +1 -0
- package/dest/contract_sync/index.js +54 -0
- package/dest/debug/pxe_debug_utils.d.ts +16 -6
- package/dest/debug/pxe_debug_utils.d.ts.map +1 -1
- package/dest/debug/pxe_debug_utils.js +20 -10
- package/dest/entrypoints/client/bundle/utils.d.ts +1 -1
- package/dest/entrypoints/client/bundle/utils.d.ts.map +1 -1
- package/dest/entrypoints/client/bundle/utils.js +10 -5
- package/dest/entrypoints/client/lazy/utils.d.ts +2 -2
- package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
- package/dest/entrypoints/client/lazy/utils.js +11 -6
- package/dest/entrypoints/pxe_creation_options.d.ts +3 -2
- package/dest/entrypoints/pxe_creation_options.d.ts.map +1 -1
- package/dest/entrypoints/server/index.d.ts +2 -1
- package/dest/entrypoints/server/index.d.ts.map +1 -1
- package/dest/entrypoints/server/index.js +1 -0
- package/dest/entrypoints/server/utils.d.ts +1 -1
- package/dest/entrypoints/server/utils.d.ts.map +1 -1
- package/dest/entrypoints/server/utils.js +19 -8
- package/dest/events/event_service.d.ts +2 -2
- package/dest/events/event_service.d.ts.map +1 -1
- package/dest/events/event_service.js +1 -1
- package/dest/job_coordinator/job_coordinator.d.ts +3 -2
- package/dest/job_coordinator/job_coordinator.d.ts.map +1 -1
- package/dest/job_coordinator/job_coordinator.js +3 -2
- package/dest/logs/log_service.d.ts +3 -2
- package/dest/logs/log_service.d.ts.map +1 -1
- package/dest/logs/log_service.js +19 -13
- package/dest/notes/note_service.d.ts +4 -3
- package/dest/notes/note_service.d.ts.map +1 -1
- package/dest/notes/note_service.js +11 -10
- package/dest/oracle_version.d.ts +3 -3
- package/dest/oracle_version.d.ts.map +1 -1
- package/dest/oracle_version.js +4 -3
- package/dest/private_kernel/private_kernel_execution_prover.d.ts +3 -2
- package/dest/private_kernel/private_kernel_execution_prover.d.ts.map +1 -1
- package/dest/private_kernel/private_kernel_execution_prover.js +2 -2
- package/dest/private_kernel/private_kernel_oracle.d.ts +3 -3
- package/dest/private_kernel/private_kernel_oracle.d.ts.map +1 -1
- package/dest/pxe.d.ts +1 -1
- package/dest/pxe.d.ts.map +1 -1
- package/dest/pxe.js +18 -14
- package/dest/storage/contract_store/contract_store.d.ts +1 -2
- package/dest/storage/contract_store/contract_store.d.ts.map +1 -1
- package/dest/storage/contract_store/contract_store.js +0 -12
- package/dest/storage/note_store/note_store.d.ts +43 -55
- package/dest/storage/note_store/note_store.d.ts.map +1 -1
- package/dest/storage/note_store/note_store.js +235 -251
- package/dest/storage/note_store/stored_note.d.ts +16 -0
- package/dest/storage/note_store/stored_note.d.ts.map +1 -0
- package/dest/storage/note_store/stored_note.js +43 -0
- package/dest/storage/private_event_store/private_event_store.d.ts +17 -4
- package/dest/storage/private_event_store/private_event_store.d.ts.map +1 -1
- package/dest/storage/private_event_store/private_event_store.js +158 -132
- package/dest/storage/private_event_store/stored_private_event.d.ts +23 -0
- package/dest/storage/private_event_store/stored_private_event.d.ts.map +1 -0
- package/dest/storage/private_event_store/stored_private_event.js +56 -0
- package/dest/tagging/get_all_logs_by_tags.d.ts +24 -0
- package/dest/tagging/get_all_logs_by_tags.d.ts.map +1 -0
- package/dest/tagging/get_all_logs_by_tags.js +46 -0
- package/dest/tagging/index.d.ts +2 -1
- package/dest/tagging/index.d.ts.map +1 -1
- package/dest/tagging/index.js +1 -0
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts +3 -2
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.d.ts.map +1 -1
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +2 -2
- package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts +3 -2
- package/dest/tagging/recipient_sync/utils/load_logs_for_range.d.ts.map +1 -1
- package/dest/tagging/recipient_sync/utils/load_logs_for_range.js +5 -2
- package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts +3 -2
- package/dest/tagging/sender_sync/sync_sender_tagging_indexes.d.ts.map +1 -1
- package/dest/tagging/sender_sync/sync_sender_tagging_indexes.js +2 -2
- package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts +1 -1
- package/dest/tagging/sender_sync/utils/get_status_change_of_pending.d.ts.map +1 -1
- package/dest/tagging/sender_sync/utils/get_status_change_of_pending.js +5 -8
- package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts +3 -2
- package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.d.ts.map +1 -1
- package/dest/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.js +7 -4
- package/package.json +16 -16
- package/src/bin/check_oracle_version.ts +1 -0
- package/src/block_synchronizer/block_synchronizer.ts +70 -33
- package/src/config/index.ts +14 -0
- package/src/contract_function_simulator/contract_function_simulator.ts +7 -11
- package/src/contract_function_simulator/noir-structs/event_validation_request.ts +1 -1
- package/src/contract_function_simulator/noir-structs/note_validation_request.ts +1 -1
- package/src/contract_function_simulator/oracle/interfaces.ts +18 -9
- package/src/contract_function_simulator/oracle/oracle.ts +34 -21
- package/src/contract_function_simulator/oracle/private_execution.ts +1 -60
- package/src/contract_function_simulator/oracle/private_execution_oracle.ts +32 -6
- package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +55 -45
- package/src/contract_sync/index.ts +98 -0
- package/src/debug/pxe_debug_utils.ts +26 -11
- package/src/entrypoints/client/bundle/utils.ts +4 -13
- package/src/entrypoints/client/lazy/utils.ts +5 -13
- package/src/entrypoints/pxe_creation_options.ts +2 -1
- package/src/entrypoints/server/index.ts +1 -0
- package/src/entrypoints/server/utils.ts +15 -19
- package/src/events/event_service.ts +1 -1
- package/src/job_coordinator/job_coordinator.ts +4 -3
- package/src/logs/log_service.ts +30 -11
- package/src/notes/note_service.ts +18 -15
- package/src/oracle_version.ts +4 -3
- package/src/private_kernel/private_kernel_execution_prover.ts +6 -3
- package/src/private_kernel/private_kernel_oracle.ts +2 -2
- package/src/pxe.ts +48 -16
- package/src/storage/contract_store/contract_store.ts +0 -20
- package/src/storage/note_store/note_store.ts +273 -312
- package/src/storage/note_store/stored_note.ts +48 -0
- package/src/storage/private_event_store/private_event_store.ts +204 -167
- package/src/storage/private_event_store/stored_private_event.ts +73 -0
- package/src/tagging/get_all_logs_by_tags.ts +68 -0
- package/src/tagging/index.ts +1 -0
- package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +11 -1
- package/src/tagging/recipient_sync/utils/load_logs_for_range.ts +7 -1
- package/src/tagging/sender_sync/sync_sender_tagging_indexes.ts +3 -1
- package/src/tagging/sender_sync/utils/get_status_change_of_pending.ts +5 -17
- package/src/tagging/sender_sync/utils/load_and_store_new_tagging_indexes.ts +12 -3
- package/dest/tree_membership/tree_membership_service.d.ts +0 -50
- package/dest/tree_membership/tree_membership_service.d.ts.map +0 -1
- package/dest/tree_membership/tree_membership_service.js +0 -75
- package/src/tree_membership/tree_membership_service.ts +0 -97
|
@@ -1,134 +1,227 @@
|
|
|
1
|
-
import type { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
1
|
import { toArray } from '@aztec/foundation/iterable';
|
|
2
|
+
import { Semaphore } from '@aztec/foundation/queue';
|
|
3
|
+
import type { Fr } from '@aztec/foundation/schemas';
|
|
3
4
|
import type { AztecAsyncKVStore, AztecAsyncMap, AztecAsyncMultiMap } from '@aztec/kv-store';
|
|
4
|
-
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
|
+
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
6
|
import type { DataInBlock } from '@aztec/stdlib/block';
|
|
6
|
-
import { NoteStatus, type NotesFilter } from '@aztec/stdlib/note';
|
|
7
|
-
|
|
7
|
+
import { NoteDao, NoteStatus, type NotesFilter } from '@aztec/stdlib/note';
|
|
8
|
+
|
|
9
|
+
import type { StagedStore } from '../../job_coordinator/job_coordinator.js';
|
|
10
|
+
import { StoredNote } from './stored_note.js';
|
|
8
11
|
|
|
9
12
|
/**
|
|
10
13
|
* NoteStore manages the storage and retrieval of notes.
|
|
11
14
|
*
|
|
12
|
-
* Notes can be active or nullified. This class processes new notes, nullifications,
|
|
13
|
-
*
|
|
15
|
+
* Notes can be active or nullified. This class processes new notes, nullifications, and performs rollback handling in
|
|
16
|
+
* the case of a reorg.
|
|
14
17
|
**/
|
|
15
|
-
export class NoteStore {
|
|
16
|
-
|
|
18
|
+
export class NoteStore implements StagedStore {
|
|
19
|
+
readonly storeName: string = 'note';
|
|
17
20
|
|
|
18
21
|
// Note that we use the siloedNullifier as the note id in the store as it's guaranteed to be unique.
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
// Main storage for notes. Avoid performing full scans on it as it contains all notes PXE knows, use
|
|
24
|
+
// #nullifiersByContractAddress or #nullifiersByNullificationBlockNumber to find relevant note nullifiers that can be
|
|
25
|
+
// used to read into this map instead.
|
|
26
|
+
// nullifier => StoredNote (serialized)
|
|
21
27
|
#notes: AztecAsyncMap<string, Buffer>;
|
|
22
|
-
/** noteId (siloedNullifier) -> NoteDao (serialized) */
|
|
23
|
-
#nullifiedNotes: AztecAsyncMap<string, Buffer>;
|
|
24
|
-
/** blockNumber -> siloedNullifier */
|
|
25
|
-
#nullifiersByBlockNumber: AztecAsyncMultiMap<number, string>;
|
|
26
|
-
|
|
27
|
-
/** noteId (siloedNullifier) -> scope */
|
|
28
|
-
#nullifiedNotesToScope: AztecAsyncMultiMap<string, string>;
|
|
29
|
-
/** contractAddress -> noteId (siloedNullifier) */
|
|
30
|
-
#nullifiedNotesByContract: AztecAsyncMultiMap<string, string>;
|
|
31
|
-
/** storageSlot -> noteId (siloedNullifier) */
|
|
32
|
-
#nullifiedNotesByStorageSlot: AztecAsyncMultiMap<string, string>;
|
|
33
|
-
|
|
34
|
-
/** scope (AztecAddress) -> true */
|
|
35
|
-
#scopes: AztecAsyncMap<string, true>;
|
|
36
|
-
/** noteId (siloedNullifier) -> scope */
|
|
37
|
-
#notesToScope: AztecAsyncMultiMap<string, string>;
|
|
38
|
-
/** scope -> MultiMap(contractAddress -> noteId) */
|
|
39
|
-
#notesByContractAndScope: Map<string, AztecAsyncMultiMap<string, string>>;
|
|
40
|
-
/** scope -> MultiMap(storageSlot -> noteId) */
|
|
41
|
-
#notesByStorageSlotAndScope: Map<string, AztecAsyncMultiMap<string, string>>;
|
|
42
|
-
|
|
43
|
-
private constructor(store: AztecAsyncKVStore) {
|
|
44
|
-
this.#store = store;
|
|
45
|
-
this.#notes = store.openMap('notes');
|
|
46
|
-
this.#nullifiedNotes = store.openMap('nullified_notes');
|
|
47
|
-
this.#nullifiersByBlockNumber = store.openMultiMap('nullifier_to_block_number');
|
|
48
28
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
29
|
+
// Indexes which notes (via their nullifiers) belong to a contract. Used in `getNotes` to reduce the amount of notes
|
|
30
|
+
// checked.
|
|
31
|
+
// contract address => nullifier
|
|
32
|
+
#nullifiersByContractAddress: AztecAsyncMultiMap<string, string>;
|
|
33
|
+
|
|
34
|
+
// Groups note nullifiers by the block number they were added to the nullifier tree. Used in `rollback` to handle
|
|
35
|
+
// re-orgs.
|
|
36
|
+
// block number => nullifier (block number in which nullifier is included)
|
|
37
|
+
#nullifiersByNullificationBlockNumber: AztecAsyncMultiMap<number, string>;
|
|
38
|
+
|
|
39
|
+
// In-memory changes performed during a not-yet committed job. When `commit` is called with said job's id, these
|
|
40
|
+
// changes are persisted in the DB maps specified above and cleared.
|
|
41
|
+
// jobId => nullifier => StoredNote (serialized)
|
|
42
|
+
#notesForJob: Map<string, Map<string, StoredNote>>;
|
|
43
|
+
|
|
44
|
+
// Per job locks to prevent multiple concurrent writes to affect each other.
|
|
45
|
+
// jobId => lock
|
|
46
|
+
#jobLocks: Map<string, Semaphore>;
|
|
52
47
|
|
|
53
|
-
|
|
54
|
-
this.#
|
|
55
|
-
this.#
|
|
56
|
-
this.#
|
|
48
|
+
constructor(store: AztecAsyncKVStore) {
|
|
49
|
+
this.#notes = store.openMap('notes');
|
|
50
|
+
this.#nullifiersByContractAddress = store.openMultiMap('note_nullifiers_by_contract');
|
|
51
|
+
this.#nullifiersByNullificationBlockNumber = store.openMultiMap('note_block_number_to_nullifier');
|
|
52
|
+
|
|
53
|
+
this.#jobLocks = new Map();
|
|
54
|
+
this.#notesForJob = new Map();
|
|
57
55
|
}
|
|
58
56
|
|
|
59
57
|
/**
|
|
60
|
-
*
|
|
58
|
+
* Adds multiple notes to the notes store under the specified scope.
|
|
61
59
|
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
60
|
+
* Notes are stored using their siloedNullifier as the key, which provides uniqueness. Each note is indexed by
|
|
61
|
+
* multiple criteria for efficient retrieval.
|
|
64
62
|
*
|
|
65
|
-
* @param
|
|
66
|
-
* @
|
|
63
|
+
* @param notes - Notes to store
|
|
64
|
+
* @param scope - The scope (user/account) under which to store the notes
|
|
65
|
+
* @param jobId - The job context for staged writes
|
|
67
66
|
*/
|
|
68
|
-
public
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
67
|
+
public addNotes(notes: NoteDao[], scope: AztecAddress, jobId: string): Promise<void[]> {
|
|
68
|
+
return this.#withJobLock(jobId, () => Promise.all(notes.map(noteDao => this.#addNote(noteDao, scope, jobId))));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
async #addNote(note: NoteDao, scope: AztecAddress, jobId: string) {
|
|
72
|
+
const noteForJob =
|
|
73
|
+
(await this.#readNote(note.siloedNullifier.toString(), jobId)) ?? new StoredNote(note, new Set());
|
|
74
|
+
|
|
75
|
+
// Make sure the note is linked to the scope and staged for this job
|
|
76
|
+
noteForJob.addScope(scope.toString());
|
|
77
|
+
this.#writeNote(noteForJob, jobId);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
async #readNote(nullifier: string, jobId: string): Promise<StoredNote | undefined> {
|
|
81
|
+
// First check staged notes for this job
|
|
82
|
+
const noteForJob = this.#getNotesForJob(jobId).get(nullifier);
|
|
83
|
+
if (noteForJob) {
|
|
84
|
+
return noteForJob;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Then check persistent storage
|
|
88
|
+
const noteBuffer = await this.#notes.getAsync(nullifier);
|
|
89
|
+
if (noteBuffer) {
|
|
90
|
+
return StoredNote.fromBuffer(noteBuffer);
|
|
73
91
|
}
|
|
74
|
-
|
|
92
|
+
|
|
93
|
+
return undefined;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
#writeNote(note: StoredNote, jobId: string) {
|
|
97
|
+
this.#getNotesForJob(jobId).set(note.noteDao.siloedNullifier.toString(), note);
|
|
75
98
|
}
|
|
76
99
|
|
|
77
100
|
/**
|
|
78
|
-
*
|
|
101
|
+
* Retrieves notes based on the provided filter criteria.
|
|
79
102
|
*
|
|
80
|
-
*
|
|
81
|
-
* Each scope gets its own set of indexes for efficient note retrieval by various criteria.
|
|
103
|
+
* This method queries both active and optionally nullified notes based on the filter parameters.
|
|
82
104
|
*
|
|
83
|
-
* @param
|
|
84
|
-
*
|
|
105
|
+
* @param filter - Filter criteria including contractAddress (required), and optional owner,
|
|
106
|
+
* storageSlot, status, scopes, and siloedNullifier.
|
|
107
|
+
* @params jobId - the job context to read from.
|
|
108
|
+
* @returns Filtered and deduplicated notes (a note might be present in multiple scopes - we ensure it is only
|
|
109
|
+
* returned once if this is the case)
|
|
110
|
+
* @throws If filtering by an empty scopes array. Scopes have to be set to undefined or to a non-empty array.
|
|
85
111
|
*/
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
if (await this.#scopes.hasAsync(scopeString)) {
|
|
90
|
-
return false;
|
|
112
|
+
async getNotes(filter: NotesFilter, jobId: string): Promise<NoteDao[]> {
|
|
113
|
+
if (filter.scopes !== undefined && filter.scopes.length === 0) {
|
|
114
|
+
throw new Error('Trying to get notes with an empty scopes array');
|
|
91
115
|
}
|
|
92
116
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
117
|
+
const targetStatus = filter.status ?? NoteStatus.ACTIVE;
|
|
118
|
+
|
|
119
|
+
const foundNotes: Map<string, NoteDao> = new Map();
|
|
120
|
+
|
|
121
|
+
const nullifiersOfContract = await this.#nullifiersOfContract(filter.contractAddress, jobId);
|
|
122
|
+
for (const nullifier of nullifiersOfContract) {
|
|
123
|
+
const note = await this.#readNote(nullifier, jobId);
|
|
124
|
+
|
|
125
|
+
// Defensive: hitting this case means we're mishandling contract indices or in-memory job data
|
|
126
|
+
if (!note) {
|
|
127
|
+
throw new Error('PXE note database is corrupted.');
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Apply filters
|
|
131
|
+
if (targetStatus === NoteStatus.ACTIVE && note.isNullified()) {
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (filter.owner && !note.noteDao.owner.equals(filter.owner)) {
|
|
136
|
+
continue;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (filter.storageSlot && !note.noteDao.storageSlot.equals(filter.storageSlot)) {
|
|
140
|
+
continue;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
if (filter.siloedNullifier && !note.noteDao.siloedNullifier.equals(filter.siloedNullifier)) {
|
|
144
|
+
continue;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if (filter.scopes && note.scopes.intersection(new Set(filter.scopes.map(s => s.toString()))).size === 0) {
|
|
148
|
+
continue;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
foundNotes.set(note.noteDao.siloedNullifier.toString(), note.noteDao);
|
|
152
|
+
}
|
|
96
153
|
|
|
97
|
-
|
|
154
|
+
// Sort by block number, then by tx index within block, then by note index within tx
|
|
155
|
+
return [...foundNotes.values()].sort((a, b) => {
|
|
156
|
+
if (a.l2BlockNumber !== b.l2BlockNumber) {
|
|
157
|
+
return a.l2BlockNumber - b.l2BlockNumber;
|
|
158
|
+
}
|
|
159
|
+
if (a.txIndexInBlock !== b.txIndexInBlock) {
|
|
160
|
+
return a.txIndexInBlock - b.txIndexInBlock;
|
|
161
|
+
}
|
|
162
|
+
return a.noteIndexInTx - b.noteIndexInTx;
|
|
163
|
+
});
|
|
98
164
|
}
|
|
99
165
|
|
|
100
166
|
/**
|
|
101
|
-
*
|
|
167
|
+
* Transitions notes from "active" to "nullified" state.
|
|
102
168
|
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
169
|
+
* This operation processes a batch of nullifiers to mark the corresponding notes as spent/nullified.
|
|
170
|
+
* The operation is atomic - if any nullifier is not found, the entire operation fails and no notes are modified.
|
|
105
171
|
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
172
|
+
* applyNullifiers is idempotent: the same nullifier can be applied multiple times without error.
|
|
173
|
+
* This relaxes constraints on usage of NoteService#validateAndStoreNote, which can then be run concurrently in a Promise.all
|
|
174
|
+
* context without risking unnecessarily defensive checks failing.
|
|
175
|
+
*
|
|
176
|
+
* @param nullifiers - Array of nullifiers with their block numbers to process
|
|
177
|
+
* @param jobId - The job context for staged writes
|
|
178
|
+
* @returns Array of NoteDao objects that were nullified
|
|
179
|
+
* @throws Error if any nullifier is not found in this notes store
|
|
108
180
|
*/
|
|
109
|
-
|
|
110
|
-
return this.#
|
|
111
|
-
if (
|
|
112
|
-
|
|
181
|
+
applyNullifiers(nullifiers: DataInBlock<Fr>[], jobId: string): Promise<NoteDao[]> {
|
|
182
|
+
return this.#withJobLock(jobId, async () => {
|
|
183
|
+
if (nullifiers.length === 0) {
|
|
184
|
+
return [];
|
|
113
185
|
}
|
|
114
186
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
187
|
+
const notesToNullify = await Promise.all(
|
|
188
|
+
nullifiers.map(async nullifierInBlock => {
|
|
189
|
+
const nullifier = nullifierInBlock.data.toString();
|
|
190
|
+
|
|
191
|
+
const storedNote = await this.#readNote(nullifier, jobId);
|
|
192
|
+
if (!storedNote) {
|
|
193
|
+
throw new Error(`Attempted to mark a note as nullified which does not exist in PXE DB`);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
return { storedNote: await this.#readNote(nullifier, jobId), blockNumber: nullifierInBlock.l2BlockNumber };
|
|
197
|
+
}),
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
const notesNullifiedInThisCall: Map<string, NoteDao> = new Map();
|
|
201
|
+
for (const noteToNullify of notesToNullify) {
|
|
202
|
+
// Safe to coerce (!) because we throw if we find any undefined above
|
|
203
|
+
const note = noteToNullify.storedNote!;
|
|
119
204
|
|
|
120
|
-
|
|
121
|
-
|
|
205
|
+
// Skip already nullified notes
|
|
206
|
+
if (note.isNullified()) {
|
|
207
|
+
continue;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
note.markAsNullified(noteToNullify.blockNumber);
|
|
211
|
+
this.#writeNote(note, jobId);
|
|
212
|
+
notesNullifiedInThisCall.set(note.noteDao.siloedNullifier.toString(), note.noteDao);
|
|
122
213
|
}
|
|
214
|
+
|
|
215
|
+
return [...notesNullifiedInThisCall.values()];
|
|
123
216
|
});
|
|
124
217
|
}
|
|
125
218
|
|
|
126
219
|
/**
|
|
127
220
|
* Synchronizes notes and nullifiers to a specific block number.
|
|
128
221
|
*
|
|
129
|
-
* This method ensures that the state of notes and nullifiers is consistent with the
|
|
130
|
-
*
|
|
131
|
-
*
|
|
222
|
+
* This method ensures that the state of notes and nullifiers is consistent with the specified block number.
|
|
223
|
+
* It restores any notes that were nullified after the given block and deletes any active notes created after that
|
|
224
|
+
* block.
|
|
132
225
|
*
|
|
133
226
|
* IMPORTANT: This method must be called within a transaction to ensure atomicity.
|
|
134
227
|
*
|
|
@@ -136,31 +229,31 @@ export class NoteStore {
|
|
|
136
229
|
* @param synchedBlockNumber - The block number up to which PXE managed to sync before the reorg happened.
|
|
137
230
|
*/
|
|
138
231
|
public async rollback(blockNumber: number, synchedBlockNumber: number): Promise<void> {
|
|
139
|
-
|
|
232
|
+
if (this.#notesForJob.size > 0) {
|
|
233
|
+
throw new Error('PXE note store rollback is not allowed while jobs are running');
|
|
234
|
+
}
|
|
235
|
+
await this.#rewindNullifiedNotesAfterBlock(blockNumber, synchedBlockNumber);
|
|
140
236
|
await this.#deleteActiveNotesAfterBlock(blockNumber);
|
|
141
237
|
}
|
|
142
238
|
|
|
143
239
|
/**
|
|
144
|
-
* Deletes (removes) all
|
|
240
|
+
* Deletes (removes) all notes created after the specified block number.
|
|
145
241
|
*
|
|
146
|
-
* Permanently delete notes from the
|
|
147
|
-
* Note: This only affects #notes (active notes), not #nullifiedNotes.
|
|
242
|
+
* Permanently delete notes from the notes store, e.g. during a reorg.
|
|
148
243
|
*
|
|
149
244
|
* @param blockNumber - Notes created after this block number will be deleted
|
|
150
245
|
*/
|
|
151
246
|
async #deleteActiveNotesAfterBlock(blockNumber: number): Promise<void> {
|
|
152
247
|
const notes = await toArray(this.#notes.valuesAsync());
|
|
153
|
-
for (const
|
|
154
|
-
const
|
|
155
|
-
if (noteDao.l2BlockNumber > blockNumber) {
|
|
156
|
-
const
|
|
157
|
-
await this.#notes.delete(
|
|
158
|
-
await this.#
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
await this.#notesByStorageSlotAndScope.get(scope)!.deleteValue(noteDao.storageSlot.toString(), noteId);
|
|
163
|
-
}
|
|
248
|
+
for (const noteBuffer of notes) {
|
|
249
|
+
const storedNote = StoredNote.fromBuffer(noteBuffer);
|
|
250
|
+
if (storedNote.noteDao.l2BlockNumber > blockNumber) {
|
|
251
|
+
const noteNullifier = storedNote.noteDao.siloedNullifier.toString();
|
|
252
|
+
await this.#notes.delete(noteNullifier);
|
|
253
|
+
await this.#nullifiersByContractAddress.deleteValue(
|
|
254
|
+
storedNote.noteDao.contractAddress.toString(),
|
|
255
|
+
noteNullifier,
|
|
256
|
+
);
|
|
164
257
|
}
|
|
165
258
|
}
|
|
166
259
|
}
|
|
@@ -168,248 +261,116 @@ export class NoteStore {
|
|
|
168
261
|
/**
|
|
169
262
|
* Rewinds nullifications after a given block number.
|
|
170
263
|
*
|
|
171
|
-
* This operation "
|
|
172
|
-
*
|
|
173
|
-
* active notes store and removed from the nullified store.
|
|
264
|
+
* This operation "un-nullifies" notes, rolling back nullifications that occurred in orphaned blocks, e.g. during a
|
|
265
|
+
* reorg.
|
|
174
266
|
*
|
|
175
267
|
* @param blockNumber - Revert nullifications that occurred after this block
|
|
176
|
-
* @param
|
|
268
|
+
* @param anchorBlockNumber - Upper bound for the block range to process
|
|
177
269
|
*/
|
|
178
|
-
async #
|
|
179
|
-
const noteIdsToReinsert: string[] = [];
|
|
270
|
+
async #rewindNullifiedNotesAfterBlock(blockNumber: number, anchorBlockNumber: number): Promise<void> {
|
|
180
271
|
const currentBlockNumber = blockNumber + 1;
|
|
181
|
-
for (let i = currentBlockNumber; i <=
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
185
|
-
const nullifiedNoteBuffers = await Promise.all(
|
|
186
|
-
noteIdsToReinsert.map(noteId => this.#nullifiedNotes.getAsync(noteId)),
|
|
187
|
-
);
|
|
188
|
-
const noteDaos = nullifiedNoteBuffers
|
|
189
|
-
.filter(buffer => buffer != undefined)
|
|
190
|
-
.map(buffer => NoteDao.fromBuffer(buffer!));
|
|
191
|
-
|
|
192
|
-
for (const dao of noteDaos) {
|
|
193
|
-
const noteId = dao.siloedNullifier.toString();
|
|
194
|
-
|
|
195
|
-
const scopes = await toArray(this.#nullifiedNotesToScope.getValuesAsync(noteId));
|
|
196
|
-
|
|
197
|
-
if (scopes.length === 0) {
|
|
198
|
-
// We should never run into this error because notes always have a scope assigned to them - either on initial
|
|
199
|
-
// insertion via `addNotes` or when removing their nullifiers.
|
|
200
|
-
throw new Error(`No scopes found for nullified note with nullifier ${noteId}`);
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
for (const scope of scopes) {
|
|
204
|
-
await Promise.all([
|
|
205
|
-
this.#notesByContractAndScope.get(scope.toString())!.set(dao.contractAddress.toString(), noteId),
|
|
206
|
-
this.#notesByStorageSlotAndScope.get(scope.toString())!.set(dao.storageSlot.toString(), noteId),
|
|
207
|
-
this.#notesToScope.set(noteId, scope),
|
|
208
|
-
]);
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
await Promise.all([
|
|
212
|
-
this.#notes.set(noteId, dao.toBuffer()),
|
|
213
|
-
this.#nullifiedNotes.delete(noteId),
|
|
214
|
-
this.#nullifiedNotesToScope.delete(noteId),
|
|
215
|
-
this.#nullifiersByBlockNumber.deleteValue(dao.l2BlockNumber, dao.siloedNullifier.toString()),
|
|
216
|
-
this.#nullifiedNotesByContract.deleteValue(dao.contractAddress.toString(), noteId),
|
|
217
|
-
this.#nullifiedNotesByStorageSlot.deleteValue(dao.storageSlot.toString(), noteId),
|
|
218
|
-
]);
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* Retrieves notes based on the provided filter criteria.
|
|
224
|
-
*
|
|
225
|
-
* This method queries both active and optionally nullified notes based on the filter
|
|
226
|
-
* parameters.
|
|
227
|
-
*
|
|
228
|
-
* @param filter - Filter criteria including contractAddress (required), and optional
|
|
229
|
-
* owner, storageSlot, status, scopes, and siloedNullifier.
|
|
230
|
-
* @returns Filtered and deduplicated notes (a note might be present in multiple scopes - we ensure it is only
|
|
231
|
-
* returned once if this is the case)
|
|
232
|
-
* @throws If filtering by an empty scopes array. Scopes have to be set to undefined or to a non-empty array.
|
|
233
|
-
*/
|
|
234
|
-
async getNotes(filter: NotesFilter): Promise<NoteDao[]> {
|
|
235
|
-
filter.status = filter.status ?? NoteStatus.ACTIVE;
|
|
236
|
-
|
|
237
|
-
// throw early if scopes is an empty array
|
|
238
|
-
if (filter.scopes !== undefined && filter.scopes.length === 0) {
|
|
239
|
-
throw new Error(
|
|
240
|
-
'Trying to get notes with an empty scopes array. Scopes have to be set to undefined if intending on not filtering by scopes.',
|
|
272
|
+
for (let i = currentBlockNumber; i <= anchorBlockNumber; i++) {
|
|
273
|
+
const noteNullifiersToReinsert: string[] = await toArray(
|
|
274
|
+
this.#nullifiersByNullificationBlockNumber.getValuesAsync(i),
|
|
241
275
|
);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
const candidateNoteSources = [];
|
|
245
276
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
277
|
+
const nullifiedNoteBuffers = await Promise.all(
|
|
278
|
+
noteNullifiersToReinsert.map(async noteNullifier => {
|
|
279
|
+
const note = await this.#notes.getAsync(noteNullifier);
|
|
249
280
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
const formattedScopeString = scope.toString();
|
|
254
|
-
if (!(await this.#scopes.hasAsync(formattedScopeString))) {
|
|
255
|
-
throw new Error('Trying to get incoming notes of a scope that is not in the PXE database');
|
|
256
|
-
}
|
|
281
|
+
if (!note) {
|
|
282
|
+
throw new Error(`PXE DB integrity error: no note found with nullifier ${noteNullifier}`);
|
|
283
|
+
}
|
|
257
284
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
? await toArray(
|
|
261
|
-
this.#notesByStorageSlotAndScope.get(formattedScopeString)!.getValuesAsync(filter.storageSlot.toString()),
|
|
262
|
-
)
|
|
263
|
-
: await toArray(
|
|
264
|
-
this.#notesByContractAndScope
|
|
265
|
-
.get(formattedScopeString)!
|
|
266
|
-
.getValuesAsync(filter.contractAddress.toString()),
|
|
267
|
-
),
|
|
285
|
+
return note;
|
|
286
|
+
}),
|
|
268
287
|
);
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
candidateNoteSources.push({
|
|
272
|
-
ids: new Set(activeNoteIdsPerScope.flat()),
|
|
273
|
-
notes: this.#notes,
|
|
274
|
-
});
|
|
275
|
-
|
|
276
|
-
// If status is ACTIVE_OR_NULLIFIED we add nullified notes as candidates on top of the default active ones.
|
|
277
|
-
if (filter.status === NoteStatus.ACTIVE_OR_NULLIFIED) {
|
|
278
|
-
const nullifiedIds = filter.storageSlot
|
|
279
|
-
? await toArray(this.#nullifiedNotesByStorageSlot.getValuesAsync(filter.storageSlot.toString()))
|
|
280
|
-
: await toArray(this.#nullifiedNotesByContract.getValuesAsync(filter.contractAddress.toString()));
|
|
281
288
|
|
|
282
|
-
const
|
|
283
|
-
const filteredNullifiedIds = new Set<string>();
|
|
289
|
+
const storedNotes = nullifiedNoteBuffers.map(buffer => StoredNote.fromBuffer(buffer));
|
|
284
290
|
|
|
285
|
-
for (const
|
|
286
|
-
const
|
|
287
|
-
|
|
288
|
-
filteredNullifiedIds.add(noteId);
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
if (filteredNullifiedIds.size > 0) {
|
|
293
|
-
candidateNoteSources.push({
|
|
294
|
-
ids: filteredNullifiedIds,
|
|
295
|
-
notes: this.#nullifiedNotes,
|
|
296
|
-
});
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
const result: NoteDao[] = [];
|
|
301
|
-
for (const { ids, notes } of candidateNoteSources) {
|
|
302
|
-
for (const id of ids) {
|
|
303
|
-
const serializedNote = await notes.getAsync(id);
|
|
304
|
-
if (!serializedNote) {
|
|
305
|
-
continue;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
const note = NoteDao.fromBuffer(serializedNote);
|
|
309
|
-
if (!note.contractAddress.equals(filter.contractAddress)) {
|
|
310
|
-
continue;
|
|
311
|
-
}
|
|
291
|
+
for (const storedNote of storedNotes) {
|
|
292
|
+
const noteNullifier = storedNote.noteDao.siloedNullifier.toString();
|
|
293
|
+
const scopes = storedNote.scopes;
|
|
312
294
|
|
|
313
|
-
if (
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
if (filter.storageSlot && !note.storageSlot.equals(filter.storageSlot!)) {
|
|
318
|
-
continue;
|
|
295
|
+
if (scopes.size === 0) {
|
|
296
|
+
// We should never run into this error because notes always have a scope assigned to them - either on initial
|
|
297
|
+
// insertion via `addNotes` or when removing their nullifiers.
|
|
298
|
+
throw new Error(`No scopes found for nullified note with nullifier ${noteNullifier}`);
|
|
319
299
|
}
|
|
320
300
|
|
|
321
|
-
|
|
322
|
-
continue;
|
|
323
|
-
}
|
|
301
|
+
storedNote.markAsActive();
|
|
324
302
|
|
|
325
|
-
|
|
303
|
+
await Promise.all([
|
|
304
|
+
this.#notes.set(noteNullifier, storedNote.toBuffer()),
|
|
305
|
+
this.#nullifiersByNullificationBlockNumber.deleteValue(i, noteNullifier),
|
|
306
|
+
]);
|
|
326
307
|
}
|
|
327
308
|
}
|
|
309
|
+
}
|
|
328
310
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
311
|
+
commit(jobId: string): Promise<void> {
|
|
312
|
+
return this.#withJobLock(jobId, async () => {
|
|
313
|
+
for (const [nullifier, storedNote] of this.#getNotesForJob(jobId)) {
|
|
314
|
+
await this.#notes.set(nullifier, storedNote.toBuffer());
|
|
315
|
+
await this.#nullifiersByContractAddress.set(storedNote.noteDao.contractAddress.toString(), nullifier);
|
|
316
|
+
if (storedNote.nullifiedAt !== undefined) {
|
|
317
|
+
await this.#nullifiersByNullificationBlockNumber.set(storedNote.nullifiedAt, nullifier);
|
|
318
|
+
}
|
|
334
319
|
}
|
|
335
|
-
}
|
|
336
320
|
|
|
337
|
-
|
|
338
|
-
deduplicated.sort((a, b) => {
|
|
339
|
-
if (a.l2BlockNumber !== b.l2BlockNumber) {
|
|
340
|
-
return a.l2BlockNumber - b.l2BlockNumber;
|
|
341
|
-
}
|
|
342
|
-
if (a.txIndexInBlock !== b.txIndexInBlock) {
|
|
343
|
-
return a.txIndexInBlock - b.txIndexInBlock;
|
|
344
|
-
}
|
|
345
|
-
return a.noteIndexInTx - b.noteIndexInTx;
|
|
321
|
+
this.#clearJobData(jobId);
|
|
346
322
|
});
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
discardStaged(jobId: string): Promise<void> {
|
|
326
|
+
return this.#withJobLock(jobId, () => Promise.resolve(this.#clearJobData(jobId)));
|
|
327
|
+
}
|
|
347
328
|
|
|
348
|
-
|
|
329
|
+
#clearJobData(jobId: string) {
|
|
330
|
+
this.#notesForJob.delete(jobId);
|
|
331
|
+
this.#jobLocks.delete(jobId);
|
|
349
332
|
}
|
|
350
333
|
|
|
351
334
|
/**
|
|
352
|
-
*
|
|
353
|
-
*
|
|
354
|
-
*
|
|
355
|
-
* as spent/nullified. The operation is atomic - if any nullifier is not found,
|
|
356
|
-
* the entire operation fails and no notes are modified.
|
|
357
|
-
*
|
|
358
|
-
* @param nullifiers - Array of nullifiers with their block numbers to process
|
|
359
|
-
* @returns Promise resolving to array of nullified NoteDao objects
|
|
360
|
-
* @throws Error if any nullifier is not found in the active notes
|
|
335
|
+
* Functions run withJobLock are forced to wait for each other, i.e. if they share a `jobId`, they run serially
|
|
336
|
+
* instead of concurrently. This is needed because staged data is stored in memory, and concurrent async operations
|
|
337
|
+
* (e.g., Promise.all in `validateAndStoreNote`) could otherwise interleave and corrupt state.
|
|
361
338
|
*/
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
339
|
+
async #withJobLock<T>(jobId: string, fn: () => Promise<T>): Promise<T> {
|
|
340
|
+
let lock = this.#jobLocks.get(jobId);
|
|
341
|
+
if (!lock) {
|
|
342
|
+
lock = new Semaphore(1);
|
|
343
|
+
this.#jobLocks.set(jobId, lock);
|
|
365
344
|
}
|
|
345
|
+
await lock.acquire();
|
|
346
|
+
try {
|
|
347
|
+
return await fn();
|
|
348
|
+
} finally {
|
|
349
|
+
lock.release();
|
|
350
|
+
}
|
|
351
|
+
}
|
|
366
352
|
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
if (!noteBuffer) {
|
|
376
|
-
// Check if already nullified (noteId === siloedNullifier, so we can check #nullifiedNotes directly)
|
|
377
|
-
if (await this.#nullifiedNotes.hasAsync(noteId)) {
|
|
378
|
-
throw new Error(`Nullifier already applied in applyNullifiers`);
|
|
379
|
-
}
|
|
380
|
-
throw new Error('Nullifier not found in applyNullifiers');
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
const noteScopes = await toArray(this.#notesToScope.getValuesAsync(noteId));
|
|
384
|
-
if (noteScopes.length === 0) {
|
|
385
|
-
// We should never run into this error because notes always have a scope assigned to them - either on initial
|
|
386
|
-
// insertion via `addNotes` or when removing their nullifiers.
|
|
387
|
-
throw new Error('Note scopes are missing in applyNullifiers');
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
const note = NoteDao.fromBuffer(noteBuffer);
|
|
391
|
-
|
|
392
|
-
nullifiedNotes.push(note);
|
|
393
|
-
|
|
394
|
-
await this.#notes.delete(noteId);
|
|
395
|
-
await this.#notesToScope.delete(noteId);
|
|
353
|
+
#getNotesForJob(jobId: string): Map<string, StoredNote> {
|
|
354
|
+
let notesForJob = this.#notesForJob.get(jobId);
|
|
355
|
+
if (!notesForJob) {
|
|
356
|
+
notesForJob = new Map();
|
|
357
|
+
this.#notesForJob.set(jobId, notesForJob);
|
|
358
|
+
}
|
|
359
|
+
return notesForJob;
|
|
360
|
+
}
|
|
396
361
|
|
|
397
|
-
|
|
362
|
+
async #nullifiersOfContract(contractAddress: AztecAddress, jobId: string): Promise<Set<string>> {
|
|
363
|
+
// Collect persisted nullifiers for this contract
|
|
364
|
+
const persistedNullifiers: string[] = await toArray(
|
|
365
|
+
this.#nullifiersByContractAddress.getValuesAsync(contractAddress.toString()),
|
|
366
|
+
);
|
|
398
367
|
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
368
|
+
// Collect staged nullifiers from the job where the note's contract matches
|
|
369
|
+
const stagedNullifiers = this.#getNotesForJob(jobId)
|
|
370
|
+
.values()
|
|
371
|
+
.filter(storedNote => storedNote.noteDao.contractAddress.equals(contractAddress))
|
|
372
|
+
.map(storedNote => storedNote.noteDao.siloedNullifier.toString());
|
|
403
373
|
|
|
404
|
-
|
|
405
|
-
await this.#nullifiedNotesToScope.set(noteId, scope);
|
|
406
|
-
}
|
|
407
|
-
await this.#nullifiedNotes.set(noteId, note.toBuffer());
|
|
408
|
-
await this.#nullifiersByBlockNumber.set(blockNumber, noteId);
|
|
409
|
-
await this.#nullifiedNotesByContract.set(note.contractAddress.toString(), noteId);
|
|
410
|
-
await this.#nullifiedNotesByStorageSlot.set(note.storageSlot.toString(), noteId);
|
|
411
|
-
}
|
|
412
|
-
return nullifiedNotes;
|
|
413
|
-
});
|
|
374
|
+
return new Set([...persistedNullifiers, ...stagedNullifiers]);
|
|
414
375
|
}
|
|
415
376
|
}
|