bsv-wallet-toolbox 0.2.23

Pure Rust BSV wallet-toolbox implementation
Documentation
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
//! StorageReader trait -- the base of the storage trait hierarchy.
//!
//! Provides abstract find/count methods for all 16 table types,
//! plus default helper methods for common single-record lookups.

use async_trait::async_trait;

use crate::error::WalletResult;
use crate::storage::find_args::*;
use crate::storage::verify_one_or_none;
use crate::storage::TrxToken;
use crate::tables::*;

/// Minimal read-only storage interface for the wallet.
///
/// All methods accept an optional `TrxToken` for transaction participation.
/// Implementations must be Send + Sync for use behind `Arc<dyn StorageProvider>`.
#[async_trait]
pub trait StorageReader: Send + Sync {
    // -----------------------------------------------------------------------
    // Abstract find methods (one per table)
    // -----------------------------------------------------------------------

    /// Find users matching the given filter criteria.
    async fn find_users(
        &self,
        args: &FindUsersArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<User>>;

    /// Find certificates matching the given filter criteria.
    async fn find_certificates(
        &self,
        args: &FindCertificatesArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<Certificate>>;

    /// Find certificate fields matching the given filter criteria.
    async fn find_certificate_fields(
        &self,
        args: &FindCertificateFieldsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<CertificateField>>;

    /// Find commissions matching the given filter criteria.
    async fn find_commissions(
        &self,
        args: &FindCommissionsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<Commission>>;

    /// Find monitor events matching the given filter criteria.
    async fn find_monitor_events(
        &self,
        args: &FindMonitorEventsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<MonitorEvent>>;

    /// Find output baskets matching the given filter criteria.
    async fn find_output_baskets(
        &self,
        args: &FindOutputBasketsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<OutputBasket>>;

    /// Find output tag mappings matching the given filter criteria.
    async fn find_output_tag_maps(
        &self,
        args: &FindOutputTagMapsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<OutputTagMap>>;

    /// Find output tags matching the given filter criteria.
    async fn find_output_tags(
        &self,
        args: &FindOutputTagsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<OutputTag>>;

    /// Find outputs matching the given filter criteria.
    async fn find_outputs(
        &self,
        args: &FindOutputsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<Output>>;

    /// Find proven transactions matching the given filter criteria.
    async fn find_proven_txs(
        &self,
        args: &FindProvenTxsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<ProvenTx>>;

    /// Find proven transaction requests matching the given filter criteria.
    async fn find_proven_tx_reqs(
        &self,
        args: &FindProvenTxReqsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<ProvenTxReq>>;

    /// Find settings records matching the given filter criteria.
    async fn find_settings(
        &self,
        args: &FindSettingsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<Settings>>;

    /// Find sync states matching the given filter criteria.
    async fn find_sync_states(
        &self,
        args: &FindSyncStatesArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<SyncState>>;

    /// Find transactions matching the given filter criteria.
    async fn find_transactions(
        &self,
        args: &FindTransactionsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<Transaction>>;

    /// Find transaction label mappings matching the given filter criteria.
    async fn find_tx_label_maps(
        &self,
        args: &FindTxLabelMapsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<TxLabelMap>>;

    /// Find transaction labels matching the given filter criteria.
    async fn find_tx_labels(
        &self,
        args: &FindTxLabelsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<TxLabel>>;

    // -----------------------------------------------------------------------
    // Abstract count methods (one per table)
    // -----------------------------------------------------------------------

    /// Count users matching the given filter criteria.
    async fn count_users(&self, args: &FindUsersArgs, trx: Option<&TrxToken>) -> WalletResult<i64>;

    /// Count certificates matching the given filter criteria.
    async fn count_certificates(
        &self,
        args: &FindCertificatesArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count certificate fields matching the given filter criteria.
    async fn count_certificate_fields(
        &self,
        args: &FindCertificateFieldsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count commissions matching the given filter criteria.
    async fn count_commissions(
        &self,
        args: &FindCommissionsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count monitor events matching the given filter criteria.
    async fn count_monitor_events(
        &self,
        args: &FindMonitorEventsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count output baskets matching the given filter criteria.
    async fn count_output_baskets(
        &self,
        args: &FindOutputBasketsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count output tag mappings matching the given filter criteria.
    async fn count_output_tag_maps(
        &self,
        args: &FindOutputTagMapsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count output tags matching the given filter criteria.
    async fn count_output_tags(
        &self,
        args: &FindOutputTagsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count outputs matching the given filter criteria.
    async fn count_outputs(
        &self,
        args: &FindOutputsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count proven transactions matching the given filter criteria.
    async fn count_proven_txs(
        &self,
        args: &FindProvenTxsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count proven transaction requests matching the given filter criteria.
    async fn count_proven_tx_reqs(
        &self,
        args: &FindProvenTxReqsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count settings records matching the given filter criteria.
    async fn count_settings(
        &self,
        args: &FindSettingsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count sync states matching the given filter criteria.
    async fn count_sync_states(
        &self,
        args: &FindSyncStatesArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count transactions matching the given filter criteria.
    async fn count_transactions(
        &self,
        args: &FindTransactionsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count transaction label mappings matching the given filter criteria.
    async fn count_tx_label_maps(
        &self,
        args: &FindTxLabelMapsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    /// Count transaction labels matching the given filter criteria.
    async fn count_tx_labels(
        &self,
        args: &FindTxLabelsArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<i64>;

    // -----------------------------------------------------------------------
    // Abstract for-user methods (TS getProvenTxsForUser, etc.)
    // -----------------------------------------------------------------------

    /// Get proven transactions for a specific user.
    async fn get_proven_txs_for_user(
        &self,
        args: &FindForUserSincePagedArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<ProvenTx>>;

    /// Get proven transaction requests for a specific user.
    async fn get_proven_tx_reqs_for_user(
        &self,
        args: &FindForUserSincePagedArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<ProvenTxReq>>;

    /// Get transaction label mappings for a specific user.
    async fn get_tx_label_maps_for_user(
        &self,
        args: &FindForUserSincePagedArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<TxLabelMap>>;

    /// Get output tag mappings for a specific user.
    async fn get_output_tag_maps_for_user(
        &self,
        args: &FindForUserSincePagedArgs,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Vec<OutputTagMap>>;

    // -----------------------------------------------------------------------
    // Default helper methods
    // -----------------------------------------------------------------------

    /// Find a user by identity key. Returns None if not found.
    async fn find_user_by_identity_key(
        &self,
        key: &str,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<User>> {
        let args = FindUsersArgs {
            partial: UserPartial {
                identity_key: Some(key.to_string()),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_users(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find a certificate by its ID. Returns None if not found.
    async fn find_certificate_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<Certificate>> {
        let args = FindCertificatesArgs {
            partial: CertificatePartial {
                certificate_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_certificates(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find an output basket by its ID. Returns None if not found.
    async fn find_output_basket_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<OutputBasket>> {
        let args = FindOutputBasketsArgs {
            partial: OutputBasketPartial {
                basket_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_output_baskets(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find an output by its ID. Returns None if not found.
    async fn find_output_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<Output>> {
        let args = FindOutputsArgs {
            partial: OutputPartial {
                output_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_outputs(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find a proven transaction by its ID. Returns None if not found.
    async fn find_proven_tx_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<ProvenTx>> {
        let args = FindProvenTxsArgs {
            partial: ProvenTxPartial {
                proven_tx_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_proven_txs(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find a transaction by its ID. Returns None if not found.
    async fn find_transaction_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<Transaction>> {
        let args = FindTransactionsArgs {
            partial: TransactionPartial {
                transaction_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_transactions(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find a transaction label by its ID. Returns None if not found.
    async fn find_tx_label_by_id(
        &self,
        id: i64,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<TxLabel>> {
        let args = FindTxLabelsArgs {
            partial: TxLabelPartial {
                tx_label_id: Some(id),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_tx_labels(&args, trx).await?;
        verify_one_or_none(results)
    }

    /// Find settings by storage identity key. Returns None if not found.
    async fn find_settings_by_identity_key(
        &self,
        key: &str,
        trx: Option<&TrxToken>,
    ) -> WalletResult<Option<Settings>> {
        let args = FindSettingsArgs {
            partial: SettingsPartial {
                storage_identity_key: Some(key.to_string()),
                ..Default::default()
            },
            ..Default::default()
        };
        let results = self.find_settings(&args, trx).await?;
        verify_one_or_none(results)
    }
}