@bajetech/digitalbits-wallet-sdk
Version:
A library to make it easier to write wallets that interact with the DigitalBits blockchain
12 lines (10 loc) • 377 B
text/typescript
import { IdentityEncrypter } from "./plugins/IdentityEncrypter";
import { LocalStorageKeyStore } from "./plugins/LocalStorageKeyStore";
import { MemoryKeyStore } from "./plugins/MemoryKeyStore";
import { ScryptEncrypter } from "./plugins/ScryptEncrypter";
export const KeyManagerPlugins = {
IdentityEncrypter,
MemoryKeyStore,
LocalStorageKeyStore,
ScryptEncrypter,
};