-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GMS-1265] Add default gas overrides (#140)
* add default gas overrides * remove * udpate gas config --------- Co-authored-by: Allan Almeida <[email protected]>
- Loading branch information
1 parent
720ed7d
commit 85019e1
Showing
4 changed files
with
187 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { CallOverrides } from "@ethersproject/contracts"; | ||
|
||
// https://docs.immutable.com/docs/zkEVM/architecture/gas-config | ||
export const defaultGasOverrides: CallOverrides = { | ||
maxPriorityFeePerGas: 10e9, // 10 Gwei | ||
maxFeePerGas: 15e9, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.