From 28e781e55268cb6f520d1c4fbe17576785d9ecc7 Mon Sep 17 00:00:00 2001 From: jsy1218 <91580504+jsy1218@users.noreply.github.com> Date: Fri, 7 Jun 2024 14:04:06 -0700 Subject: [PATCH 1/2] remove quicknodetest_1 sampling --- lib/config/rpcProviderProdConfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/rpcProviderProdConfig.json b/lib/config/rpcProviderProdConfig.json index 8409bd42f9..3930b47da4 100644 --- a/lib/config/rpcProviderProdConfig.json +++ b/lib/config/rpcProviderProdConfig.json @@ -69,8 +69,8 @@ "useMultiProviderProb": 1, "latencyEvaluationSampleProb": 0.05, "healthCheckSampleProb": 0.001, - "providerInitialWeights": [0, 1, 0], - "providerUrls": ["ALCHEMY_1", "QUICKNODE_1", "QUICKNODETEST_1"] + "providerInitialWeights": [0, 1], + "providerUrls": ["ALCHEMY_1", "QUICKNODE_1"] }, { "chainId": 81457, From f06595901636bf0cf35b3be0f4d8716c6fab6190 Mon Sep 17 00:00:00 2001 From: jsy1218 <91580504+jsy1218@users.noreply.github.com> Date: Fri, 7 Jun 2024 14:05:50 -0700 Subject: [PATCH 2/2] remove quicknodetest_1 from secret fetching --- bin/app.ts | 1 - lib/rpc/utils.ts | 4 ---- 2 files changed, 5 deletions(-) diff --git a/bin/app.ts b/bin/app.ts index 19c5cd3f0f..be56703ce3 100644 --- a/bin/app.ts +++ b/bin/app.ts @@ -220,7 +220,6 @@ export class RoutingAPIPipeline extends Stack { 'NIRVANA_1', 'ALCHEMY_1', 'QUICKNODERETH_1', - 'QUICKNODETEST_1', // Blast 'QUICKNODE_81457', // 'INFURA_81457', diff --git a/lib/rpc/utils.ts b/lib/rpc/utils.ts index 2ee52bc974..5ddffae49b 100644 --- a/lib/rpc/utils.ts +++ b/lib/rpc/utils.ts @@ -101,10 +101,6 @@ export function generateProviderUrl(key: string, value: string): string { case 'QUICKNODE_7777777': { return `https://${tokens[0]}.zora-mainnet.quiknode.pro/${tokens[1]}` } - // QuickNode test key - case 'QUICKNODETEST_1': { - return `https://${tokens[0]}.quiknode.pro/${tokens[1]}` - } // QuickNode RETH case 'QUICKNODERETH_1': { return `https://${tokens[0]}.quiknode.pro/${tokens[1]}`