UNPKG

@bajetech/digitalbits-wallet-sdk

Version:

A library to make it easier to write wallets that interact with the DigitalBits blockchain

11 lines 501 B
import { IdentityEncrypter } from "./plugins/IdentityEncrypter"; import { LocalStorageKeyStore } from "./plugins/LocalStorageKeyStore"; import { MemoryKeyStore } from "./plugins/MemoryKeyStore"; import { ScryptEncrypter } from "./plugins/ScryptEncrypter"; export var KeyManagerPlugins = { IdentityEncrypter: IdentityEncrypter, MemoryKeyStore: MemoryKeyStore, LocalStorageKeyStore: LocalStorageKeyStore, ScryptEncrypter: ScryptEncrypter, }; //# sourceMappingURL=KeyManagerPlugins.js.map