From 4672f839a22c373ddbc3a8be0d0ca6ad4c825f96 Mon Sep 17 00:00:00 2001 From: Arseniy Klempner Date: Wed, 12 Nov 2025 11:50:29 -0800 Subject: [PATCH] fix: update comments, tsconfig --- packages/rln/src/index.ts | 1 - packages/rln/src/types.ts | 2 +- packages/rln/tsconfig.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/rln/src/index.ts b/packages/rln/src/index.ts index 304b41900c..b2bd28e3e3 100644 --- a/packages/rln/src/index.ts +++ b/packages/rln/src/index.ts @@ -16,7 +16,6 @@ export { createViemClientFromWindow }; -// Export wagmi-generated ABIs export { wakuRlnV2Abi, linearPriceCalculatorAbi, diff --git a/packages/rln/src/types.ts b/packages/rln/src/types.ts index 20a1d1af9f..0e4f4f0980 100644 --- a/packages/rln/src/types.ts +++ b/packages/rln/src/types.ts @@ -8,7 +8,7 @@ import { export type StartRLNOptions = { /** - * If not set - will attempt to create from injected provider. + * If not set - will attempt to create from provider injected in window. */ rpcClient?: WalletClient; /** diff --git a/packages/rln/tsconfig.json b/packages/rln/tsconfig.json index 170dfc02c2..f31944719d 100644 --- a/packages/rln/tsconfig.json +++ b/packages/rln/tsconfig.json @@ -6,5 +6,5 @@ "tsBuildInfoFile": "dist/.tsbuildinfo" }, "include": ["src"], - "exclude": ["wagmi.config.ts"] + "exclude": ["wagmi.config.ts", "src/**/*.spec.ts", "src/test_utils"] }