diff --git a/packages/providers/account-abstraction-provider/src/providers/types.ts b/packages/providers/account-abstraction-provider/src/providers/types.ts index 71f8280a8..c29414559 100644 --- a/packages/providers/account-abstraction-provider/src/providers/types.ts +++ b/packages/providers/account-abstraction-provider/src/providers/types.ts @@ -2,8 +2,10 @@ import { createBundlerClient, createPaymasterClient } from "viem/account-abstrac export type BundlerConfig = { url: string; -} & Pick[0], "key" | "name" | "cacheTime" | "pollingInterval" | "userOperation" | "rpcSchema" | "transport">; +} & Pick[0], "key" | "name" | "cacheTime" | "pollingInterval" | "userOperation" | "rpcSchema"> & + Partial[0], "transport">>; export type PaymasterConfig = { url: string; -} & Pick[0], "key" | "name" | "pollingInterval" | "rpcSchema" | "cacheTime" | "transport">; +} & Pick[0], "key" | "name" | "pollingInterval" | "rpcSchema" | "cacheTime"> & + Partial[0], "transport">>;