From ee3208dbdf7a2ff8c41953a0bf26aa25998bd132 Mon Sep 17 00:00:00 2001 From: Daniel Savu <23065004+daniel-savu@users.noreply.github.com> Date: Wed, 12 Feb 2025 15:36:19 +0000 Subject: [PATCH] chore: increase igp quote for solana --- .../environments/mainnet3/gas-oracle-configs.json | 14 +++----------- typescript/infra/src/config/gas-oracle.ts | 2 +- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/rust/sealevel/environments/mainnet3/gas-oracle-configs.json b/rust/sealevel/environments/mainnet3/gas-oracle-configs.json index a7c41ed435..f788846756 100644 --- a/rust/sealevel/environments/mainnet3/gas-oracle-configs.json +++ b/rust/sealevel/environments/mainnet3/gas-oracle-configs.json @@ -119,14 +119,6 @@ "tokenDecimals": 9 }, "overhead": 600000 - }, - "treasure": { - "oracleConfig": { - "tokenExchangeRate": "21123257666268419", - "gasPrice": "1601935300783", - "tokenDecimals": 18 - }, - "overhead": 333774 } }, "eclipsemainnet": { @@ -141,7 +133,7 @@ "solanamainnet": { "oracleConfig": { "tokenExchangeRate": "115958288827584", - "gasPrice": "50977", + "gasPrice": "61172", "tokenDecimals": 9 }, "overhead": 600000 @@ -159,7 +151,7 @@ "solanamainnet": { "oracleConfig": { "tokenExchangeRate": "115958288827584", - "gasPrice": "50977", + "gasPrice": "61172", "tokenDecimals": 9 }, "overhead": 600000 @@ -169,7 +161,7 @@ "solanamainnet": { "oracleConfig": { "tokenExchangeRate": "1500000000000000", - "gasPrice": "50977", + "gasPrice": "61172", "tokenDecimals": 9 }, "overhead": 600000 diff --git a/typescript/infra/src/config/gas-oracle.ts b/typescript/infra/src/config/gas-oracle.ts index 4a29678bf5..61d6fe0442 100644 --- a/typescript/infra/src/config/gas-oracle.ts +++ b/typescript/infra/src/config/gas-oracle.ts @@ -187,7 +187,7 @@ function getMinUsdCost(local: ChainName, remote: ChainName): number { // Nexus adjustment neutron: 0.5, // For Solana, special min cost - solanamainnet: 1, + solanamainnet: 1.2, }; const override = remoteMinCostOverrides[remote]; if (override !== undefined) {