cedros-login-server 0.0.45

Authentication server for cedros-login with email/password, Google OAuth, and Solana wallet sign-in
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
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
//! Deposit session repository trait and implementations

use async_trait::async_trait;
use chrono::{DateTime, Utc};
use std::collections::HashMap;
use tokio::sync::RwLock;
use uuid::Uuid;

use crate::errors::AppError;

/// Deposit session status
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DepositStatus {
    /// Session created, awaiting processing
    Pending,
    /// Deposit transaction detected on chain
    Detected,
    /// Privacy Cash transaction in flight
    Processing,
    /// Credits issued, waiting for privacy period to elapse
    Completed,
    /// Some funds withdrawn, awaiting next withdrawal cycle
    PartiallyWithdrawn,
    /// Withdrawal to company wallet completed (fully withdrawn)
    Withdrawn,
    /// TTL elapsed without completion
    Expired,
    /// Error occurred
    Failed,
    /// S-03: Withdrawal failed but retries remain — distinct from Completed
    PendingRetry,
    /// Micro deposit awaiting batch swap (SOL accumulated in treasury)
    PendingBatch,
    /// Micro deposit included in a completed batch swap
    Batched,
}

impl DepositStatus {
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Pending => "pending",
            Self::Detected => "detected",
            Self::Processing => "processing",
            Self::Completed => "completed",
            Self::PartiallyWithdrawn => "partially_withdrawn",
            Self::Withdrawn => "withdrawn",
            Self::Expired => "expired",
            Self::Failed => "failed",
            Self::PendingRetry => "pending_retry",
            Self::PendingBatch => "pending_batch",
            Self::Batched => "batched",
        }
    }

    fn parse(s: &str) -> Option<Self> {
        match s {
            "pending" => Some(Self::Pending),
            "detected" => Some(Self::Detected),
            "processing" => Some(Self::Processing),
            "completed" => Some(Self::Completed),
            "partially_withdrawn" => Some(Self::PartiallyWithdrawn),
            "withdrawn" => Some(Self::Withdrawn),
            "expired" => Some(Self::Expired),
            "failed" => Some(Self::Failed),
            "pending_retry" => Some(Self::PendingRetry),
            "pending_batch" => Some(Self::PendingBatch),
            "batched" => Some(Self::Batched),
            _ => None,
        }
    }
}

impl std::str::FromStr for DepositStatus {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Self::parse(s).ok_or(())
    }
}

/// Wallet type for deposit
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum WalletType {
    Embedded,
    External,
}

impl WalletType {
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Embedded => "embedded",
            Self::External => "external",
        }
    }

    fn parse(s: &str) -> Option<Self> {
        match s {
            "embedded" => Some(Self::Embedded),
            "external" => Some(Self::External),
            _ => None,
        }
    }
}

impl std::str::FromStr for WalletType {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Self::parse(s).ok_or(())
    }
}

/// Deposit type for tiered deposits
///
/// Determines which deposit flow was used:
/// - Private: Privacy Cash sidecar (>=0.25 SOL, ~1% fees)
/// - Public: Jupiter swap to company wallet ($10+, ~0.3% fees)
/// - SolMicro: Direct SOL transfer (<$10, tx fees only)
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DepositType {
    /// Private deposit via Privacy Cash (>=0.25 SOL)
    Private,
    /// Public deposit via Jupiter swap ($10+)
    Public,
    /// Direct SOL micro deposit (<$10)
    SolMicro,
}

impl DepositType {
    pub fn as_str(&self) -> &'static str {
        match self {
            Self::Private => "private",
            Self::Public => "public",
            Self::SolMicro => "sol_micro",
        }
    }

    fn parse(s: &str) -> Option<Self> {
        match s {
            "private" => Some(Self::Private),
            "public" => Some(Self::Public),
            "sol_micro" => Some(Self::SolMicro),
            _ => None,
        }
    }
}

impl std::str::FromStr for DepositType {
    type Err = ();

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Self::parse(s).ok_or(())
    }
}

