Skip to content

Commit

Permalink
Merge pull request #1978 from Web3Auth/feat/aa-paymaster-context
Browse files Browse the repository at this point in the history
account abstraction add paymaster context
  • Loading branch information
chaitanyapotti authored Oct 9, 2024
2 parents ba9ef6d + 4c0ca66 commit e97679a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { createBundlerClient, createPaymasterClient } from "viem/account-abstrac

export type BundlerConfig = {
url: string;
} & Pick<Parameters<typeof createBundlerClient>[0], "key" | "name" | "cacheTime" | "pollingInterval" | "userOperation" | "rpcSchema"> &
} & Omit<Parameters<typeof createBundlerClient>[0], "account" | "client" | "transport" | "paymaster"> &
Partial<Pick<Parameters<typeof createBundlerClient>[0], "transport">>;

export type PaymasterConfig = {
url: string;
} & Pick<Parameters<typeof createPaymasterClient>[0], "key" | "name" | "pollingInterval" | "rpcSchema" | "cacheTime"> &
} & Omit<Parameters<typeof createPaymasterClient>[0], "transport"> &
Partial<Pick<Parameters<typeof createPaymasterClient>[0], "transport">>;

0 comments on commit e97679a

Please sign in to comment.