Skip to content

Commit

Permalink
feat: lower some IGP quotes (#5347)
Browse files Browse the repository at this point in the history
### 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
-->
  • Loading branch information
tkporter authored Jan 31, 2025
1 parent 30eeecf commit bed81f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rust/sealevel/environments/mainnet3/gas-oracle-configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"base": {
"oracleConfig": {
"tokenExchangeRate": "203047922474445771936",
"gasPrice": "502398873",
"gasPrice": "251199323",
"tokenDecimals": 18
},
"overhead": 166887
Expand Down Expand Up @@ -67,7 +67,7 @@
"optimism": {
"oracleConfig": {
"tokenExchangeRate": "203047922474445771936",
"gasPrice": "502398873",
"gasPrice": "251199323",
"tokenDecimals": 18
},
"overhead": 166887
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"decimals": 9
},
"ethereum": {
"amount": "20.047740244",
"amount": "10",
"decimals": 9
},
"everclear": {
Expand Down
4 changes: 2 additions & 2 deletions typescript/infra/src/config/gas-oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,15 @@ function getMinUsdCost(local: ChainName, remote: ChainName): number {
// aren't accounted for directly in the gas price.
arbitrum: 0.5,
ancient8: 0.5,
base: 0.5,
base: 0.25,
blast: 0.5,
bob: 0.5,
fraxtal: 0.5,
linea: 0.5,
mantapacific: 0.5,
mantle: 0.5,
mode: 0.5,
optimism: 0.5,
optimism: 0.25,
polygonzkevm: 0.5,
// Scroll is more expensive than the rest due to higher L1 fees
scroll: 1.5,
Expand Down

0 comments on commit bed81f7

Please sign in to comment.