UNPKG

wallet-storage

Version:

BRC100 conforming wallet, wallet storage and wallet signer components

17 lines 497 B
import { sdk } from "../../../index.client"; export interface Settings extends sdk.StorageIdentity, sdk.EntityTimeStamp { created_at: Date; updated_at: Date; /** * The identity key (public key) assigned to this storage */ storageIdentityKey: string; /** * The human readable name assigned to this storage. */ storageName: string; chain: sdk.Chain; dbtype: 'SQLite' | 'MySQL'; maxOutputScript: number; } //# sourceMappingURL=Settings.d.ts.map