Skip to content

Commit

Permalink
fix(tyoes): add missing field for FeeParams
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Sep 26, 2024
1 parent c5f67d6 commit 456c73a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@ export interface FeeParams {
/** Maximum amount of public data allowed per batch. */
max_pubdata_per_batch: bigint;
};
/** Represents the BaseToken<->ETH conversion ratio. */
conversion_ratio: {
/** Represents the denominator part of the conversion ratio. */
denominator: bigint;
/** Represents the numerator part of the conversion ratio. */
numerator: bigint;
};
/** Current L1 gas price. */
l1_gas_price: bigint;
/** Price of storing public data on L1. */
Expand Down

0 comments on commit 456c73a

Please sign in to comment.