StoredWalletInfo

@Serializable
data class StoredWalletInfo(val groupId: String, val displayName: String, val walletType: WalletType, val createdAt: Long)

Wallet-level metadata stored separately from per-algorithm shares.

This replaces the legacy MPCGroup:* storage pattern where displayName and walletType were stored alongside shares.

Constructors

Link copied to clipboard
constructor(groupId: String, displayName: String, walletType: WalletType, createdAt: Long)

Properties

Link copied to clipboard

Timestamp when wallet was created (milliseconds since epoch)

Link copied to clipboard

User-provided display name for this wallet

Link copied to clipboard

The MPC group identifier

Link copied to clipboard

Type of wallet (2-of-2 or 2-of-3)