Skip to content

Commit

Permalink
chore: tsdoc - ignore helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Sep 19, 2024
1 parent 427ce0e commit 9300d5c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/viem:bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
3 changes: 3 additions & 0 deletions src/sdk/account/utils/AccountNotFound.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { BaseError } from "viem"

/**
* @ignore
*/
export class AccountNotFoundError extends BaseError {
constructor({ docsPath }: { docsPath?: string | undefined } = {}) {
super(
Expand Down
5 changes: 5 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 9300d5c

Please sign in to comment.