From 916ecf494c20b100cd48c5dcdcc4b0369e4e60a2 Mon Sep 17 00:00:00 2001 From: MananTank Date: Fri, 23 May 2025 17:11:46 +0000 Subject: [PATCH] [TOOL-4591] Fix resolveImplementation jsdoc code example in jsdoc (#7141) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR updates the import path for the `resolveImplementation` function to reflect its new location within the `thirdweb/utils` directory. ### Detailed summary - Changed import statement for `resolveImplementation` from `thirdweb` to `thirdweb/utils`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit - **Documentation** - Updated example import path in documentation for improved clarity. --- packages/thirdweb/src/utils/bytecode/resolveImplementation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/thirdweb/src/utils/bytecode/resolveImplementation.ts b/packages/thirdweb/src/utils/bytecode/resolveImplementation.ts index 8699061e3a0..00945145ad9 100644 --- a/packages/thirdweb/src/utils/bytecode/resolveImplementation.ts +++ b/packages/thirdweb/src/utils/bytecode/resolveImplementation.ts @@ -18,7 +18,7 @@ const ZERO_BYTES32 = * @returns A promise that resolves to an object containing the implementation address and bytecode. * @example * ```ts - * import { resolveImplementation } from "thirdweb"; + * import { resolveImplementation } from "thirdweb/utils"; * const implementation = await resolveImplementation(contract); * ``` * @contract