]> zoso.dev Git - libnemo.git/commitdiff
Export Safe class for external usage.
authorChris Duncan <chris@zoso.dev>
Thu, 3 Oct 2024 19:58:52 +0000 (12:58 -0700)
committerChris Duncan <chris@zoso.dev>
Thu, 3 Oct 2024 19:58:52 +0000 (12:58 -0700)
src/lib/safe.ts
src/main.ts

index bd0b6896843d6f66ace7ea4f6730fbf0110d7256..5da675f1e1854b16e17a0fd58367587a3ed4f1c9 100644 (file)
@@ -5,6 +5,7 @@ import { buffer, utf8 } from './convert.js'
 import { Entropy } from './entropy.js'
 const { subtle } = globalThis.crypto
 const ERR_MSG = 'Failed to store item in Safe'
+
 export class Safe {
   #items: Map<string, { encrypted: ArrayBuffer, iv: Entropy }> = new Map()
 
index ea71ab926b1e35a36df7c425df3ef488ecdb99b1..c4d2553c1818aedf6900f2d38274f108b655fef2 100644 (file)
@@ -5,7 +5,8 @@ import { Account } from './lib/account.js'
 import { SendBlock, ReceiveBlock, ChangeBlock } from './lib/block.js'
 import { Node } from './lib/node.js'
 import { Rolodex } from './lib/rolodex.js'
+import { Safe } from './lib/safe.js'
 import Tools from './lib/tools.js'
 import { Bip44Wallet, Blake2bWallet, LedgerWallet } from './lib/wallet.js'
 
-export { Account, SendBlock, ReceiveBlock, ChangeBlock, Node, Rolodex, Tools, Bip44Wallet, Blake2bWallet, LedgerWallet }
+export { Account, SendBlock, ReceiveBlock, ChangeBlock, Node, Rolodex, Safe, Tools, Bip44Wallet, Blake2bWallet, LedgerWallet }