From 4a902730f5470840e905947361cb2295000bd682 Mon Sep 17 00:00:00 2001 From: kryptocodes Date: Mon, 14 Jul 2025 18:38:39 +0530 Subject: [PATCH] docs: Update SDK import paths in documentation for web and backend sections Signed-off-by: kryptocodes --- content/docs/advance-options/web-sdk.mdx | 2 +- content/docs/web/backend/installation.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/advance-options/web-sdk.mdx b/content/docs/advance-options/web-sdk.mdx index 8067361..45e2442 100644 --- a/content/docs/advance-options/web-sdk.mdx +++ b/content/docs/advance-options/web-sdk.mdx @@ -255,7 +255,7 @@ The SDK provides a method to verify the verification credentials(proofs) to ensu ```javascript - import { verifyProof } from 'reclaim-sdk' + import { verifyProof } from '@reclaimprotocol/js-sdk' // make sure proofObject is of type 'Proof' Object const isValid = await verifyProof(proofObject) diff --git a/content/docs/web/backend/installation.mdx b/content/docs/web/backend/installation.mdx index a8c7ec9..f1fbbc5 100644 --- a/content/docs/web/backend/installation.mdx +++ b/content/docs/web/backend/installation.mdx @@ -53,7 +53,7 @@ yarn add @reclaimprotocol/js-sdk You can verify the installation by running: ```bash - pip show reclaim-sdk + pip show reclaim-python-sdk ``` #### Importing the SDK