From 53b17984c0fef5ff7e7cdf598a854d83e36cd9d5 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 15 Sep 2025 14:25:03 -0700 Subject: [PATCH] Fix missing constants from unminified build. --- src/lib/vault/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/vault/index.ts b/src/lib/vault/index.ts index d7636e9..d90db6b 100644 --- a/src/lib/vault/index.ts +++ b/src/lib/vault/index.ts @@ -3,6 +3,7 @@ import { Worker as NodeWorker } from 'node:worker_threads' import { Data, NamedData } from '#types' +import { default as CONSTANTS } from '../constants' import { Bip39, Bip44, Blake2b, NanoNaCl, WalletAesGcm } from '../crypto' import { Passkey } from './passkey' import { VaultTimer } from './vault-timer' @@ -116,6 +117,7 @@ export class Vault { } const blob = ` + ${CONSTANTS} const ${Bip39.name} = ${Bip39} const ${Bip44.name} = ${Bip44} const ${Blake2b.name} = ${Blake2b} -- 2.47.3