fix: change ed25519-keygen import

This commit is contained in:
Derrick Hammer 2023-04-19 18:39:11 -04:00
parent 1bd466cc20
commit 7ec8bb79db
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { HDKey } from "ed25519-keygen/hdkey";
import { HDKey } from "ed25519-keygen/dist/hdkey";
import config from "../config";
import * as bip39 from "@scure/bip39";
import { wordlist } from "@scure/bip39/wordlists/english";

View File

@ -17,7 +17,7 @@ import {
ProtocolManager,
} from "./swarm.js";
import { get as getApp } from "./app.js";
import type { HDKey } from "ed25519-keygen/hdkey";
import type { HDKey } from "ed25519-keygen/dist/hdkey";
import corePlugins from "../plugins";
import Util from "./plugin/util";