consolidate wallet sync status into shared WalletSyncStatus type.

This commit is contained in:
2026-09-06 15:21:13 +02:00
parent 9e776df79f
commit 5f1c8bee4b
8 changed files with 22 additions and 27 deletions
@@ -0,0 +1,5 @@
export enum WalletSyncStatus {
Synced = 'synced',
Syncing = 'syncing',
Unknown = 'unknown'
}