From 8f20fe5a9854059ad3a63edcd014776d60dac2cb Mon Sep 17 00:00:00 2001 From: Maximilian Schneider Date: Fri, 22 Dec 2023 19:17:52 +0100 Subject: [PATCH] re-enable shared pool --- components/settings/RpcSettings.tsx | 6 +++++- utils/constants.ts | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/components/settings/RpcSettings.tsx b/components/settings/RpcSettings.tsx index 2086e0f0..337ae5e5 100644 --- a/components/settings/RpcSettings.tsx +++ b/components/settings/RpcSettings.tsx @@ -18,7 +18,11 @@ export const LITE_RPC_URL = 'https://api.mngo.cloud/lite-rpc/v1/' const RPC_URLS = [ { label: 'Triton Shared', - value: process.env.NEXT_PUBLIC_ENDPOINT || TRITON_DEDICATED_URL, + value: process.env.NEXT_PUBLIC_ENDPOINT, + }, + { + label: 'Triton Dedicated', + value: process.env.TRITON_DEDICATED_URL, }, // { // label: 'Genesys Go', diff --git a/utils/constants.ts b/utils/constants.ts index 0c79899f..cb2fce30 100644 --- a/utils/constants.ts +++ b/utils/constants.ts @@ -49,7 +49,7 @@ export const FAVORITE_SWAPS_KEY = 'favoriteSwaps-0.2' export const THEME_KEY = 'theme-0.1' -export const RPC_PROVIDER_KEY = 'rpcProviderKey-0.10' +export const RPC_PROVIDER_KEY = 'rpcProviderKey-0.11' export const PRIORITY_FEE_KEY = 'priorityFeeKey-0.2'