From 3b70ba00af611692e494f0752e295e3c3c5a19fa Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 2 Sep 2023 23:03:50 -0400 Subject: [PATCH] refactor: switch to decodeCid --- src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index be4bcb0..595b837 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,7 @@ import { MemoryLevel } from "memory-level"; import { base58btc } from "multiformats/bases/base58"; import KeyPairEd25519 from "@lumeweb/libs5/lib/ed25519.js"; import defer from "p-defer"; -import { encodeCid } from "@lumeweb/libportal"; +import { decodeCid, encodeCid } from "@lumeweb/libportal"; const BIP44_PATH = "m/44'/1627'/0'/0'/0'"; @@ -163,7 +163,7 @@ node.services.p2p.once("peerConnected", peerDefer.resolve); await peerDefer.promise; { - const cidBytes = base58btc.decode(cid); + const cidBytes = decodeCid(cid); const key = hdKey as HDKey; let revision = 0; @@ -183,7 +183,7 @@ await peerDefer.promise; CID_TYPES.RESOLVER, CID_HASH_TYPES.BLAKE3, ]), - cidBytes, + cidBytes.hash, ); if (!equalBytes(ret?.data ?? new Uint8Array(), newEntry)) {