1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
//! Provides note importing methods.
//!
//! This module allows users to import notes into the client's store.
//! Depending on the variant of [`NoteFile`] provided, the client will either fetch note details
//! from the network or create a new note record from supplied data. If a note already exists in
//! the store, it is updated with the new information. Additionally, the appropriate note tag
//! is tracked based on the imported note's metadata.
//!
//! For more specific information on how the process is performed, refer to the docs for
//! [`Client::import_note()`].
use alloc::collections::{BTreeMap, BTreeSet};
use alloc::string::ToString;
use alloc::vec::Vec;
use miden_protocol::block::BlockNumber;
use miden_protocol::note::{
Note,
NoteAttachments,
NoteDetails,
NoteDetailsCommitment,
NoteId,
NoteInclusionProof,
NoteTag,
};
use miden_standards::note::NoteFile;
use miden_tx::auth::TransactionAuthenticator;
use crate::rpc::domain::note::{FetchedNote, ResolvedNoteContent, SyncedNote};
use crate::rpc::{NoteContentFetch, RpcError};
use crate::store::input_note_states::ExpectedNoteState;
use crate::store::{InputNoteRecord, InputNoteState, NoteFilter};
use crate::sync::NoteTagRecord;
use crate::{Client, ClientError};
/// Note importing methods.
impl<AUTH> Client<AUTH>
where
AUTH: TransactionAuthenticator + Sync + 'static,
{
// INPUT NOTE CREATION
// --------------------------------------------------------------------------------------------
/// Imports a batch of new input notes into the client's store. The information stored depends
/// on the type of note files provided. If the notes existed previously, it will be updated
/// with the new information. The tags specified by the `NoteFile`s will start being
/// tracked. Returns the details commitments of notes that were successfully imported or
/// updated. The details commitment is used (rather than the note ID) because notes imported
/// without metadata — e.g. from [`NoteFile::ExpectedNote`] in an `Expected` state — have no
/// note ID yet, whereas the details commitment is always available.
///
/// - If the note files are [`NoteFile::NoteId`], the notes are fetched from the node and stored
/// in the client's store. If the note is private or doesn't exist, an error is returned.
/// - If the note files are [`NoteFile::ExpectedNote`], new notes are created with the provided
/// details and tags.
/// - If the note files are [`NoteFile::Committed`], the notes are stored with the provided
/// inclusion proof and metadata. The block header data is only fetched from the node if the
/// note is committed in the past relative to the client.
///
/// # Errors
///
/// - If an attempt is made to overwrite a note that is currently processing.
///
/// Note: This operation is atomic. If any note file is invalid or any existing note is in the
/// processing state, the entire operation fails and no notes are imported.
// TODO: Validations need to be added to the import workflows. For example, when adding a block
// header for a note we need to check the chain root validity, etc.
pub async fn import_notes(
&mut self,
note_files: &[NoteFile],
) -> Result<Vec<NoteDetailsCommitment>, ClientError> {
self.ensure_genesis_in_place().await?;
// Deduplicate the incoming files, keeping note IDs and details commitments in separate
// collections. `NoteFile::NoteId` entries are keyed by their note ID; detail-carrying
// entries (`ExpectedNote`/`Committed`) are keyed by their details commitment, since
// they may have no note ID of their own.
let mut ids = BTreeSet::new();
let mut files_by_commitment = BTreeMap::new();
for note_file in note_files {
match note_file {
NoteFile::NoteId(id) => {
ids.insert(*id);
},
NoteFile::ExpectedNote { details, .. } => {
files_by_commitment.insert(details.commitment(), note_file.clone());
},
NoteFile::Committed { note, .. } => {
files_by_commitment.insert(note.details_commitment(), note_file.clone());
},
}
}
// Resolve previously stored versions: by id for `NoteFile::NoteId`, by details commitment
// otherwise (which also matches metadata-less records, whose `note_id` is NULL).
let previous_by_id: BTreeMap<NoteId, InputNoteRecord> = self
.get_input_notes(NoteFilter::List(ids.iter().copied().collect()))
.await?
.into_iter()
.filter_map(|note| note.id().map(|id| (id, note)))
.collect();
let previous_by_commitment: BTreeMap<NoteDetailsCommitment, InputNoteRecord> = self
.get_input_notes(NoteFilter::DetailsCommitments(
files_by_commitment.keys().copied().collect(),
))
.await?
.into_iter()
.map(|note| (note.details_commitment(), note))
.collect();
// Pair each deduplicated file with its previously stored version (if any), bucketed by
// variant. A note that is currently being processed can't be overwritten.
let mut requests_by_id = BTreeMap::new();
let mut requests_by_details = vec![];
let mut requests_by_proof = vec![];
for id in ids {
let previous_note = previous_by_id.get(&id).cloned();
ensure_not_processing(previous_note.as_ref())?;
requests_by_id.insert(id, previous_note);
}
for (commitment, note_file) in files_by_commitment {
let previous_note = previous_by_commitment.get(&commitment).cloned();
ensure_not_processing(previous_note.as_ref())?;
match note_file {
NoteFile::ExpectedNote { details, sync_hint } => {
requests_by_details.push((
previous_note,
details,
sync_hint.after_block_num(),
Some(sync_hint.tag()),
));
},
NoteFile::Committed { note, proof } => {
requests_by_proof.push((previous_note, note, proof));
},
NoteFile::NoteId(_) => {
unreachable!("files_by_commitment only holds detail-carrying note files")
},
}
}
let mut imported_notes = vec![];
if !requests_by_id.is_empty() {
let notes_by_id = self.import_note_records_by_id(requests_by_id).await?;
imported_notes.extend(notes_by_id);
}
if !requests_by_details.is_empty() {
let notes_by_details = self.import_note_records_by_details(requests_by_details).await?;
imported_notes.extend(notes_by_details);
}
if !requests_by_proof.is_empty() {
let notes_by_proof = self.import_note_records_by_proof(requests_by_proof).await?;
imported_notes.extend(notes_by_proof);
}
let mut imported_commitments = Vec::with_capacity(imported_notes.len());
for note in imported_notes {
let details_commitment = note.details_commitment();
if let InputNoteState::Expected(ExpectedNoteState { tag: Some(tag), .. }) = note.state()
{
self.store
.add_note_tag(NoteTagRecord::with_note_source(*tag, details_commitment))
.await?;
}
self.store.upsert_input_notes(&[note]).await?;
imported_commitments.push(details_commitment);
}
Ok(imported_commitments)
}
// HELPERS
// ================================================================================================
/// Builds note records from the note IDs. If a note with the same ID was already stored it
/// is passed via `previous_note` so it can be updated. The note information is fetched from
/// the node and stored in the client's store.
///
/// Only records that changed as a result of the import are returned.
///
/// # Errors:
/// - If a note doesn't exist on the node.
/// - If a note exists but is private.
async fn import_note_records_by_id(
&mut self,
notes: BTreeMap<NoteId, Option<InputNoteRecord>>,
) -> Result<Vec<InputNoteRecord>, ClientError> {
let note_ids = notes.keys().copied().collect::<Vec<_>>();
let fetched_notes =
self.rpc_api.get_notes_by_id(¬e_ids).await.map_err(|err| match err {
RpcError::NoteNotFound(note_id) => ClientError::NoteNotFoundOnChain(note_id),
err => ClientError::RpcError(err),
})?;
if fetched_notes.is_empty() {
return Err(ClientError::NoteImportError("No notes fetched from node".to_string()));
}
let mut note_records = Vec::new();
let mut notes_to_request = vec![];
for fetched_note in fetched_notes {
let note_id = fetched_note.id();
let inclusion_proof = fetched_note.inclusion_proof().clone();
let previous_note =
notes.get(¬e_id).cloned().ok_or(ClientError::NoteImportError(format!(
"Failed to retrieve note with id {note_id} from node"
)))?;
if let Some(mut previous_note) = previous_note {
if previous_note
.inclusion_proof_received(inclusion_proof, *fetched_note.metadata())?
{
self.store.remove_note_tag((&previous_note).try_into()?).await?;
note_records.push(previous_note);
}
} else {
let fetched_note = match fetched_note {
FetchedNote::Public(note, _) => note,
FetchedNote::Private(..) => {
return Err(ClientError::NoteImportError(
"Incomplete imported note is private".to_string(),
));
},
};
let note_request = (previous_note, fetched_note, inclusion_proof);
notes_to_request.push(note_request);
}
}
if !notes_to_request.is_empty() {
let note_records_by_proof = self.import_note_records_by_proof(notes_to_request).await?;
note_records.extend(note_records_by_proof);
}
Ok(note_records)
}
/// Builds a note record list from notes and inclusion proofs. If a note with the same ID was
/// already stored it is passed via `previous_note` so it can be updated. The note's
/// nullifier is used to determine if the note has been consumed in the node and gives it
/// the correct state.
///
/// If the note isn't consumed and it was committed in the past relative to the client, then
/// the MMR for the relevant block is fetched from the node and stored.
///
/// Only records that changed as a result of the import are returned.
pub(crate) async fn import_note_records_by_proof(
&mut self,
requested_notes: Vec<(Option<InputNoteRecord>, Note, NoteInclusionProof)>,
) -> Result<Vec<InputNoteRecord>, ClientError> {
// TODO: iterating twice over requested notes
let mut note_records = vec![];
let mut nullifier_requests = BTreeSet::new();
let mut lowest_block_height: BlockNumber = u32::MAX.into();
for (previous_note, note, inclusion_proof) in &requested_notes {
let nullifier = match previous_note {
Some(previous_note) => previous_note.nullifier(),
None => Some(note.nullifier()),
};
if let Some(nullifier) = nullifier {
nullifier_requests.insert(nullifier);
}
if inclusion_proof.location().block_num() < lowest_block_height {
lowest_block_height = inclusion_proof.location().block_num();
}
}
let nullifier_commit_heights = self
.rpc_api
.get_nullifier_commit_heights(nullifier_requests, lowest_block_height)
.await?;
let mut partial_mmr = self.get_current_partial_mmr().await?;
for (previous_note, note, inclusion_proof) in requested_notes {
let metadata = *note.metadata();
let attachments = note.attachments().clone();
let mut note_record = previous_note.unwrap_or(InputNoteRecord::new(
note.into(),
attachments,
self.store.get_current_timestamp(),
ExpectedNoteState {
metadata: Some(metadata),
after_block_num: inclusion_proof.location().block_num(),
tag: Some(metadata.tag()),
}
.into(),
));
if let Some(nullifier) = note_record.nullifier()
&& let Some(Some(block_height)) = nullifier_commit_heights.get(&nullifier)
{
if note_record.consumed_externally(nullifier, *block_height, None)? {
note_records.push(note_record);
}
} else {
let block_height = inclusion_proof.location().block_num();
let current_block_num = self.get_sync_height().await?;
let tag = metadata.tag();
let mut note_changed =
note_record.inclusion_proof_received(inclusion_proof, metadata)?;
if block_height <= current_block_num {
// A note committed in the past needs its block header fetched and
// authenticated to verify the inclusion proof.
let block_header = self
.get_and_store_authenticated_block(block_height, &mut partial_mmr)
.await?;
note_changed |= note_record.block_header_received(&block_header)?;
} else {
// If the note is in the future we import it as unverified. We add the note tag
// so that the note is verified naturally in the next sync.
self.store
.add_note_tag(NoteTagRecord::with_note_source(
tag,
note_record.details_commitment(),
))
.await?;
}
if note_changed {
note_records.push(note_record);
}
}
}
self.cache_partial_mmr(partial_mmr).await?;
Ok(note_records)
}
/// Builds a note record list from note details. If a note with the same ID was already stored
/// it is passed via `previous_note` so it can be updated.
///
/// Only records that need to be stored are returned: notes the node has not reported as
/// committed keep (or get) their expected record, while committed notes are returned only if
/// the new information changed them.
async fn import_note_records_by_details(
&mut self,
requested_notes: Vec<(Option<InputNoteRecord>, NoteDetails, BlockNumber, Option<NoteTag>)>,
) -> Result<Vec<InputNoteRecord>, ClientError> {
let mut lowest_request_block: BlockNumber = u32::MAX.into();
let mut note_requests = vec![];
for (_, details, after_block_num, tag) in &requested_notes {
if let Some(tag) = tag {
note_requests.push((details.commitment(), *tag));
lowest_request_block = lowest_request_block.min(*after_block_num);
}
}
let mut committed_notes_data =
self.sync_expected_notes(lowest_request_block, note_requests).await?;
let mut note_records = vec![];
let mut partial_mmr = self.get_current_partial_mmr().await?;
for (previous_note, details, after_block_num, tag) in requested_notes {
let mut note_record = previous_note.unwrap_or_else(|| {
InputNoteRecord::new(
details,
NoteAttachments::empty(),
self.store.get_current_timestamp(),
ExpectedNoteState { metadata: None, after_block_num, tag }.into(),
)
});
// Notes the node has not reported as committed keep their expected record untouched.
let Some(SyncedNote { committed: committed_note, content }) =
committed_notes_data.remove(¬e_record.details_commitment())
else {
note_records.push(note_record);
continue;
};
let attachments = content
.map(ResolvedNoteContent::into_attachments)
.filter(|attachments| !attachments.is_empty());
let block_header = self
.get_and_store_authenticated_block(committed_note.block_num(), &mut partial_mmr)
.await?;
let metadata = *committed_note.metadata();
let mut note_changed = note_record
.inclusion_proof_received(committed_note.inclusion_proof().clone(), metadata)?;
if let Some(attachments) = attachments {
note_changed |= note_record.attachments_received(attachments);
}
// `block_header_received` transitions the record's state, so it must always run.
note_changed |= note_record.block_header_received(&block_header)?;
// Once committed, the note no longer needs its expected-note tag.
if note_changed {
self.store
.remove_note_tag(NoteTagRecord::with_note_source(
metadata.tag(),
note_record.details_commitment(),
))
.await?;
}
if note_changed {
note_records.push(note_record);
}
}
self.cache_partial_mmr(partial_mmr).await?;
Ok(note_records)
}
/// Checks whether the expected notes (identified by their details commitments and tags) have
/// been committed on chain between `request_block_num` and the current block, returning the
/// matching synced notes keyed by details commitment.
///
/// Expected notes have no metadata and thus no `NoteId`, so each committed note is matched by
/// reconstructing the id from the committed metadata: `NoteId::new(details_commitment,
/// metadata)`.
async fn sync_expected_notes(
&mut self,
request_block_num: BlockNumber,
// Expected notes' details commitments with their tags.
expected_notes: Vec<(NoteDetailsCommitment, NoteTag)>,
) -> Result<BTreeMap<NoteDetailsCommitment, SyncedNote>, ClientError> {
let sync_tags: BTreeSet<NoteTag> = expected_notes.iter().map(|(_, tag)| *tag).collect();
let mut matched_notes = BTreeMap::new();
let current_block_num = self.get_sync_height().await?;
// Notes expected only after a block we have not reached can't be committed within our
// synced view yet: skip the lookup and let them stay expected until a future sync.
if request_block_num > current_block_num {
return Ok(matched_notes);
}
let blocks = self
.rpc_api
.sync_notes_with_content(
request_block_num,
current_block_num,
&sync_tags,
NoteContentFetch::AttachmentsOnly,
)
.await
.map_err(ClientError::RpcError)?;
for block in blocks {
if block.block_header.block_num() > current_block_num {
break;
}
for sync_note in block.notes.into_values() {
let committed = &sync_note.committed;
let Some((commitment, _)) = expected_notes.iter().find(|(commitment, _)| {
NoteId::new(*commitment, committed.metadata()) == *committed.note_id()
}) else {
continue;
};
matched_notes.insert(*commitment, sync_note);
}
}
Ok(matched_notes)
}
}
// HELPERS
// ================================================================================================
/// Returns an error if the already-stored note is currently being processed by a local
/// transaction, since an in-flight note can't be overwritten by an import.
fn ensure_not_processing(previous_note: Option<&InputNoteRecord>) -> Result<(), ClientError> {
if let Some(note) = previous_note
&& note.is_processing()
{
return Err(ClientError::NoteImportError(format!(
"Can't overwrite note with details commitment {} as it's currently being processed",
note.details_commitment().to_hex(),
)));
}
Ok(())
}