diff --git a/packages/shared/src/lib/core/layer-2/stores/evm-chain-gas-prices.store.ts b/packages/shared/src/lib/core/layer-2/stores/evm-chain-gas-prices.store.ts deleted file mode 100644 index 10e32d8ce1..0000000000 --- a/packages/shared/src/lib/core/layer-2/stores/evm-chain-gas-prices.store.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { get, writable } from 'svelte/store' -import { NetworkId } from '@core/network/types' -import { EvmChainGasPrices } from '../types' - -export const evmChainGasPrices = writable({}) - -export function getEvmChainGasPrice(networkId: NetworkId): bigint | undefined { - return get(evmChainGasPrices)[networkId] -} diff --git a/packages/shared/src/lib/core/layer-2/stores/index.ts b/packages/shared/src/lib/core/layer-2/stores/index.ts index 2c59ed1ce6..7c15aa4d3f 100644 --- a/packages/shared/src/lib/core/layer-2/stores/index.ts +++ b/packages/shared/src/lib/core/layer-2/stores/index.ts @@ -1,2 +1 @@ -export * from './evm-chain-gas-prices.store' export * from './layer2-balances.store' diff --git a/packages/shared/src/lib/core/layer-2/types/evm-chain-gas-prices.type.ts b/packages/shared/src/lib/core/layer-2/types/evm-chain-gas-prices.type.ts deleted file mode 100644 index 876a3c8e17..0000000000 --- a/packages/shared/src/lib/core/layer-2/types/evm-chain-gas-prices.type.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { NetworkId } from '@core/network/types' - -export type EvmChainGasPrices = { - [id in NetworkId]?: bigint -} diff --git a/packages/shared/src/lib/core/layer-2/types/index.ts b/packages/shared/src/lib/core/layer-2/types/index.ts index 9b525d20c3..797274a189 100644 --- a/packages/shared/src/lib/core/layer-2/types/index.ts +++ b/packages/shared/src/lib/core/layer-2/types/index.ts @@ -1,6 +1,5 @@ export * from './abi.type' export * from './contract.type' -export * from './evm-chain-gas-prices.type' export * from './evm-transaction-options.type' export * from './evm-transaction-data.type' export * from './layer-2-account-balance.type'