From 7dd6f9f0b0524b86e851add7e825b9dd0ac3a7c8 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 23 Jun 2023 08:55:20 -0400 Subject: [PATCH] fix: ensure we are using the export for @noble/hashes utils --- src/portal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portal.ts b/src/portal.ts index 1219014..3c0bd7b 100644 --- a/src/portal.ts +++ b/src/portal.ts @@ -2,7 +2,7 @@ import { ErrTuple, KeyPair, Portal } from "#types.js"; import { Client } from "@lumeweb/libportal"; import { deriveChildKey } from "#keys.js"; import { ed25519 } from "@noble/curves/ed25519"; -import { bytesToHex } from "@noble/hashes/utils.js"; +import { bytesToHex } from "@noble/hashes/utils"; let activePortalMasterKey;