Skip to content

Commit

Permalink
problem: some fields should be optional (ex. for a gas estimation)
Browse files Browse the repository at this point in the history
  • Loading branch information
splix committed Dec 18, 2024
1 parent 9bef05b commit 2f8c462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/transaction/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ export const DEFAULT_GAS_LIMIT_ERC20 = 60000 as const;
export interface EthereumBasicTransaction {
data?: string;
from?: string;
gas?: number | string;
gas?: string;
gasPrice?: string;
maxFeePerGas?: string;
maxPriorityFeePerGas?: string;
to: string;
to?: string;
value?: string;
}

Expand Down

0 comments on commit 2f8c462

Please sign in to comment.