wallet-storage
Version:
BRC100 conforming wallet, wallet storage and wallet signer components
19 lines (17 loc) • 400 B
text/typescript
import { sdk } from "../../../index.client"
export interface SyncState extends sdk.EntityTimeStamp {
created_at: Date
updated_at: Date
syncStateId: number
userId: number
storageIdentityKey: string
storageName: string
status: sdk.SyncStatus
init: boolean
refNum: string
syncMap: string
when?: Date
satoshis?: number
errorLocal?: string
errorOther?: string
}