miden_client/store/mod.rs
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
//! Defines the storage interfaces used by the Miden client. It provides mechanisms for persisting
//! and retrieving data, such as account states, transaction history, and block headers.
use alloc::{
boxed::Box,
collections::{BTreeMap, BTreeSet},
vec::Vec,
};
use core::fmt::Debug;
use async_trait::async_trait;
use miden_objects::{
accounts::{Account, AccountHeader, AccountId, AuthSecretKey},
crypto::merkle::{InOrderIndex, MmrPeaks},
notes::{NoteId, NoteTag, Nullifier},
BlockHeader, Digest, Word,
};
use crate::{
sync::{NoteTagRecord, StateSyncUpdate},
transactions::{TransactionRecord, TransactionStoreUpdate},
};
/// Contains [ClientDataStore] to automatically implement [DataStore] for anything that implements
/// [Store]. This is not public because it's an implementation detail to instantiate the executor.
///
/// The user is tasked with creating a [Store] which the client will wrap into a [ClientDataStore]
/// at creation time.
pub(crate) mod data_store;
mod authenticator;
pub use authenticator::StoreAuthenticator;
mod errors;
pub use errors::*;
#[cfg(all(feature = "sqlite", feature = "idxdb"))]
compile_error!("features `sqlite` and `idxdb` are mutually exclusive");
#[cfg(feature = "sqlite")]
pub mod sqlite_store;
#[cfg(feature = "idxdb")]
pub mod web_store;
mod note_record;
pub use note_record::{
input_note_states, InputNoteRecord, InputNoteState, NoteExportType, NoteRecordError,
OutputNoteRecord, OutputNoteState,
};
// STORE TRAIT
// ================================================================================================
/// The [Store] trait exposes all methods that the client store needs in order to track the current
/// state.
///
/// All update functions are implied to be atomic. That is, if multiple entities are meant to be
/// updated as part of any single function and an error is returned during its execution, any
/// changes that might have happened up to that point need to be rolled back and discarded.
///
/// Because the [Store]'s ownership is shared between the executor and the client, interior
/// mutability is expected to be implemented, which is why all methods receive `&self` and
/// not `&mut self`.
#[async_trait(?Send)]
pub trait Store: Send + Sync {
// TRANSACTIONS
// --------------------------------------------------------------------------------------------
/// Retrieves stored transactions, filtered by [TransactionFilter].
async fn get_transactions(
&self,
filter: TransactionFilter,
) -> Result<Vec<TransactionRecord>, StoreError>;
/// Applies a transaction, atomically updating the current state based on the
/// [TransactionStoreUpdate]
///
/// An update involves:
/// - Updating the stored account which is being modified by the transaction
/// - Storing new input/output notes and payback note details as a result of the transaction
/// execution
/// - Updating the input notes that are being processed by the transaction
/// - Inserting the new tracked tags into the store
/// - Inserting the transaction into the store to track
async fn apply_transaction(&self, tx_update: TransactionStoreUpdate) -> Result<(), StoreError>;
// NOTES
// --------------------------------------------------------------------------------------------
/// Retrieves the input notes from the store
///
/// # Errors
///
/// Returns a [StoreError::NoteNotFound] if the filter is [NoteFilter::Unique] and there is no
/// Note with the provided ID
async fn get_input_notes(&self, filter: NoteFilter)
-> Result<Vec<InputNoteRecord>, StoreError>;
/// Retrieves the output notes from the store
///
/// # Errors
///
/// Returns a [StoreError::NoteNotFound] if the filter is [NoteFilter::Unique] and there is no
/// Note with the provided ID
async fn get_output_notes(
&self,
filter: NoteFilter,
) -> Result<Vec<OutputNoteRecord>, StoreError>;
/// Returns the nullifiers of all unspent input notes
///
/// The default implementation of this method uses [Store::get_input_notes].
async fn get_unspent_input_note_nullifiers(&self) -> Result<Vec<Nullifier>, StoreError> {
let nullifiers = self
.get_input_notes(NoteFilter::Unspent)
.await?
.iter()
.map(|input_note| Ok(input_note.nullifier()))
.collect::<Result<Vec<_>, _>>();
nullifiers
}
/// Inserts the provided input notes into the database. If a note with the same ID already
/// exists, it will be replaced.
async fn upsert_input_notes(&self, notes: &[InputNoteRecord]) -> Result<(), StoreError>;
// CHAIN DATA
// --------------------------------------------------------------------------------------------
/// Retrieves a vector of [BlockHeader]s filtered by the provided block numbers.
///
/// The returned vector may not contain some or all of the requested block headers. It's up to
/// the callee to check whether all requested block headers were found.
///
/// For each block header an additional boolean value is returned representing whether the block
/// contains notes relevant to the client.
async fn get_block_headers(
&self,
block_numbers: &[u32],
) -> Result<Vec<(BlockHeader, bool)>, StoreError>;
/// Retrieves a [BlockHeader] corresponding to the provided block number and a boolean value
/// that represents whether the block contains notes relevant to the client.
///
/// The default implementation of this method uses [Store::get_block_headers].
///
/// # Errors
/// Returns a [StoreError::BlockHeaderNotFound] if the block was not found.
async fn get_block_header_by_num(
&self,
block_number: u32,
) -> Result<(BlockHeader, bool), StoreError> {
self.get_block_headers(&[block_number])
.await
.map(|block_headers_list| block_headers_list.first().cloned())
.and_then(|block_header| {
block_header.ok_or(StoreError::BlockHeaderNotFound(block_number))
})
}
/// Retrieves a list of [BlockHeader] that include relevant notes to the client.
async fn get_tracked_block_headers(&self) -> Result<Vec<BlockHeader>, StoreError>;
/// Retrieves all MMR authentication nodes based on [ChainMmrNodeFilter].
async fn get_chain_mmr_nodes(
&self,
filter: ChainMmrNodeFilter,
) -> Result<BTreeMap<InOrderIndex, Digest>, StoreError>;
/// Inserts MMR authentication nodes.
///
/// In the case where the [InOrderIndex] already exists on the table, the insertion is ignored
async fn insert_chain_mmr_nodes(
&self,
nodes: &[(InOrderIndex, Digest)],
) -> Result<(), StoreError>;
/// Returns peaks information from the blockchain by a specific block number.
///
/// If there is no chain MMR info stored for the provided block returns an empty [MmrPeaks]
async fn get_chain_mmr_peaks_by_block_num(
&self,
block_num: u32,
) -> Result<MmrPeaks, StoreError>;
/// Inserts a block header into the store, alongside peaks information at the block's height.
///
/// `has_client_notes` describes whether the block has relevant notes to the client; this means
/// the client might want to authenticate merkle paths based on this value.
/// If the block header exists and `has_client_notes` is `true` then the `has_client_notes`
/// column is updated to `true` to signify that the block now contains a relevant note.
async fn insert_block_header(
&self,
block_header: BlockHeader,
chain_mmr_peaks: MmrPeaks,
has_client_notes: bool,
) -> Result<(), StoreError>;
// ACCOUNT
// --------------------------------------------------------------------------------------------
/// Returns the account IDs of all accounts stored in the database
async fn get_account_ids(&self) -> Result<Vec<AccountId>, StoreError>;
/// Returns a list of [AccountHeader] of all accounts stored in the database along with the
/// seeds used to create them.
///
/// Said accounts' state is the state after the last performed sync.
async fn get_account_headers(&self) -> Result<Vec<(AccountHeader, Option<Word>)>, StoreError>;
/// Retrieves an [AccountHeader] object for the specified [AccountId] along with the seed
/// used to create it. The seed will be returned if the account is new, otherwise it
/// will be `None`.
///
/// Said account's state is the state according to the last sync performed.
///
/// # Errors
///
/// Returns a `StoreError::AccountDataNotFound` if there is no account for the provided ID
async fn get_account_header(
&self,
account_id: AccountId,
) -> Result<(AccountHeader, Option<Word>), StoreError>;
/// Returns an [AccountHeader] corresponding to the stored account state that matches the given
/// hash. If no account state matches the provided hash, `None` is returned.
async fn get_account_header_by_hash(
&self,
account_hash: Digest,
) -> Result<Option<AccountHeader>, StoreError>;
/// Retrieves a full [Account] object. The seed will be returned if the account is new,
/// otherwise it will be `None`.
///
/// This function returns the [Account]'s latest state. If the account is new (that is, has
/// never executed a transaction), the returned seed will be `Some(Word)`; otherwise the seed
/// will be `None`
///
/// # Errors
///
/// Returns a `StoreError::AccountDataNotFound` if there is no account for the provided ID
async fn get_account(
&self,
account_id: AccountId,
) -> Result<(Account, Option<Word>), StoreError>;
/// Retrieves an account's [AuthSecretKey] by pub key, utilized to authenticate the account.
/// This is mainly used for authentication in transactions.
///
/// # Errors
///
/// Returns a `StoreError::AccountKeyNotFound` if there is no account for the provided key
async fn get_account_auth_by_pub_key(&self, pub_key: Word)
-> Result<AuthSecretKey, StoreError>;
/// Retrieves an account's [AuthSecretKey], utilized to authenticate the account.
///
/// # Errors
///
/// Returns a `StoreError::AccountDataNotFound` if there is no account for the provided ID
async fn get_account_auth(&self, account_id: AccountId) -> Result<AuthSecretKey, StoreError>;
/// Inserts an [Account] along with the seed used to create it and its [AuthSecretKey]
async fn insert_account(
&self,
account: &Account,
account_seed: Option<Word>,
auth_info: &AuthSecretKey,
) -> Result<(), StoreError>;
// SYNC
// --------------------------------------------------------------------------------------------
/// Returns the note tag records that the client is interested in.
async fn get_note_tags(&self) -> Result<Vec<NoteTagRecord>, StoreError>;
/// Returns the unique note tags (without source) that the client is interested in.
async fn get_unique_note_tags(&self) -> Result<BTreeSet<NoteTag>, StoreError> {
Ok(self.get_note_tags().await?.into_iter().map(|r| r.tag).collect())
}
/// Adds a note tag to the list of tags that the client is interested in.
///
/// If the tag was already being tracked, returns false since no new tags were actually added.
/// Otherwise true.
async fn add_note_tag(&self, tag: NoteTagRecord) -> Result<bool, StoreError>;
/// Removes a note tag from the list of tags that the client is interested in.
///
/// If the tag was not present in the store returns false since no tag was actually removed.
/// Otherwise returns true.
async fn remove_note_tag(&self, tag: NoteTagRecord) -> Result<usize, StoreError>;
/// Returns the block number of the last state sync block.
async fn get_sync_height(&self) -> Result<u32, StoreError>;
/// Applies the state sync update to the store. An update involves:
///
/// - Inserting the new block header to the store alongside new MMR peaks information
/// - Updating the corresponding tracked input/output notes
/// - Removing note tags that are no longer relevant
/// - Updating transactions in the store, marking as `committed` or `discarded`
/// - Storing new MMR authentication nodes
/// - Updating the tracked on-chain accounts
async fn apply_state_sync(&self, state_sync_update: StateSyncUpdate) -> Result<(), StoreError>;
}
// CHAIN MMR NODE FILTER
// ================================================================================================
/// Filters for searching specific MMR nodes.
// TODO: Should there be filters for specific blocks instead of nodes?
pub enum ChainMmrNodeFilter {
/// Return all nodes.
All,
/// Filter by the specified in-order indices.
List(Vec<InOrderIndex>),
}
// TRANSACTION FILTERS
// ================================================================================================
/// Filters for narrowing the set of transactions returned by the client's store.
#[derive(Debug, Clone)]
pub enum TransactionFilter {
/// Return all transactions.
All,
/// Filter by transactions that have not yet been committed to the blockchain as per the last
/// sync.
Uncomitted,
}
// NOTE FILTER
// ================================================================================================
/// Filters for narrowing the set of notes returned by the client's store.
#[derive(Debug, Clone)]
pub enum NoteFilter {
/// Return a list of all notes ([InputNoteRecord] or [OutputNoteRecord]).
All,
/// Return a list of committed notes ([InputNoteRecord] or [OutputNoteRecord]). These represent
/// notes that the blockchain has included in a block, and for which we are storing anchor
/// data.
Committed,
/// Filter by consumed notes ([InputNoteRecord] or [OutputNoteRecord]). notes that have been
/// used as inputs in transactions.
Consumed,
/// Return a list of expected notes ([InputNoteRecord] or [OutputNoteRecord]). These represent
/// notes for which the store does not have anchor data.
Expected,
/// Return a list containing any notes that match with the provided [NoteId] vector.
List(Vec<NoteId>),
/// Return a list containing any notes that match the provided [Nullifier] vector.
Nullifiers(Vec<Nullifier>),
/// Return a list of notes that are currently being processed. This filter doesn't apply to
/// output notes.
Processing,
/// Return a list containing the note that matches with the provided [NoteId]. The query will
/// return an error if the note is not found.
Unique(NoteId),
/// Return a list containing notes that haven't been nullified yet, this includes expected,
/// committed, processing and unverified notes.
Unspent,
/// Return a list containing notes with unverified inclusion proofs. This filter doesn't apply
/// to output notes.
Unverified,
}