@aztec/pxe 0.0.1-commit.c80b6263 → 0.0.1-commit.cd76b27
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/access_scopes.d.ts +9 -0
- package/dest/access_scopes.d.ts.map +1 -0
- package/dest/access_scopes.js +6 -0
- package/dest/block_synchronizer/block_synchronizer.d.ts +4 -2
- package/dest/block_synchronizer/block_synchronizer.d.ts.map +1 -1
- package/dest/block_synchronizer/block_synchronizer.js +7 -1
- package/dest/config/package_info.js +1 -1
- package/dest/contract_function_simulator/contract_function_simulator.d.ts +54 -30
- package/dest/contract_function_simulator/contract_function_simulator.d.ts.map +1 -1
- package/dest/contract_function_simulator/contract_function_simulator.js +172 -68
- 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 +2 -2
- package/dest/contract_function_simulator/noir-structs/note_validation_request.d.ts.map +1 -1
- package/dest/contract_function_simulator/noir-structs/note_validation_request.js +1 -1
- package/dest/contract_function_simulator/oracle/interfaces.d.ts +9 -9
- package/dest/contract_function_simulator/oracle/interfaces.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/oracle.d.ts +5 -5
- package/dest/contract_function_simulator/oracle/oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/oracle.js +32 -20
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts +36 -36
- package/dest/contract_function_simulator/oracle/private_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/private_execution_oracle.js +74 -21
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts +48 -24
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.d.ts.map +1 -1
- package/dest/contract_function_simulator/oracle/utility_execution_oracle.js +85 -61
- package/dest/contract_sync/contract_sync_service.d.ts +43 -0
- package/dest/contract_sync/contract_sync_service.d.ts.map +1 -0
- package/dest/contract_sync/contract_sync_service.js +97 -0
- package/dest/contract_sync/helpers.d.ts +29 -0
- package/dest/contract_sync/helpers.d.ts.map +1 -0
- package/dest/contract_sync/{index.js → helpers.js} +13 -12
- package/dest/debug/pxe_debug_utils.d.ts +14 -10
- package/dest/debug/pxe_debug_utils.d.ts.map +1 -1
- package/dest/debug/pxe_debug_utils.js +16 -15
- package/dest/entrypoints/client/bundle/index.d.ts +3 -1
- package/dest/entrypoints/client/bundle/index.d.ts.map +1 -1
- package/dest/entrypoints/client/bundle/index.js +2 -0
- 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 +11 -2
- package/dest/entrypoints/client/lazy/index.d.ts +3 -1
- package/dest/entrypoints/client/lazy/index.d.ts.map +1 -1
- package/dest/entrypoints/client/lazy/index.js +2 -0
- package/dest/entrypoints/client/lazy/utils.d.ts +1 -1
- package/dest/entrypoints/client/lazy/utils.d.ts.map +1 -1
- package/dest/entrypoints/client/lazy/utils.js +11 -2
- package/dest/entrypoints/server/index.d.ts +4 -2
- package/dest/entrypoints/server/index.d.ts.map +1 -1
- package/dest/entrypoints/server/index.js +3 -1
- package/dest/entrypoints/server/utils.js +9 -1
- package/dest/events/event_service.d.ts +4 -5
- package/dest/events/event_service.d.ts.map +1 -1
- package/dest/events/event_service.js +5 -6
- package/dest/logs/log_service.d.ts +6 -5
- package/dest/logs/log_service.d.ts.map +1 -1
- package/dest/logs/log_service.js +14 -24
- package/dest/notes/note_service.d.ts +7 -7
- package/dest/notes/note_service.d.ts.map +1 -1
- package/dest/notes/note_service.js +9 -9
- package/dest/notes_filter.d.ts +25 -0
- package/dest/notes_filter.d.ts.map +1 -0
- package/dest/notes_filter.js +4 -0
- package/dest/oracle_version.d.ts +3 -3
- package/dest/oracle_version.d.ts.map +1 -1
- package/dest/oracle_version.js +2 -2
- package/dest/private_kernel/hints/compute_tx_expiration_timestamp.d.ts +4 -0
- package/dest/private_kernel/hints/compute_tx_expiration_timestamp.d.ts.map +1 -0
- package/dest/private_kernel/hints/{compute_tx_include_by_timestamp.js → compute_tx_expiration_timestamp.js} +12 -12
- package/dest/private_kernel/hints/index.d.ts +1 -1
- package/dest/private_kernel/hints/index.js +1 -1
- package/dest/private_kernel/hints/private_kernel_reset_private_inputs_builder.js +4 -4
- package/dest/private_kernel/private_kernel_execution_prover.js +6 -6
- package/dest/pxe.d.ts +69 -23
- package/dest/pxe.d.ts.map +1 -1
- package/dest/pxe.js +78 -50
- package/dest/storage/address_store/address_store.d.ts +1 -1
- package/dest/storage/address_store/address_store.d.ts.map +1 -1
- package/dest/storage/address_store/address_store.js +12 -11
- package/dest/storage/anchor_block_store/anchor_block_store.d.ts +9 -1
- package/dest/storage/anchor_block_store/anchor_block_store.d.ts.map +1 -1
- package/dest/storage/anchor_block_store/anchor_block_store.js +8 -1
- package/dest/storage/capsule_store/capsule_store.js +6 -8
- package/dest/storage/contract_store/contract_store.d.ts +1 -1
- package/dest/storage/contract_store/contract_store.d.ts.map +1 -1
- package/dest/storage/contract_store/contract_store.js +27 -18
- package/dest/storage/metadata.d.ts +1 -1
- package/dest/storage/metadata.js +1 -1
- package/dest/storage/note_store/note_store.d.ts +13 -3
- package/dest/storage/note_store/note_store.d.ts.map +1 -1
- package/dest/storage/note_store/note_store.js +147 -107
- package/dest/storage/private_event_store/private_event_store.d.ts +1 -1
- package/dest/storage/private_event_store/private_event_store.d.ts.map +1 -1
- package/dest/storage/private_event_store/private_event_store.js +84 -61
- package/dest/storage/private_event_store/stored_private_event.js +1 -1
- package/dest/storage/tagging_store/recipient_tagging_store.d.ts +1 -1
- package/dest/storage/tagging_store/recipient_tagging_store.d.ts.map +1 -1
- package/dest/storage/tagging_store/recipient_tagging_store.js +31 -19
- package/dest/storage/tagging_store/sender_address_book_store.d.ts +1 -1
- package/dest/storage/tagging_store/sender_address_book_store.d.ts.map +1 -1
- package/dest/storage/tagging_store/sender_address_book_store.js +20 -14
- package/dest/storage/tagging_store/sender_tagging_store.d.ts +1 -1
- package/dest/storage/tagging_store/sender_tagging_store.d.ts.map +1 -1
- package/dest/storage/tagging_store/sender_tagging_store.js +183 -113
- package/dest/tagging/get_all_logs_by_tags.d.ts +1 -1
- package/dest/tagging/get_all_logs_by_tags.d.ts.map +1 -1
- package/dest/tagging/get_all_logs_by_tags.js +17 -3
- package/dest/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.js +4 -4
- package/dest/tagging/recipient_sync/utils/find_highest_indexes.js +2 -2
- package/package.json +25 -16
- package/src/access_scopes.ts +9 -0
- package/src/block_synchronizer/block_synchronizer.ts +6 -0
- package/src/config/package_info.ts +1 -1
- package/src/contract_function_simulator/contract_function_simulator.ts +321 -125
- 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 +10 -10
- package/src/contract_function_simulator/oracle/oracle.ts +35 -18
- package/src/contract_function_simulator/oracle/private_execution_oracle.ts +97 -101
- package/src/contract_function_simulator/oracle/utility_execution_oracle.ts +129 -63
- package/src/contract_sync/contract_sync_service.ts +152 -0
- package/src/contract_sync/{index.ts → helpers.ts} +21 -21
- package/src/debug/pxe_debug_utils.ts +48 -18
- package/src/entrypoints/client/bundle/index.ts +2 -0
- package/src/entrypoints/client/bundle/utils.ts +12 -2
- package/src/entrypoints/client/lazy/index.ts +2 -0
- package/src/entrypoints/client/lazy/utils.ts +12 -2
- package/src/entrypoints/server/index.ts +3 -1
- package/src/entrypoints/server/utils.ts +7 -7
- package/src/events/event_service.ts +4 -6
- package/src/logs/log_service.ts +14 -29
- package/src/notes/note_service.ts +9 -10
- package/src/notes_filter.ts +26 -0
- package/src/oracle_version.ts +2 -2
- package/src/private_kernel/hints/{compute_tx_include_by_timestamp.ts → compute_tx_expiration_timestamp.ts} +13 -13
- package/src/private_kernel/hints/index.ts +1 -1
- package/src/private_kernel/hints/private_kernel_reset_private_inputs_builder.ts +7 -7
- package/src/private_kernel/private_kernel_execution_prover.ts +6 -6
- package/src/pxe.ts +161 -98
- package/src/storage/address_store/address_store.ts +15 -15
- package/src/storage/anchor_block_store/anchor_block_store.ts +8 -0
- package/src/storage/capsule_store/capsule_store.ts +8 -8
- package/src/storage/contract_store/contract_store.ts +26 -15
- package/src/storage/metadata.ts +1 -1
- package/src/storage/note_store/note_store.ts +169 -132
- package/src/storage/private_event_store/private_event_store.ts +102 -81
- package/src/storage/private_event_store/stored_private_event.ts +1 -1
- package/src/storage/tagging_store/recipient_tagging_store.ts +31 -21
- package/src/storage/tagging_store/sender_address_book_store.ts +20 -14
- package/src/storage/tagging_store/sender_tagging_store.ts +210 -126
- package/src/tagging/get_all_logs_by_tags.ts +28 -4
- package/src/tagging/recipient_sync/load_private_logs_for_sender_recipient_pair.ts +4 -4
- package/src/tagging/recipient_sync/utils/find_highest_indexes.ts +2 -2
- package/dest/contract_sync/index.d.ts +0 -23
- package/dest/contract_sync/index.d.ts.map +0 -1
- package/dest/private_kernel/hints/compute_tx_include_by_timestamp.d.ts +0 -4
- package/dest/private_kernel/hints/compute_tx_include_by_timestamp.d.ts.map +0 -1
|
@@ -42,10 +42,12 @@ export class ContractStore {
|
|
|
42
42
|
/** Map from contract address to contract class id */
|
|
43
43
|
#contractClassIdMap: Map<string, Fr> = new Map();
|
|
44
44
|
|
|
45
|
+
#store: AztecAsyncKVStore;
|
|
45
46
|
#contractArtifacts: AztecAsyncMap<string, Buffer>;
|
|
46
47
|
#contractInstances: AztecAsyncMap<string, Buffer>;
|
|
47
48
|
|
|
48
49
|
constructor(store: AztecAsyncKVStore) {
|
|
50
|
+
this.#store = store;
|
|
49
51
|
this.#contractArtifacts = store.openMap('contract_artifacts');
|
|
50
52
|
this.#contractInstances = store.openMap('contracts_instances');
|
|
51
53
|
}
|
|
@@ -53,6 +55,7 @@ export class ContractStore {
|
|
|
53
55
|
// Setters
|
|
54
56
|
|
|
55
57
|
public async addContractArtifact(id: Fr, contract: ContractArtifact): Promise<void> {
|
|
58
|
+
// Validation outside transactionAsync - these are not DB operations
|
|
56
59
|
const privateFunctions = contract.functions.filter(
|
|
57
60
|
functionArtifact => functionArtifact.functionType === FunctionType.PRIVATE,
|
|
58
61
|
);
|
|
@@ -69,7 +72,9 @@ export class ContractStore {
|
|
|
69
72
|
throw new Error('Repeated function selectors of private functions');
|
|
70
73
|
}
|
|
71
74
|
|
|
72
|
-
await this.#
|
|
75
|
+
await this.#store.transactionAsync(() =>
|
|
76
|
+
this.#contractArtifacts.set(id.toString(), contractArtifactToBuffer(contract)),
|
|
77
|
+
);
|
|
73
78
|
}
|
|
74
79
|
|
|
75
80
|
async addContractInstance(contract: ContractInstanceWithAddress): Promise<void> {
|
|
@@ -123,21 +128,27 @@ export class ContractStore {
|
|
|
123
128
|
|
|
124
129
|
// Public getters
|
|
125
130
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
131
|
+
getContractsAddresses(): Promise<AztecAddress[]> {
|
|
132
|
+
return this.#store.transactionAsync(async () => {
|
|
133
|
+
const keys = await toArray(this.#contractInstances.keysAsync());
|
|
134
|
+
return keys.map(AztecAddress.fromString);
|
|
135
|
+
});
|
|
129
136
|
}
|
|
130
137
|
|
|
131
138
|
/** Returns a contract instance for a given address. Throws if not found. */
|
|
132
|
-
public
|
|
133
|
-
|
|
134
|
-
|
|
139
|
+
public getContractInstance(contractAddress: AztecAddress): Promise<ContractInstanceWithAddress | undefined> {
|
|
140
|
+
return this.#store.transactionAsync(async () => {
|
|
141
|
+
const contract = await this.#contractInstances.getAsync(contractAddress.toString());
|
|
142
|
+
return contract && SerializableContractInstance.fromBuffer(contract).withAddress(contractAddress);
|
|
143
|
+
});
|
|
135
144
|
}
|
|
136
145
|
|
|
137
|
-
public
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
146
|
+
public getContractArtifact(contractClassId: Fr): Promise<ContractArtifact | undefined> {
|
|
147
|
+
return this.#store.transactionAsync(async () => {
|
|
148
|
+
const contract = await this.#contractArtifacts.getAsync(contractClassId.toString());
|
|
149
|
+
// TODO(@spalladino): AztecAsyncMap lies and returns Uint8Arrays instead of Buffers, hence the extra Buffer.from.
|
|
150
|
+
return contract && contractArtifactFromBuffer(Buffer.from(contract));
|
|
151
|
+
});
|
|
141
152
|
}
|
|
142
153
|
|
|
143
154
|
/** Returns a contract class for a given class id. Throws if not found. */
|
|
@@ -305,15 +316,15 @@ export class ContractStore {
|
|
|
305
316
|
throw new Error(`Unknown function ${functionName} in contract ${contract.name}.`);
|
|
306
317
|
}
|
|
307
318
|
|
|
308
|
-
return {
|
|
319
|
+
return FunctionCall.from({
|
|
309
320
|
name: functionDao.name,
|
|
310
|
-
|
|
321
|
+
to,
|
|
311
322
|
selector: await FunctionSelector.fromNameAndParameters(functionDao.name, functionDao.parameters),
|
|
312
323
|
type: functionDao.functionType,
|
|
313
|
-
to,
|
|
314
324
|
hideMsgSender: false,
|
|
315
325
|
isStatic: functionDao.isStatic,
|
|
326
|
+
args: encodeArguments(functionDao, args),
|
|
316
327
|
returnTypes: functionDao.returnTypes,
|
|
317
|
-
};
|
|
328
|
+
});
|
|
318
329
|
}
|
|
319
330
|
}
|
package/src/storage/metadata.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const PXE_DATA_SCHEMA_VERSION =
|
|
1
|
+
export const PXE_DATA_SCHEMA_VERSION = 3;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { toArray } from '@aztec/foundation/iterable';
|
|
2
1
|
import { Semaphore } from '@aztec/foundation/queue';
|
|
3
2
|
import type { Fr } from '@aztec/foundation/schemas';
|
|
4
3
|
import type { AztecAsyncKVStore, AztecAsyncMap, AztecAsyncMultiMap } from '@aztec/kv-store';
|
|
5
4
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
6
5
|
import type { DataInBlock } from '@aztec/stdlib/block';
|
|
7
|
-
import { NoteDao, NoteStatus
|
|
6
|
+
import { NoteDao, NoteStatus } from '@aztec/stdlib/note';
|
|
8
7
|
|
|
9
8
|
import type { StagedStore } from '../../job_coordinator/job_coordinator.js';
|
|
9
|
+
import type { NotesFilter } from '../../notes_filter.js';
|
|
10
10
|
import { StoredNote } from './stored_note.js';
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -68,32 +68,26 @@ export class NoteStore implements StagedStore {
|
|
|
68
68
|
* @param jobId - The job context for staged writes
|
|
69
69
|
*/
|
|
70
70
|
public addNotes(notes: NoteDao[], scope: AztecAddress, jobId: string): Promise<void[]> {
|
|
71
|
-
return this.#withJobLock(jobId, () =>
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
71
|
+
return this.#withJobLock(jobId, () =>
|
|
72
|
+
this.#store.transactionAsync(() =>
|
|
73
|
+
Promise.all(
|
|
74
|
+
notes.map(async note => {
|
|
75
|
+
const noteForJob =
|
|
76
|
+
(await this.#readNote(note.siloedNullifier.toString(), jobId)) ?? new StoredNote(note, new Set());
|
|
77
|
+
noteForJob.addScope(scope.toString());
|
|
78
|
+
this.#writeNote(noteForJob, jobId);
|
|
79
|
+
}),
|
|
80
|
+
),
|
|
81
|
+
),
|
|
82
|
+
);
|
|
81
83
|
}
|
|
82
84
|
|
|
83
85
|
async #readNote(nullifier: string, jobId: string): Promise<StoredNote | undefined> {
|
|
84
|
-
//
|
|
85
|
-
|
|
86
|
-
if (noteForJob) {
|
|
87
|
-
return noteForJob;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// Then check persistent storage
|
|
86
|
+
// Always issue DB read to keep IndexedDB transaction alive (they auto-commit when a new micro-task starts and there
|
|
87
|
+
// are no pending read requests). The staged value still takes precedence if it exists.
|
|
91
88
|
const noteBuffer = await this.#notes.getAsync(nullifier);
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
return undefined;
|
|
89
|
+
const noteForJob = this.#getNotesForJob(jobId).get(nullifier);
|
|
90
|
+
return noteForJob ?? (noteBuffer ? StoredNote.fromBuffer(noteBuffer) : undefined);
|
|
97
91
|
}
|
|
98
92
|
|
|
99
93
|
#writeNote(note: StoredNote, jobId: string) {
|
|
@@ -110,59 +104,102 @@ export class NoteStore implements StagedStore {
|
|
|
110
104
|
* @params jobId - the job context to read from.
|
|
111
105
|
* @returns Filtered and deduplicated notes (a note might be present in multiple scopes - we ensure it is only
|
|
112
106
|
* returned once if this is the case)
|
|
113
|
-
* @throws If filtering by an empty scopes array. Scopes have to be set to undefined or to a non-empty array.
|
|
114
107
|
*/
|
|
115
|
-
|
|
116
|
-
if (filter.scopes !==
|
|
117
|
-
|
|
108
|
+
getNotes(filter: NotesFilter, jobId: string): Promise<NoteDao[]> {
|
|
109
|
+
if (filter.scopes !== 'ALL_SCOPES' && filter.scopes.length === 0) {
|
|
110
|
+
return Promise.resolve([]);
|
|
118
111
|
}
|
|
119
112
|
|
|
120
|
-
|
|
113
|
+
return this.#store.transactionAsync(async () => {
|
|
114
|
+
const targetStatus = filter.status ?? NoteStatus.ACTIVE;
|
|
115
|
+
|
|
116
|
+
// The code below might read a bit unnatural, the reason is that we need to be careful in how we use `await` inside
|
|
117
|
+
// `transactionAsync`, otherwise browsers might choose to auto-commit the IndexedDB transaction forcing us to
|
|
118
|
+
// explicitly handle that condition. The rule we need to honor is: do not await unless you generate a database
|
|
119
|
+
// read or write or you're done using the DB for the remainder of the transaction. The following sequence is
|
|
120
|
+
// unsafe in IndexedDB:
|
|
121
|
+
//
|
|
122
|
+
// 1. start transactionAsync()
|
|
123
|
+
// 2. await readDb() <-- OK, transaction alive because we issued DB ops
|
|
124
|
+
// 3. run a bunch of computations (no await involved) <-- OK, tx alive because we are in the same microtask
|
|
125
|
+
// 4. await doSthNotInDb() <-- no DB ops issued in this task, browser's free to decide to commit the tx
|
|
126
|
+
// 5. await readDb() <-- BOOM, TransactionInactiveError
|
|
127
|
+
//
|
|
128
|
+
// Note that the real issue is in step number 5: we try to continue using a transaction that the browser might
|
|
129
|
+
// have already committed.
|
|
130
|
+
//
|
|
131
|
+
// We need to read candidate notes which are either indexed by contract address in the DB (in
|
|
132
|
+
// #nullifiersByContractAddress), or lie in memory for the not yet committed `jobId`.
|
|
133
|
+
// So we collect promises based on both sources without awaiting for them.
|
|
134
|
+
const noteReadPromises: Map<string, Promise<StoredNote | undefined>> = new Map();
|
|
135
|
+
|
|
136
|
+
// Awaiting the getValuesAsync iterator is fine because it's reading from the DB
|
|
137
|
+
for await (const nullifier of this.#nullifiersByContractAddress.getValuesAsync(
|
|
138
|
+
filter.contractAddress.toString(),
|
|
139
|
+
)) {
|
|
140
|
+
// Each #readNote will perform a DB read
|
|
141
|
+
noteReadPromises.set(nullifier, this.#readNote(nullifier, jobId));
|
|
142
|
+
}
|
|
121
143
|
|
|
122
|
-
|
|
144
|
+
// Add staged nullifiers from job, no awaits involved, so we are fine
|
|
145
|
+
for (const storedNote of this.#getNotesForJob(jobId).values()) {
|
|
146
|
+
if (storedNote.noteDao.contractAddress.equals(filter.contractAddress)) {
|
|
147
|
+
const nullifier = storedNote.noteDao.siloedNullifier.toString();
|
|
148
|
+
if (!noteReadPromises.has(nullifier)) {
|
|
149
|
+
noteReadPromises.set(nullifier, Promise.resolve(storedNote));
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
123
153
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
const note = await this.#readNote(nullifier, jobId);
|
|
154
|
+
// By now we have pending DB requests from all the #readNote calls. Await them all together.
|
|
155
|
+
const notes = await Promise.all(noteReadPromises.values());
|
|
127
156
|
|
|
128
|
-
//
|
|
129
|
-
|
|
130
|
-
throw new Error('PXE note database is corrupted.');
|
|
131
|
-
}
|
|
157
|
+
// The rest of the function is await-free, and just deals with filtering and sorting our findings.
|
|
158
|
+
const foundNotes: Map<string, NoteDao> = new Map();
|
|
132
159
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
160
|
+
for (const note of notes) {
|
|
161
|
+
// Defensive: hitting this case means we're mishandling contract indices or in-memory job data
|
|
162
|
+
if (!note) {
|
|
163
|
+
throw new Error('PXE note database is corrupted.');
|
|
164
|
+
}
|
|
137
165
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
166
|
+
// Apply filters
|
|
167
|
+
if (targetStatus === NoteStatus.ACTIVE && note.isNullified()) {
|
|
168
|
+
continue;
|
|
169
|
+
}
|
|
141
170
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
171
|
+
if (filter.owner && !note.noteDao.owner.equals(filter.owner)) {
|
|
172
|
+
continue;
|
|
173
|
+
}
|
|
145
174
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
175
|
+
if (filter.storageSlot && !note.noteDao.storageSlot.equals(filter.storageSlot)) {
|
|
176
|
+
continue;
|
|
177
|
+
}
|
|
149
178
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
179
|
+
if (filter.siloedNullifier && !note.noteDao.siloedNullifier.equals(filter.siloedNullifier)) {
|
|
180
|
+
continue;
|
|
181
|
+
}
|
|
153
182
|
|
|
154
|
-
|
|
155
|
-
|
|
183
|
+
if (
|
|
184
|
+
filter.scopes !== 'ALL_SCOPES' &&
|
|
185
|
+
note.scopes.intersection(new Set(filter.scopes.map(s => s.toString()))).size === 0
|
|
186
|
+
) {
|
|
187
|
+
continue;
|
|
188
|
+
}
|
|
156
189
|
|
|
157
|
-
|
|
158
|
-
return [...foundNotes.values()].sort((a, b) => {
|
|
159
|
-
if (a.l2BlockNumber !== b.l2BlockNumber) {
|
|
160
|
-
return a.l2BlockNumber - b.l2BlockNumber;
|
|
161
|
-
}
|
|
162
|
-
if (a.txIndexInBlock !== b.txIndexInBlock) {
|
|
163
|
-
return a.txIndexInBlock - b.txIndexInBlock;
|
|
190
|
+
foundNotes.set(note.noteDao.siloedNullifier.toString(), note.noteDao);
|
|
164
191
|
}
|
|
165
|
-
|
|
192
|
+
|
|
193
|
+
// Sort by block number, then by tx index within block, then by note index within tx
|
|
194
|
+
return [...foundNotes.values()].sort((a, b) => {
|
|
195
|
+
if (a.l2BlockNumber !== b.l2BlockNumber) {
|
|
196
|
+
return a.l2BlockNumber - b.l2BlockNumber;
|
|
197
|
+
}
|
|
198
|
+
if (a.txIndexInBlock !== b.txIndexInBlock) {
|
|
199
|
+
return a.txIndexInBlock - b.txIndexInBlock;
|
|
200
|
+
}
|
|
201
|
+
return a.noteIndexInTx - b.noteIndexInTx;
|
|
202
|
+
});
|
|
166
203
|
});
|
|
167
204
|
}
|
|
168
205
|
|
|
@@ -182,12 +219,16 @@ export class NoteStore implements StagedStore {
|
|
|
182
219
|
* @throws Error if any nullifier is not found in this notes store
|
|
183
220
|
*/
|
|
184
221
|
applyNullifiers(nullifiers: DataInBlock<Fr>[], jobId: string): Promise<NoteDao[]> {
|
|
222
|
+
if (nullifiers.length === 0) {
|
|
223
|
+
return Promise.resolve([]);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
if (nullifiers.some(n => n.l2BlockNumber === 0)) {
|
|
227
|
+
return Promise.reject(new Error('applyNullifiers: nullifiers cannot have been emitted at block 0'));
|
|
228
|
+
}
|
|
229
|
+
|
|
185
230
|
return this.#withJobLock(jobId, () =>
|
|
186
231
|
this.#store.transactionAsync(async () => {
|
|
187
|
-
if (nullifiers.length === 0) {
|
|
188
|
-
return [];
|
|
189
|
-
}
|
|
190
|
-
|
|
191
232
|
const notesToNullify = await Promise.all(
|
|
192
233
|
nullifiers.map(async nullifierInBlock => {
|
|
193
234
|
const nullifier = nullifierInBlock.data.toString();
|
|
@@ -197,14 +238,13 @@ export class NoteStore implements StagedStore {
|
|
|
197
238
|
throw new Error(`Attempted to mark a note as nullified which does not exist in PXE DB`);
|
|
198
239
|
}
|
|
199
240
|
|
|
200
|
-
return { storedNote
|
|
241
|
+
return { storedNote, blockNumber: nullifierInBlock.l2BlockNumber };
|
|
201
242
|
}),
|
|
202
243
|
);
|
|
203
244
|
|
|
204
245
|
const notesNullifiedInThisCall: Map<string, NoteDao> = new Map();
|
|
205
246
|
for (const noteToNullify of notesToNullify) {
|
|
206
|
-
|
|
207
|
-
const note = noteToNullify.storedNote!;
|
|
247
|
+
const note = noteToNullify.storedNote;
|
|
208
248
|
|
|
209
249
|
// Skip already nullified notes
|
|
210
250
|
if (note.isNullified()) {
|
|
@@ -249,18 +289,23 @@ export class NoteStore implements StagedStore {
|
|
|
249
289
|
* @param blockNumber - Notes created after this block number will be deleted
|
|
250
290
|
*/
|
|
251
291
|
async #deleteActiveNotesAfterBlock(blockNumber: number): Promise<void> {
|
|
252
|
-
|
|
253
|
-
|
|
292
|
+
// Collect notes to delete during iteration to keep IndexedDB transaction alive.
|
|
293
|
+
const notesToDelete: { nullifier: string; contractAddress: string }[] = [];
|
|
294
|
+
for await (const noteBuffer of this.#notes.valuesAsync()) {
|
|
254
295
|
const storedNote = StoredNote.fromBuffer(noteBuffer);
|
|
255
296
|
if (storedNote.noteDao.l2BlockNumber > blockNumber) {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
noteNullifier,
|
|
261
|
-
);
|
|
297
|
+
notesToDelete.push({
|
|
298
|
+
nullifier: storedNote.noteDao.siloedNullifier.toString(),
|
|
299
|
+
contractAddress: storedNote.noteDao.contractAddress.toString(),
|
|
300
|
+
});
|
|
262
301
|
}
|
|
263
302
|
}
|
|
303
|
+
|
|
304
|
+
// Delete all collected notes. Each delete is a DB operation that keeps the transaction alive.
|
|
305
|
+
for (const { nullifier, contractAddress } of notesToDelete) {
|
|
306
|
+
await this.#notes.delete(nullifier);
|
|
307
|
+
await this.#nullifiersByContractAddress.deleteValue(contractAddress, nullifier);
|
|
308
|
+
}
|
|
264
309
|
}
|
|
265
310
|
|
|
266
311
|
/**
|
|
@@ -273,62 +318,69 @@ export class NoteStore implements StagedStore {
|
|
|
273
318
|
* @param anchorBlockNumber - Upper bound for the block range to process
|
|
274
319
|
*/
|
|
275
320
|
async #rewindNullifiedNotesAfterBlock(blockNumber: number, anchorBlockNumber: number): Promise<void> {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
const
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
return note;
|
|
291
|
-
}),
|
|
292
|
-
);
|
|
293
|
-
|
|
294
|
-
const storedNotes = nullifiedNoteBuffers.map(buffer => StoredNote.fromBuffer(buffer));
|
|
321
|
+
// First pass: collect all nullifiers for all blocks, starting reads during iteration to keep tx alive.
|
|
322
|
+
const nullifiersByBlock: Map<number, { nullifier: string; noteReadPromise: Promise<Buffer | undefined> }[]> =
|
|
323
|
+
new Map();
|
|
324
|
+
|
|
325
|
+
for (let i = blockNumber + 1; i <= anchorBlockNumber; i++) {
|
|
326
|
+
const blockNullifiers: { nullifier: string; noteReadPromise: Promise<Buffer | undefined> }[] = [];
|
|
327
|
+
for await (const nullifier of this.#nullifiersByNullificationBlockNumber.getValuesAsync(i)) {
|
|
328
|
+
// Start read immediately during iteration to keep IndexedDB transaction alive
|
|
329
|
+
blockNullifiers.push({ nullifier, noteReadPromise: this.#notes.getAsync(nullifier) });
|
|
330
|
+
}
|
|
331
|
+
if (blockNullifiers.length > 0) {
|
|
332
|
+
nullifiersByBlock.set(i, blockNullifiers);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
295
335
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
336
|
+
// Second pass: await reads and perform writes
|
|
337
|
+
for (const [block, nullifiers] of nullifiersByBlock) {
|
|
338
|
+
for (const { nullifier, noteReadPromise } of nullifiers) {
|
|
339
|
+
const noteBuffer = await noteReadPromise;
|
|
340
|
+
if (!noteBuffer) {
|
|
341
|
+
throw new Error(`PXE DB integrity error: no note found with nullifier ${nullifier}`);
|
|
342
|
+
}
|
|
299
343
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
throw new Error(`No scopes found for nullified note with nullifier ${noteNullifier}`);
|
|
344
|
+
const storedNote = StoredNote.fromBuffer(noteBuffer);
|
|
345
|
+
if (storedNote.scopes.size === 0) {
|
|
346
|
+
throw new Error(`No scopes found for nullified note with nullifier ${nullifier}`);
|
|
304
347
|
}
|
|
305
348
|
|
|
306
349
|
storedNote.markAsActive();
|
|
307
350
|
|
|
308
351
|
await Promise.all([
|
|
309
|
-
this.#notes.set(
|
|
310
|
-
this.#nullifiersByNullificationBlockNumber.deleteValue(
|
|
352
|
+
this.#notes.set(nullifier, storedNote.toBuffer()),
|
|
353
|
+
this.#nullifiersByNullificationBlockNumber.deleteValue(block, nullifier),
|
|
311
354
|
]);
|
|
312
355
|
}
|
|
313
356
|
}
|
|
314
357
|
}
|
|
315
358
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
359
|
+
/**
|
|
360
|
+
* Commits in memory job data to persistent storage.
|
|
361
|
+
*
|
|
362
|
+
* Called by JobCoordinator when a job completes successfully.
|
|
363
|
+
*
|
|
364
|
+
* Note: JobCoordinator wraps all commits in a single transaction, so we don't need our own transactionAsync here
|
|
365
|
+
* (and using one would throw on IndexedDB as it does not support nested txs).
|
|
366
|
+
*
|
|
367
|
+
* @param jobId - The jobId identifying which staged data to commit
|
|
368
|
+
*/
|
|
369
|
+
async commit(jobId: string): Promise<void> {
|
|
370
|
+
for (const [nullifier, storedNote] of this.#getNotesForJob(jobId)) {
|
|
371
|
+
await this.#notes.set(nullifier, storedNote.toBuffer());
|
|
372
|
+
await this.#nullifiersByContractAddress.set(storedNote.noteDao.contractAddress.toString(), nullifier);
|
|
373
|
+
if (storedNote.nullifiedAt !== undefined) {
|
|
374
|
+
await this.#nullifiersByNullificationBlockNumber.set(storedNote.nullifiedAt, nullifier);
|
|
324
375
|
}
|
|
376
|
+
}
|
|
325
377
|
|
|
326
|
-
|
|
327
|
-
});
|
|
378
|
+
this.#clearJobData(jobId);
|
|
328
379
|
}
|
|
329
380
|
|
|
330
381
|
discardStaged(jobId: string): Promise<void> {
|
|
331
|
-
|
|
382
|
+
this.#clearJobData(jobId);
|
|
383
|
+
return Promise.resolve();
|
|
332
384
|
}
|
|
333
385
|
|
|
334
386
|
#clearJobData(jobId: string) {
|
|
@@ -363,19 +415,4 @@ export class NoteStore implements StagedStore {
|
|
|
363
415
|
}
|
|
364
416
|
return notesForJob;
|
|
365
417
|
}
|
|
366
|
-
|
|
367
|
-
async #nullifiersOfContract(contractAddress: AztecAddress, jobId: string): Promise<Set<string>> {
|
|
368
|
-
// Collect persisted nullifiers for this contract
|
|
369
|
-
const persistedNullifiers: string[] = await toArray(
|
|
370
|
-
this.#nullifiersByContractAddress.getValuesAsync(contractAddress.toString()),
|
|
371
|
-
);
|
|
372
|
-
|
|
373
|
-
// Collect staged nullifiers from the job where the note's contract matches
|
|
374
|
-
const stagedNullifiers = this.#getNotesForJob(jobId)
|
|
375
|
-
.values()
|
|
376
|
-
.filter(storedNote => storedNote.noteDao.contractAddress.equals(contractAddress))
|
|
377
|
-
.map(storedNote => storedNote.noteDao.siloedNullifier.toString());
|
|
378
|
-
|
|
379
|
-
return new Set([...persistedNullifiers, ...stagedNullifiers]);
|
|
380
|
-
}
|
|
381
418
|
}
|