From d914d67f74c387d506bfc9c749e98b13ed13bf70 Mon Sep 17 00:00:00 2001 From: Chaitanya Potti Date: Thu, 26 Sep 2024 16:15:58 +0800 Subject: [PATCH] allow passing transport to paymaster --- .../account-abstraction-provider/src/providers/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/providers/account-abstraction-provider/src/providers/types.ts b/packages/providers/account-abstraction-provider/src/providers/types.ts index 1ec07e5eb..71f8280a8 100644 --- a/packages/providers/account-abstraction-provider/src/providers/types.ts +++ b/packages/providers/account-abstraction-provider/src/providers/types.ts @@ -2,8 +2,8 @@ import { createBundlerClient, createPaymasterClient } from "viem/account-abstrac export type BundlerConfig = { url: string; -} & Pick[0], "key" | "name" | "cacheTime" | "pollingInterval" | "userOperation" | "rpcSchema">; +} & Pick[0], "key" | "name" | "cacheTime" | "pollingInterval" | "userOperation" | "rpcSchema" | "transport">; export type PaymasterConfig = { url: string; -} & Pick[0], "key" | "name" | "pollingInterval" | "rpcSchema">; +} & Pick[0], "key" | "name" | "pollingInterval" | "rpcSchema" | "cacheTime" | "transport">;