Skip to content

Commit bed81f7

Browse files
authored
feat: lower some IGP quotes (#5347)
### Description - Base and OP cut in half - Lower the ethereum gas price ### Drive-by changes <!-- Are there any minor or drive-by changes also included? --> ### Related issues <!-- - Fixes #[issue number here] --> ### Backward compatibility <!-- Are these changes backward compatible? Are there any infrastructure implications, e.g. changes that would prohibit deploying older commits using this infra tooling? Yes/No --> ### Testing <!-- What kind of testing have these changes undergone? None/Manual/Unit Tests -->
1 parent 30eeecf commit bed81f7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

rust/sealevel/environments/mainnet3/gas-oracle-configs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"base": {
2020
"oracleConfig": {
2121
"tokenExchangeRate": "203047922474445771936",
22-
"gasPrice": "502398873",
22+
"gasPrice": "251199323",
2323
"tokenDecimals": 18
2424
},
2525
"overhead": 166887
@@ -67,7 +67,7 @@
6767
"optimism": {
6868
"oracleConfig": {
6969
"tokenExchangeRate": "203047922474445771936",
70-
"gasPrice": "502398873",
70+
"gasPrice": "251199323",
7171
"tokenDecimals": 18
7272
},
7373
"overhead": 166887

typescript/infra/config/environments/mainnet3/gasPrices.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"decimals": 9
141141
},
142142
"ethereum": {
143-
"amount": "20.047740244",
143+
"amount": "10",
144144
"decimals": 9
145145
},
146146
"everclear": {

typescript/infra/src/config/gas-oracle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ function getMinUsdCost(local: ChainName, remote: ChainName): number {
171171
// aren't accounted for directly in the gas price.
172172
arbitrum: 0.5,
173173
ancient8: 0.5,
174-
base: 0.5,
174+
base: 0.25,
175175
blast: 0.5,
176176
bob: 0.5,
177177
fraxtal: 0.5,
178178
linea: 0.5,
179179
mantapacific: 0.5,
180180
mantle: 0.5,
181181
mode: 0.5,
182-
optimism: 0.5,
182+
optimism: 0.25,
183183
polygonzkevm: 0.5,
184184
// Scroll is more expensive than the rest due to higher L1 fees
185185
scroll: 1.5,

0 commit comments

Comments
 (0)