diff --git a/scripts/viem:bundler.ts b/scripts/viem:bundler.ts index c4b7e3b9..557b3278 100644 --- a/scripts/viem:bundler.ts +++ b/scripts/viem:bundler.ts @@ -130,11 +130,11 @@ const main = async () => { account: nexusAccount }) const userOpReceipt = await bicoBundler.waitForUserOperationReceipt({ hash }) - const txHash = await publicClient.waitForTransactionReceipt({ + const {transactionHash} = await publicClient.waitForTransactionReceipt({ hash: userOpReceipt.receipt.transactionHash }) console.timeEnd("write methods") - console.log({ txHash }) + console.log({ transactionHash }) } main() diff --git a/src/sdk/account/utils/AccountNotFound.ts b/src/sdk/account/utils/AccountNotFound.ts index 3547d09f..e373fcac 100644 --- a/src/sdk/account/utils/AccountNotFound.ts +++ b/src/sdk/account/utils/AccountNotFound.ts @@ -1,5 +1,8 @@ import { BaseError } from "viem" +/** + * @ignore + */ export class AccountNotFoundError extends BaseError { constructor({ docsPath }: { docsPath?: string | undefined } = {}) { super( diff --git a/typedoc.json b/typedoc.json index 6a717b22..1b6162e2 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,6 +1,11 @@ { "$schema": "https://typedoc.org/schema.json", "entryPoints": ["src/index.ts"], + "exclude": [ + "src/sdk/account/utils/**/*.ts", + "src/sdk/__contracts/**/*.ts", + "src/test/**/*.ts" + ], "basePath": "src", "includes": "src", "out": "docs",