From ddcc5d911cee33a4b98e3fe6b0749467d5800700 Mon Sep 17 00:00:00 2001 From: Elo <104064497+Metachaser24@users.noreply.github.com> Date: Tue, 27 Feb 2024 06:22:35 +0300 Subject: [PATCH] Changed import style for helper functions in usageGuide simplified imports --- docs/zkEmailDocs/UsageGuide/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/zkEmailDocs/UsageGuide/README.md b/docs/zkEmailDocs/UsageGuide/README.md index 84557aaeb..2091cd66b 100644 --- a/docs/zkEmailDocs/UsageGuide/README.md +++ b/docs/zkEmailDocs/UsageGuide/README.md @@ -22,8 +22,7 @@ Next, create an `inputs.ts` file. In this file, you will use the `generateCircui Here is a sample code snippet to guide you: ```javascript -import { generateCircuitInputs } from "@zk-email/helpers/dist/input-helpers"; -import { verifyDKIMSignature } from "@zk-email/helpers/dist/dkim" +import { generateCircuitInputs, verifyDKIMSignature } from "@zk-email/helpers"; import fs from "fs"; import path from "path";