Skip to content

Fix/prepare user operation for erc20 paymaster #338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 1, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ import {
} from "viem"
import {
type BundlerClient,
type GetPaymasterDataParameters,
type GetPaymasterDataReturnType,
type PrepareUserOperationParameters,
type PrepareUserOperationRequest,
type PrepareUserOperationReturnType,
type SmartAccount,
type UserOperation,
type UserOperationCall,
getPaymasterData as getPaymasterData_,
getPaymasterStubData,
prepareUserOperation
} from "viem/account-abstraction"
import { getChainId as getChainId_ } from "viem/actions"
Expand Down Expand Up @@ -196,6 +199,17 @@ export const prepareUserOperationForErc20Paymaster =
"prepareUserOperation"
)({
...parameters,
paymaster: {
getPaymasterData: (
parameters: GetPaymasterDataParameters
): Promise<GetPaymasterDataReturnType> => {
return getAction(
client,
getPaymasterStubData,
"getPaymasterStubData"
)(parameters)
}
},
calls: callsWithDummyApproval
} as unknown as PrepareUserOperationParameters)

Expand Down
Loading