UNPKG

wallet-storage

Version:

BRC100 conforming wallet, wallet storage and wallet signer components

19 lines (15 loc) 376 B
import { sdk } from "../../../index.client" export interface User extends sdk.EntityTimeStamp { created_at: Date updated_at: Date userId: number /** * PubKeyHex uniquely identifying user. * Typically 66 hex digits. */ identityKey: string /** * The storageIdentityKey value of the active wallet storage. */ activeStorage?: string }