Skip to content

Commit

Permalink
Merge pull request #4 from candidelabs/fix/pm-sponsor-useroperation-type
Browse files Browse the repository at this point in the history
fix PmSponsorUserOperationResult type
  • Loading branch information
sherifahmed990 authored Oct 30, 2023
2 parents eab36ac + 803af1e commit 3abf176
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ export type UserOperationReceiptResult = {

export type PmSponsorUserOperationResult = {
paymasterAndData: BytesLike;
callGasLimit: BigNumberish;
preVerificationGas: BigNumberish;
verificationGasLimit: BigNumberish;
maxFeePerGas: BigNumberish;
maxPriorityFeePerGas: BigNumberish;
callGasLimit?: BigNumberish;
preVerificationGas?: BigNumberish;
verificationGasLimit?: BigNumberish;
maxFeePerGas?: BigNumberish;
maxPriorityFeePerGas?: BigNumberish;
};

export enum Operation {
Expand Down

0 comments on commit 3abf176

Please sign in to comment.