//! SPDX-FileCopyrightText: 2025 Chris Duncan <chris@codecow.com>
//! SPDX-License-Identifier: GPL-3.0-or-later
-import { derive as nano25519_derive, sign as nano25519_sign } from 'nano25519'
+import { derive as nano25519_derive, sign as nano25519_sign } from 'nano25519/sync'
import { parentPort, threadId } from 'node:worker_threads'
import { BIP44_COIN_NANO } from '../constants'
import { Bip39, Bip44, Blake2b, WalletAesGcm } from '../crypto'
import { WalletType } from '../wallet'
-import { Passkey } from './passkey'
import { parseAction, parseData, parseIv, parseKeySalt, parseType } from './parsers'
+import { Passkey } from './passkey'
import { VaultTimer } from './vault-timer'
const encoder = new TextEncoder()