Skip to content

Commit

Permalink
wip: knip
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom committed Jun 17, 2024
1 parent 1ef5db7 commit ca8a6ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/accounts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ export {
generatePrivateKey,
} from './generatePrivateKey.js'
export {
type HDKeyToAccountOptions,
type HDKeyToAccountErrorType,
hdKeyToAccount,
} from './hdKeyToAccount.js'
export {
type MnemonicToAccountOptions,
type MnemonicToAccountErrorType,
mnemonicToAccount,
} from './mnemonicToAccount.js'
export {
type PrivateKeyToAccountOptions,
type PrivateKeyToAccountErrorType,
privateKeyToAccount,
} from './privateKeyToAccount.js'
Expand Down
2 changes: 1 addition & 1 deletion src/utils/promise/withDedupe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LruMap } from '../lru.js'
/** @internal */
export const promiseCache = /*#__PURE__*/ new LruMap<Promise<any>>(8192)

export type WithDedupeOptions = {
type WithDedupeOptions = {
enabled?: boolean | undefined
id?: string | undefined
}
Expand Down

0 comments on commit ca8a6ac

Please sign in to comment.