Skip to content

Commit

Permalink
fixed gas type (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarri authored Jun 7, 2022
1 parent 5b9e40a commit 78bd813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/types/ITransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface ITransferRequest extends IBaseRequest {
from: string
to: string
value: string
gas?: string
gas?: number
gasPrice?: string
maxFeePerGas?: string
maxPriorityFeePerGas?: string
Expand Down Expand Up @@ -74,7 +74,7 @@ export interface IETHTransactionParams extends IBaseTransactionParams, IPrivateT
interface IBaseTransactionParams {
from?: string
value?: string
gas?: string
gas?: number
gasPrice?: string
maxFeePerGas?: string
maxPriorityFeePerGas?: string
Expand Down

0 comments on commit 78bd813

Please sign in to comment.