/// Deposit session entity
#[derive(Debug, Clone)]
pub struct DepositSessionEntity {
    pub id: Uuid,
    pub user_id: Uuid,
    pub session_id: Uuid,
    pub wallet_address: String,
    pub wallet_type: WalletType,
    pub deposit_type: DepositType,
    pub currency: String,
    pub unlock_expires_at: Option<DateTime<Utc>>,
    pub status: DepositStatus,
    pub detected_amount_lamports: Option<i64>,
    pub detected_tx_signature: Option<String>,
    pub detected_at: Option<DateTime<Utc>>,
    pub completed_at: Option<DateTime<Utc>>,
    pub error_message: Option<String>,
    pub expected_message_hash: Option<String>,
    pub expected_message_bytes: Option<Vec<u8>>,
    pub privacy_deposit_tx_signature: Option<String>,
    pub deposit_amount_lamports: Option<i64>,
    pub fee_buffer_lamports: Option<i64>,
    pub tx_expires_at: Option<DateTime<Utc>>,
    pub processing_attempts: i32,
    pub last_processing_error: Option<String>,
    pub last_processing_attempt_at: Option<DateTime<Utc>>,
    pub created_at: DateTime<Utc>,
    /// Associated privacy note ID (set after note is created)
    pub privacy_note_id: Option<Uuid>,
    /// Encrypted private key (stored during privacy period for withdrawal)
    /// Format: base64(nonce || ciphertext) using AES-256-GCM
    pub stored_share_b: Option<String>, // Field name kept for DB compatibility
    /// When withdrawal becomes available (after privacy period)
    pub withdrawal_available_at: Option<DateTime<Utc>>,
    /// Withdrawal transaction signature (after withdrawal to company wallet)
    pub withdrawal_tx_signature: Option<String>,
    /// Input token mint address (for SPL token deposits)
    /// If None, the deposit was native SOL
    pub input_token_mint: Option<String>,
    /// Input token amount (in token's smallest unit)
    /// For tracking original deposit value before swap to SOL
    pub input_token_amount: Option<i64>,
    /// Cumulative amount already withdrawn (for partial withdrawal support)
    /// When withdrawn_amount_lamports >= deposit_amount_lamports, session is fully withdrawn
    pub withdrawn_amount_lamports: i64,
    /// Batch ID for micro deposits that were batched together
    pub batch_id: Option<Uuid>,
    /// When the micro deposit was included in a batch swap
    pub batched_at: Option<DateTime<Utc>>,
}

impl DepositSessionEntity {
    /// Create a new privacy deposit session for an SSS embedded wallet
    ///
    /// This is the primary constructor for the SSS-only Privacy Cash flow.
    /// Stores encrypted private key for later withdrawal to company wallet.
    pub fn new_privacy_deposit(
        user_id: Uuid,
        session_id: Uuid,
        wallet_address: String,
        amount_lamports: i64,
        tx_signature: String,
        stored_share_b: String,
        withdrawal_available_at: DateTime<Utc>,
    ) -> Self {
        Self {
            id: session_id, // Use provided session ID
            user_id,
            session_id,
            wallet_address,
            wallet_type: WalletType::Embedded,
            deposit_type: DepositType::Private,
            currency: "SOL".to_string(),
            unlock_expires_at: None,
            status: DepositStatus::Completed, // Already completed on chain
            detected_amount_lamports: None,
            detected_tx_signature: None,
            detected_at: None,
            completed_at: Some(Utc::now()),
            error_message: None,
            expected_message_hash: None,
            expected_message_bytes: None,
            privacy_deposit_tx_signature: Some(tx_signature),
            deposit_amount_lamports: Some(amount_lamports),
            fee_buffer_lamports: None,
            tx_expires_at: None,
            processing_attempts: 0,
            last_processing_error: None,
            last_processing_attempt_at: None,
            created_at: Utc::now(),
            privacy_note_id: None,
            stored_share_b: Some(stored_share_b),
            withdrawal_available_at: Some(withdrawal_available_at),
            withdrawal_tx_signature: None,
            input_token_mint: None,
            input_token_amount: None,
            withdrawn_amount_lamports: 0,
            batch_id: None,
            batched_at: None,
        }
    }

    /// Calculate remaining amount to withdraw
    pub fn remaining_lamports(&self) -> i64 {
        self.deposit_amount_lamports
            .unwrap_or(0)
            .saturating_sub(self.withdrawn_amount_lamports)
    }

    /// Check if this session is fully withdrawn
    pub fn is_fully_withdrawn(&self) -> bool {
        self.remaining_lamports() <= 0
    }
}

/// Deposit session repository trait
#[async_trait]
pub trait DepositRepository: Send + Sync {
    /// Create a new deposit session
    async fn create(&self, session: DepositSessionEntity)
        -> Result<DepositSessionEntity, AppError>;

    /// Find deposit session by ID
    async fn find_by_id(&self, id: Uuid) -> Result<Option<DepositSessionEntity>, AppError>;

