From b407bc9fd8379bf304ffb963f8cb8e64493914b5 Mon Sep 17 00:00:00 2001 From: kumaryash90 Date: Tue, 3 Sep 2024 15:39:12 +0000 Subject: [PATCH] Remove XPLA overrides for create2 deployment (#4368) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Problem solved Short description of the bug fixed or feature added --- ## PR-Codex overview The focus of this PR is to update gas prices for different networks in `any-evm-constants.ts`. ### Detailed summary - Updated gas price for "Xpla Testnet" to 2000 * 10 ** 9. - Removed gas price for "Xpla Mainnet". - Updated gas price for "BitTorrent Chain" to 300000 * 10 ** 9. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- legacy_packages/sdk/src/evm/common/any-evm-constants.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/legacy_packages/sdk/src/evm/common/any-evm-constants.ts b/legacy_packages/sdk/src/evm/common/any-evm-constants.ts index 43aebc5bfcc..1230e1dc69a 100644 --- a/legacy_packages/sdk/src/evm/common/any-evm-constants.ts +++ b/legacy_packages/sdk/src/evm/common/any-evm-constants.ts @@ -73,14 +73,6 @@ export const CUSTOM_GAS_FOR_CHAIN: Record = { name: "Cronos Testnet", gasPrice: 2000 * 10 ** 9, }, - [47]: { - name: "Xpla Testnet", - gasPrice: 850 * 10 ** 9, - }, - [37]: { - name: "Xpla Mainnet", - gasPrice: 5100 * 10 ** 9, - }, [199]: { name: "BitTorrent Chain", gasPrice: 300000 * 10 ** 9,