Skip to content

Commit

Permalink
fix: copy pasta error in middleware types
Browse files Browse the repository at this point in the history
Co-authored-by: Ajay Vasisht <[email protected]>
  • Loading branch information
moldy530 and avasisht23 authored Nov 29, 2023
1 parent 4f5d49f commit f108d0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/alchemy/src/middleware/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export type * from "./simulate-uo/index.js";

export type RequestGasAndPaymasterAndDataOverrides = Partial<{
maxFeePerGas: UserOperationRequest["maxFeePerGas"] | Percentage;
maxPriorityFeePerGas: UserOperationRequest["maxFeePerGas"] | Percentage;
callGasLimit: UserOperationRequest["maxFeePerGas"] | Percentage;
preVerificationGas: UserOperationRequest["maxFeePerGas"] | Percentage;
verificationGasLimit: UserOperationRequest["maxFeePerGas"] | Percentage;
maxPriorityFeePerGas: UserOperationRequest["maxPriorityFeePerGas"] | Percentage;
callGasLimit: UserOperationRequest["callGasLimit"] | Percentage;
preVerificationGas: UserOperationRequest["preVerificationGas"] | Percentage;
verificationGasLimit: UserOperationRequest["verificationGasLimit"] | Percentage;
}>;

0 comments on commit f108d0a

Please sign in to comment.