    /// Find pending sessions for a user
    async fn find_by_user_pending(
        &self,
        user_id: Uuid,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Find session by wallet address and pending status
    async fn find_pending_by_wallet(
        &self,
        wallet_address: &str,
    ) -> Result<Option<DepositSessionEntity>, AppError>;

    /// Find a SOL micro deposit by its detected transaction signature.
    ///
    /// Used for idempotency and replay protection when clients submit tx signatures.
    async fn find_micro_by_tx_signature(
        &self,
        tx_signature: &str,
    ) -> Result<Option<DepositSessionEntity>, AppError>;

    /// Find a deposit session by tx signature and deposit type.
    ///
    /// Used for idempotency: prevents double-crediting when the same on-chain
    /// transaction is submitted more than once for the same deposit type.
    async fn find_by_tx_signature_and_type(
        &self,
        tx_signature: &str,
        deposit_type: DepositType,
    ) -> Result<Option<DepositSessionEntity>, AppError>;

    /// Update session status
    async fn update_status(
        &self,
        id: Uuid,
        status: DepositStatus,
        error_message: Option<String>,
    ) -> Result<(), AppError>;

    /// Update session with detected deposit info
    async fn update_detected(
        &self,
        id: Uuid,
        amount_lamports: i64,
        tx_signature: &str,
    ) -> Result<(), AppError>;

    /// Set the expected message hash for transaction validation
    async fn set_message_hash(
        &self,
        id: Uuid,
        hash: &str,
        message_bytes: Option<&[u8]>,
        tx_expires_at: Option<DateTime<Utc>>,
    ) -> Result<(), AppError>;

    /// Set the associated privacy note ID
    async fn set_privacy_note_id(&self, id: Uuid, note_id: Uuid) -> Result<(), AppError>;

    /// Set the deposit amount (used for embedded wallet flow before signing)
    async fn set_deposit_amount(&self, id: Uuid, amount_lamports: i64) -> Result<(), AppError>;

    /// Mark session as completed with deposit details
    async fn complete(
        &self,
        id: Uuid,
        tx_signature: &str,
        deposit_amount_lamports: i64,
    ) -> Result<(), AppError>;

    /// Increment processing attempts and record error
    async fn record_processing_attempt(
        &self,
        id: Uuid,
        error: Option<&str>,
    ) -> Result<(), AppError>;

    /// List sessions for a user with pagination
    async fn list_by_user(
        &self,
        user_id: Uuid,
        statuses: Option<&[DepositStatus]>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Delete a pending session (only if status is pending and no SOL detected)
    async fn delete_pending(&self, id: Uuid, user_id: Uuid) -> Result<(), AppError>;

    /// Find completed deposits ready for withdrawal (privacy period elapsed)
    async fn find_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// List deposits ready for withdrawal with pagination
    async fn list_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Count deposits ready for withdrawal
    async fn count_ready_for_withdrawal(&self, now: DateTime<Utc>) -> Result<u64, AppError>;

    /// Atomically claim deposits ready for withdrawal to prevent double-processing
    async fn claim_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
        limit: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Mark a deposit as withdrawn with the withdrawal transaction signature
    async fn mark_withdrawn(&self, id: Uuid, withdrawal_tx_signature: &str)
        -> Result<(), AppError>;

    /// Record a partial withdrawal (increments withdrawn_amount_lamports)
    /// If the withdrawal completes the session (remaining = 0), marks as Withdrawn
    async fn record_partial_withdrawal(
        &self,
        id: Uuid,
        amount_withdrawn: i64,
        tx_signature: &str,
    ) -> Result<bool, AppError>; // Returns true if fully withdrawn

    /// Count deposits for a user (for pagination)
    async fn count_by_user(
        &self,
        user_id: Uuid,
        statuses: Option<&[DepositStatus]>,
    ) -> Result<u64, AppError>;

    // ==================== Admin Methods ====================

    /// List all deposits with pagination and optional status filter (admin)
    async fn list_all(
        &self,
        statuses: Option<&[DepositStatus]>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Count all deposits with optional status filter (admin)
    async fn count_all(&self, statuses: Option<&[DepositStatus]>) -> Result<u64, AppError>;

    /// Get aggregate deposit statistics (admin)
    async fn get_stats(&self) -> Result<DepositStats, AppError>;

    /// Find deposits still in privacy period (completed but not yet ready for withdrawal)
    async fn find_in_privacy_period(
        &self,
        now: DateTime<Utc>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Count deposits in privacy period
    async fn count_in_privacy_period(&self, now: DateTime<Utc>) -> Result<u64, AppError>;

    // ==================== Micro Batch Methods ====================

    /// Get micro deposits with PendingBatch status, bounded by limit
    async fn get_pending_batch_deposits(
        &self,
        limit: i64,
    ) -> Result<Vec<DepositSessionEntity>, AppError>;

    /// Sum total lamports of all pending batch deposits
    async fn sum_pending_batch_lamports(&self) -> Result<i64, AppError>;

    /// Mark multiple deposits as batched with a batch ID and swap signature
    async fn mark_batch_complete(
        &self,
        deposit_ids: &[Uuid],
        batch_id: Uuid,
        swap_tx_signature: &str,
    ) -> Result<(), AppError>;
}

/// Aggregate deposit statistics
#[derive(Debug, Clone, Default)]
pub struct DepositStats {
    /// Total deposits ever made
    pub total_deposits: u64,
    /// Total amount deposited (in lamports)
    pub total_deposited_lamports: i64,
    /// Count of completed deposits (awaiting withdrawal)
    pub pending_withdrawal_count: u64,
    /// Total amount pending withdrawal (in lamports)
    pub pending_withdrawal_lamports: i64,
    /// Count of withdrawals completed
    pub total_withdrawn_count: u64,
    /// Total amount withdrawn (in lamports)
    pub total_withdrawn_lamports: i64,
    /// Count of failed deposits
    pub failed_count: u64,

    // ============= Enhanced Stats =============
    /// Count of deposits ready for withdrawal now (past privacy period)
    pub ready_for_withdrawal_count: u64,
    /// Amount ready for withdrawal now (in lamports)
    pub ready_for_withdrawal_lamports: i64,
    /// Count of deposits still in privacy period
    pub in_privacy_period_count: u64,
    /// Amount still in privacy period (in lamports)
    pub in_privacy_period_lamports: i64,

    // ============= Input Token Tracking =============
    /// Total input token amount for USDC deposits (in smallest unit, 6 decimals)
    pub total_usdc_input: i64,
    /// Total input token amount for USDT deposits (in smallest unit, 6 decimals)
    pub total_usdt_input: i64,
    /// Total native SOL deposits (in lamports, no swap)
    pub total_native_sol_input: i64,
    /// Count of USDC deposits
    pub usdc_deposit_count: u64,
    /// Count of USDT deposits
    pub usdt_deposit_count: u64,
    /// Count of native SOL deposits
    pub native_sol_deposit_count: u64,
}

/// In-memory deposit repository for development/testing
pub struct InMemoryDepositRepository {
    sessions: RwLock<HashMap<Uuid, DepositSessionEntity>>,
}

impl InMemoryDepositRepository {
    pub fn new() -> Self {
        Self {
            sessions: RwLock::new(HashMap::new()),
        }
    }
}

impl Default for InMemoryDepositRepository {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl DepositRepository for InMemoryDepositRepository {
    async fn create(
        &self,
        session: DepositSessionEntity,
    ) -> Result<DepositSessionEntity, AppError> {
        let mut sessions = self.sessions.write().await;
        sessions.insert(session.id, session.clone());
        Ok(session)
    }

    async fn find_by_id(&self, id: Uuid) -> Result<Option<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions.get(&id).cloned())
    }

    async fn find_by_user_pending(
        &self,
        user_id: Uuid,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        // Defensive cap: callers should prefer `list_by_user` (paginated).
        const MAX_PENDING_PER_USER: usize = 200;
        let sessions = self.sessions.read().await;
        let mut items: Vec<DepositSessionEntity> = sessions
            .values()
            .filter(|s| s.user_id == user_id && s.status == DepositStatus::Pending)
            .cloned()
            .collect();

        // Match Postgres behavior: newest first.
        items.sort_by_key(|s| s.created_at);
        items.reverse();
        items.truncate(MAX_PENDING_PER_USER);

        Ok(items)
    }

    async fn find_pending_by_wallet(
        &self,
        wallet_address: &str,
    ) -> Result<Option<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .find(|s| s.wallet_address == wallet_address && s.status == DepositStatus::Pending)
            .cloned())
    }

    async fn find_micro_by_tx_signature(
        &self,
        tx_signature: &str,
    ) -> Result<Option<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .find(|s| {
                s.deposit_type == DepositType::SolMicro
                    && s.detected_tx_signature.as_deref() == Some(tx_signature)
            })
            .cloned())
    }

    async fn find_by_tx_signature_and_type(
        &self,
        tx_signature: &str,
        deposit_type: DepositType,
    ) -> Result<Option<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .find(|s| {
                s.deposit_type == deposit_type
                    && s.detected_tx_signature.as_deref() == Some(tx_signature)
            })
            .cloned())
    }

    async fn update_status(
        &self,
        id: Uuid,
        status: DepositStatus,
        error_message: Option<String>,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.status = status;
        session.error_message = error_message;
        if status == DepositStatus::Completed {
            session.completed_at = Some(Utc::now());
        }
        Ok(())
    }

    async fn update_detected(
        &self,
        id: Uuid,
        amount_lamports: i64,
        tx_signature: &str,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.detected_amount_lamports = Some(amount_lamports);
        session.detected_tx_signature = Some(tx_signature.to_string());
        session.detected_at = Some(Utc::now());
        session.status = DepositStatus::Detected;
        Ok(())
    }

    async fn set_message_hash(
        &self,
        id: Uuid,
        hash: &str,
        message_bytes: Option<&[u8]>,
        tx_expires_at: Option<DateTime<Utc>>,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.expected_message_hash = Some(hash.to_string());
        session.expected_message_bytes = message_bytes.map(|b| b.to_vec());
        session.tx_expires_at = tx_expires_at;
        Ok(())
    }

    async fn set_privacy_note_id(&self, id: Uuid, note_id: Uuid) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.privacy_note_id = Some(note_id);
        Ok(())
    }

    async fn set_deposit_amount(&self, id: Uuid, amount_lamports: i64) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.deposit_amount_lamports = Some(amount_lamports);
        Ok(())
    }

    async fn complete(
        &self,
        id: Uuid,
        tx_signature: &str,
        deposit_amount_lamports: i64,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.status = DepositStatus::Completed;
        session.privacy_deposit_tx_signature = Some(tx_signature.to_string());
        session.deposit_amount_lamports = Some(deposit_amount_lamports);
        session.completed_at = Some(Utc::now());
        Ok(())
    }

    async fn record_processing_attempt(
        &self,
        id: Uuid,
        error: Option<&str>,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.processing_attempts += 1;
        session.last_processing_attempt_at = Some(Utc::now());
        session.last_processing_error = error.map(|s| s.to_string());
        Ok(())
    }

    async fn list_by_user(
        &self,
        user_id: Uuid,
        statuses: Option<&[DepositStatus]>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        let mut filtered: Vec<_> = sessions
            .values()
            .filter(|s| s.user_id == user_id && statuses.map_or(true, |st| st.contains(&s.status)))
            .cloned()
            .collect();
        filtered.sort_by(|a, b| b.created_at.cmp(&a.created_at));
        Ok(filtered
            .into_iter()
            .skip(offset as usize)
            .take(limit as usize)
            .collect())
    }

    async fn delete_pending(&self, id: Uuid, user_id: Uuid) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;

        if session.user_id != user_id {
            return Err(AppError::Forbidden(
                "Not authorized to delete this session".into(),
            ));
        }

        if session.status != DepositStatus::Pending {
            return Err(AppError::Validation(
                "Can only delete pending sessions".into(),
            ));
        }

        if session.detected_amount_lamports.is_some() {
            return Err(AppError::Validation(
                "Cannot delete session after SOL detected".into(),
            ));
        }

        sessions.remove(&id);
        Ok(())
    }

    async fn find_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| {
                (s.status == DepositStatus::Completed
                    || s.status == DepositStatus::PartiallyWithdrawn
                    || s.status == DepositStatus::PendingRetry)
                    && s.stored_share_b.is_some()
                    && s.withdrawal_available_at.is_some_and(|t| t <= now)
                    && !s.is_fully_withdrawn() // Has remaining balance
            })
            .cloned()
            .collect())
    }

    async fn list_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        let mut ready: Vec<DepositSessionEntity> = sessions
            .values()
            .filter(|s| {
                (s.status == DepositStatus::Completed
                    || s.status == DepositStatus::PartiallyWithdrawn
                    || s.status == DepositStatus::PendingRetry)
                    && s.stored_share_b.is_some()
                    && s.withdrawal_available_at.is_some_and(|t| t <= now)
                    && !s.is_fully_withdrawn()
            })
            .cloned()
            .collect();

        ready.sort_by_key(|s| s.withdrawal_available_at);

        Ok(ready
            .into_iter()
            .skip(offset as usize)
            .take(limit as usize)
            .collect())
    }

    async fn count_ready_for_withdrawal(&self, now: DateTime<Utc>) -> Result<u64, AppError> {
        let sessions = self.sessions.read().await;
        let count = sessions
            .values()
            .filter(|s| {
                (s.status == DepositStatus::Completed
                    || s.status == DepositStatus::PartiallyWithdrawn
                    || s.status == DepositStatus::PendingRetry)
                    && s.stored_share_b.is_some()
                    && s.withdrawal_available_at.is_some_and(|t| t <= now)
                    && !s.is_fully_withdrawn()
            })
            .count();
        Ok(count as u64)
    }

    async fn claim_ready_for_withdrawal(
        &self,
        now: DateTime<Utc>,
        limit: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let mut sessions = self.sessions.write().await;
        let mut ready: Vec<(Uuid, DateTime<Utc>)> = sessions
            .iter()
            .filter_map(|(id, session)| {
                let available_at = session.withdrawal_available_at?;
                let is_ready = (session.status == DepositStatus::Completed
                    || session.status == DepositStatus::PartiallyWithdrawn
                    || session.status == DepositStatus::PendingRetry)
                    && session.stored_share_b.is_some()
                    && available_at <= now
                    && !session.is_fully_withdrawn(); // Has remaining balance
                is_ready.then_some((*id, available_at))
            })
            .collect();

        ready.sort_by_key(|(_, available_at)| *available_at);

        let mut claimed = Vec::new();
        for (id, _) in ready.into_iter().take(limit as usize) {
            if let Some(session) = sessions.get_mut(&id) {
                session.status = DepositStatus::Processing;
                claimed.push(session.clone());
            }
        }

        Ok(claimed)
    }

    async fn mark_withdrawn(
        &self,
        id: Uuid,
        withdrawal_tx_signature: &str,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;
        session.status = DepositStatus::Withdrawn;
        session.withdrawal_tx_signature = Some(withdrawal_tx_signature.to_string());
        session.withdrawn_amount_lamports = session.deposit_amount_lamports.unwrap_or(0);
        // Clear stored share B after withdrawal for security
        session.stored_share_b = None;
        Ok(())
    }

    async fn record_partial_withdrawal(
        &self,
        id: Uuid,
        amount_withdrawn: i64,
        tx_signature: &str,
    ) -> Result<bool, AppError> {
        let mut sessions = self.sessions.write().await;
        let session = sessions
            .get_mut(&id)
            .ok_or_else(|| AppError::NotFound("Deposit session not found".into()))?;

        session.withdrawn_amount_lamports += amount_withdrawn;
        session.withdrawal_tx_signature = Some(tx_signature.to_string());

        let fully_withdrawn = session.is_fully_withdrawn();
        if fully_withdrawn {
            session.status = DepositStatus::Withdrawn;
            // Clear stored share B after full withdrawal for security
            session.stored_share_b = None;
        } else {
            // Mark as PartiallyWithdrawn so it can be picked up again
            session.status = DepositStatus::PartiallyWithdrawn;
        }

        Ok(fully_withdrawn)
    }

    async fn count_by_user(
        &self,
        user_id: Uuid,
        statuses: Option<&[DepositStatus]>,
    ) -> Result<u64, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| s.user_id == user_id && statuses.map_or(true, |st| st.contains(&s.status)))
            .count() as u64)
    }

    async fn list_all(
        &self,
        statuses: Option<&[DepositStatus]>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        let mut filtered: Vec<_> = sessions
            .values()
            .filter(|s| statuses.map_or(true, |st| st.contains(&s.status)))
            .cloned()
            .collect();
        filtered.sort_by(|a, b| b.created_at.cmp(&a.created_at));
        Ok(filtered
            .into_iter()
            .skip(offset as usize)
            .take(limit as usize)
            .collect())
    }

    async fn count_all(&self, statuses: Option<&[DepositStatus]>) -> Result<u64, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| statuses.map_or(true, |st| st.contains(&s.status)))
            .count() as u64)
    }

    async fn get_stats(&self) -> Result<DepositStats, AppError> {
        let sessions = self.sessions.read().await;
        let mut stats = DepositStats::default();
        let now = chrono::Utc::now();

        // Well-known stablecoin mints
        const USDC_MINT: &str = "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
        const USDT_MINT: &str = "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB";

        for session in sessions.values() {
            stats.total_deposits += 1;

            let amount = session.deposit_amount_lamports.unwrap_or(0);
            let input_amount = session.input_token_amount.unwrap_or(0);

            // Track input token type
            if let Some(ref mint) = session.input_token_mint {
                match mint.as_str() {
                    USDC_MINT => {
                        stats.usdc_deposit_count += 1;
                        stats.total_usdc_input += input_amount;
                    }
                    USDT_MINT => {
                        stats.usdt_deposit_count += 1;
                        stats.total_usdt_input += input_amount;
                    }
                    _ => {
                        // Unknown token, count as native SOL for now
                        stats.native_sol_deposit_count += 1;
                        stats.total_native_sol_input += amount;
                    }
                }
            } else {
                // No input mint = native SOL deposit
                stats.native_sol_deposit_count += 1;
                stats.total_native_sol_input += amount;
            }

            match session.status {
                DepositStatus::Completed | DepositStatus::PendingRetry => {
                    stats.pending_withdrawal_count += 1;
                    stats.pending_withdrawal_lamports += amount;
                    stats.total_deposited_lamports += amount;

                    // Check if ready for withdrawal or still in privacy period
                    let ready = session
                        .withdrawal_available_at
                        .map(|at| at <= now)
                        .unwrap_or(false);
                    if ready {
                        stats.ready_for_withdrawal_count += 1;
                        stats.ready_for_withdrawal_lamports += amount;
                    } else {
                        stats.in_privacy_period_count += 1;
                        stats.in_privacy_period_lamports += amount;
                    }
                }
                DepositStatus::Withdrawn => {
                    stats.total_withdrawn_count += 1;
                    stats.total_withdrawn_lamports += amount;
                    stats.total_deposited_lamports += amount;
                }
                DepositStatus::Failed => {
                    stats.failed_count += 1;
                }
                _ => {}
            }
        }

        Ok(stats)
    }

    async fn find_in_privacy_period(
        &self,
        now: DateTime<Utc>,
        limit: u32,
        offset: u32,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        let mut filtered: Vec<_> = sessions
            .values()
            .filter(|s| {
                (s.status == DepositStatus::Completed || s.status == DepositStatus::PendingRetry)
                    && s.withdrawal_available_at.is_some_and(|t| t > now)
            })
            .cloned()
            .collect();
        filtered.sort_by(|a, b| {
            // Sort by withdrawal_available_at ascending (soonest first)
            a.withdrawal_available_at
                .cmp(&b.withdrawal_available_at)
                .then_with(|| b.created_at.cmp(&a.created_at))
        });
        Ok(filtered
            .into_iter()
            .skip(offset as usize)
            .take(limit as usize)
            .collect())
    }

    async fn count_in_privacy_period(&self, now: DateTime<Utc>) -> Result<u64, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| {
                (s.status == DepositStatus::Completed || s.status == DepositStatus::PendingRetry)
                    && s.withdrawal_available_at.is_some_and(|t| t > now)
            })
            .count() as u64)
    }

    async fn get_pending_batch_deposits(
        &self,
        limit: i64,
    ) -> Result<Vec<DepositSessionEntity>, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| {
                s.status == DepositStatus::PendingBatch
                    && s.deposit_type == DepositType::SolMicro
                    && s.batch_id.is_none() // H-06: exclude already-claimed deposits
            })
            .take(limit as usize)
            .cloned()
            .collect())
    }

    async fn sum_pending_batch_lamports(&self) -> Result<i64, AppError> {
        let sessions = self.sessions.read().await;
        Ok(sessions
            .values()
            .filter(|s| {
                s.status == DepositStatus::PendingBatch && s.deposit_type == DepositType::SolMicro
            })
            .map(|s| s.deposit_amount_lamports.unwrap_or(0))
            .sum())
    }

    async fn mark_batch_complete(
        &self,
        deposit_ids: &[Uuid],
        batch_id: Uuid,
        swap_tx_signature: &str,
    ) -> Result<(), AppError> {
        let mut sessions = self.sessions.write().await;
        let now = Utc::now();
        for id in deposit_ids {
            if let Some(session) = sessions.get_mut(id) {
                session.status = DepositStatus::Batched;
                session.batch_id = Some(batch_id);
                session.batched_at = Some(now);
                session.withdrawal_tx_signature = Some(swap_tx_signature.to_string());
            }
        }
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use chrono::Duration;

    fn create_test_session(user_id: Uuid) -> DepositSessionEntity {
        let session_id = Uuid::new_v4();
        let withdrawal_available_at = Utc::now() + Duration::days(7);
        DepositSessionEntity::new_privacy_deposit(
            user_id,
            session_id,
            "TestWalletAddress123".to_string(),
            1_000_000_000, // 1 SOL
            "tx_sig_test".to_string(),
            "base64_share_b".to_string(),
            withdrawal_available_at,
        )
    }

    #[tokio::test]
    async fn test_create_privacy_deposit_session() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let session = create_test_session(user_id);

        let created = repo.create(session).await.unwrap();
        assert_eq!(created.wallet_type, WalletType::Embedded);
        assert_eq!(created.status, DepositStatus::Completed);
        assert!(created.stored_share_b.is_some());
        assert!(created.withdrawal_available_at.is_some());
    }

    #[tokio::test]
    async fn test_find_by_id() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let session = create_test_session(user_id);
        let session_id = session.id;

        repo.create(session).await.unwrap();

        let found = repo.find_by_id(session_id).await.unwrap();
        assert!(found.is_some());
        assert_eq!(found.unwrap().id, session_id);
    }

    #[tokio::test]
    async fn test_find_by_user_pending_is_capped_and_ordered() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();

        // Insert more than the cap.
        for i in 0..250 {
            let mut session = create_test_session(user_id);
            session.status = DepositStatus::Pending;
            session.created_at = Utc::now() + Duration::seconds(i);
            repo.create(session).await.unwrap();
        }

        let items = repo.find_by_user_pending(user_id).await.unwrap();
        assert_eq!(items.len(), 200);
        assert!(items.windows(2).all(|w| w[0].created_at >= w[1].created_at));
    }

    #[tokio::test]
    async fn test_update_status() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let session = create_test_session(user_id);

        let created = repo.create(session).await.unwrap();
        repo.update_status(created.id, DepositStatus::Failed, Some("Test error".into()))
            .await
            .unwrap();

        let updated = repo.find_by_id(created.id).await.unwrap().unwrap();
        assert_eq!(updated.status, DepositStatus::Failed);
        assert_eq!(updated.error_message, Some("Test error".into()));
    }

    #[tokio::test]
    async fn test_find_ready_for_withdrawal() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();

        // Create session with withdrawal available in the past
        let session_id = Uuid::new_v4();
        let past_withdrawal = Utc::now() - Duration::hours(1);
        let session = DepositSessionEntity::new_privacy_deposit(
            user_id,
            session_id,
            "Wallet".to_string(),
            1_000_000_000,
            "tx_sig".to_string(),
            "share_b".to_string(),
            past_withdrawal,
        );
        repo.create(session).await.unwrap();

        let ready = repo.find_ready_for_withdrawal(Utc::now()).await.unwrap();
        assert_eq!(ready.len(), 1);
        assert_eq!(ready[0].id, session_id);
    }

    #[tokio::test]
    async fn test_list_and_count_ready_for_withdrawal() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let now = Utc::now();

        let past_withdrawal = now - Duration::hours(1);
        let s1 = DepositSessionEntity::new_privacy_deposit(
            user_id,
            Uuid::new_v4(),
            "Wallet1".to_string(),
            1_000_000_000,
            "tx1".to_string(),
            "share_b".to_string(),
            past_withdrawal,
        );
        let s2 = DepositSessionEntity::new_privacy_deposit(
            user_id,
            Uuid::new_v4(),
            "Wallet2".to_string(),
            1_000_000_000,
            "tx2".to_string(),
            "share_b".to_string(),
            past_withdrawal,
        );
        repo.create(s1.clone()).await.unwrap();
        repo.create(s2.clone()).await.unwrap();

        // Not ready (privacy period not elapsed)
        let future_withdrawal = now + Duration::hours(1);
        let s3 = DepositSessionEntity::new_privacy_deposit(
            user_id,
            Uuid::new_v4(),
            "Wallet3".to_string(),
            1_000_000_000,
            "tx3".to_string(),
            "share_b".to_string(),
            future_withdrawal,
        );
        repo.create(s3).await.unwrap();

        let total = repo.count_ready_for_withdrawal(now).await.unwrap();
        assert_eq!(total, 2);

        let page1 = repo.list_ready_for_withdrawal(now, 1, 0).await.unwrap();
        assert_eq!(page1.len(), 1);

        let page2 = repo.list_ready_for_withdrawal(now, 1, 1).await.unwrap();
        assert_eq!(page2.len(), 1);

        let mut ids = vec![page1[0].id, page2[0].id];
        ids.sort();
        let mut expected = vec![s1.id, s2.id];
        expected.sort();
        assert_eq!(ids, expected);
    }

    #[tokio::test]
    async fn test_claim_ready_for_withdrawal_marks_processing() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();

        let session_id = Uuid::new_v4();
        let past_withdrawal = Utc::now() - Duration::hours(1);
        let session = DepositSessionEntity::new_privacy_deposit(
            user_id,
            session_id,
            "Wallet".to_string(),
            1_000_000_000,
            "tx_sig".to_string(),
            "share_b".to_string(),
            past_withdrawal,
        );
        repo.create(session).await.unwrap();

        let claimed = repo
            .claim_ready_for_withdrawal(Utc::now(), 10)
            .await
            .unwrap();
        assert_eq!(claimed.len(), 1);
        assert_eq!(claimed[0].id, session_id);

        let updated = repo.find_by_id(session_id).await.unwrap().unwrap();
        assert_eq!(updated.status, DepositStatus::Processing);
    }

    #[tokio::test]
    async fn test_claim_ready_for_withdrawal_respects_limit() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let past_withdrawal = Utc::now() - Duration::hours(1);

        for _ in 0..3 {
            let session_id = Uuid::new_v4();
            let session = DepositSessionEntity::new_privacy_deposit(
                user_id,
                session_id,
                "Wallet".to_string(),
                1_000_000_000,
                "tx_sig".to_string(),
                "share_b".to_string(),
                past_withdrawal,
            );
            repo.create(session).await.unwrap();
        }

        let claimed = repo
            .claim_ready_for_withdrawal(Utc::now(), 2)
            .await
            .unwrap();
        assert_eq!(claimed.len(), 2);
    }

    #[tokio::test]
    async fn test_mark_withdrawn() {
        let repo = InMemoryDepositRepository::new();
        let user_id = Uuid::new_v4();
        let session = create_test_session(user_id);
        let session_id = session.id;

        repo.create(session).await.unwrap();
        repo.mark_withdrawn(session_id, "withdrawal_tx_sig_123")
            .await
            .unwrap();

        let updated = repo.find_by_id(session_id).await.unwrap().unwrap();
        assert_eq!(updated.status, DepositStatus::Withdrawn);
        assert_eq!(
            updated.withdrawal_tx_signature,
            Some("withdrawal_tx_sig_123".to_string())
        );
        // Share B should be cleared after withdrawal
        assert!(updated.stored_share_b.is_none());
    }

    #[test]
    fn test_status_parsing_valid() {
        let parsed_status: DepositStatus = "completed".parse().expect("valid status");
        assert_eq!(parsed_status, DepositStatus::Completed);
        assert_eq!(
            "completed".parse::<DepositStatus>().ok(),
            Some(DepositStatus::Completed)
        );

        let parsed_wallet: WalletType = "embedded".parse().expect("valid wallet type");
        assert_eq!(parsed_wallet, WalletType::Embedded);
        assert_eq!(
            "embedded".parse::<WalletType>().ok(),
            Some(WalletType::Embedded)
        );
    }

    #[test]
    fn test_status_parsing_invalid() {
        assert!("unknown".parse::<DepositStatus>().is_err());

        assert!("unknown".parse::<WalletType>().is_err());
    }
}