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"] }