Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/thirdweb/scripts/typedoc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import { Application } from "typedoc";
const jsonOut = "typedoc/documentation.json";

const app = await Application.bootstrapWithPlugins({
entryPoints: ["src/exports/**/*.ts", "src/extensions/modules/**/index.ts"],
entryPoints: [
"src/exports/**/*.ts",
"src/extensions/modules/**/index.ts",
"src/adapters/eip1193/index.ts",
],
exclude: [
"src/exports/*.native.ts",
"src/exports/**/*.native.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/thirdweb/src/adapters/eip1193/from-eip1193.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ export type FromEip1193AdapterOptions = {
* value: 1000000000000000000n
* });
* ```
*
* @extension EIP1193
*/
export function fromProvider(options: FromEip1193AdapterOptions): Wallet {
const id: WalletId = options.walletId ?? "adapter";
Expand Down
2 changes: 2 additions & 0 deletions packages/thirdweb/src/adapters/eip1193/to-eip1193.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export type ToEip1193ProviderOptions = {
* console.log("Active accounts:", accounts);
* });
* ```
*
* @extension EIP1193
*/
export function toProvider(options: ToEip1193ProviderOptions): EIP1193Provider {
const { chain, client, wallet, connectOverride } = options;
Expand Down
Loading