From 4b9c648e446f00fe637e92bfeb3a7046e5cb4fc7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 9 Apr 2023 14:53:44 -0400 Subject: [PATCH] *Missing args to api call in ipns method --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index f55a69a..a5b1e0b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -25,7 +25,7 @@ export class IPFSClient extends Client { } public async ipns(cid: string): Promise { - return this.callModuleReturn("ipnsResolve"); + return this.callModuleReturn("ipnsResolve", { cid }); } public async activePeers(): Promise {