From da79f33af33789356b49537e2e2cb5f47d775296 Mon Sep 17 00:00:00 2001 From: Jaden Date: Tue, 21 May 2024 10:49:36 -0400 Subject: [PATCH 1/2] feat: removing duplicated degen --- utils/chains.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/utils/chains.ts b/utils/chains.ts index aa25f66a2..19c0c48c1 100644 --- a/utils/chains.ts +++ b/utils/chains.ts @@ -409,19 +409,4 @@ export default [ oracleBidsEnabled: true, checkPollingInterval: reservoirChains.nebula.checkPollingInterval, }, - { - ...customChains.degen, - name: 'Degen', - lightIconUrl: '/icons/degen-icon-light.svg', - darkIconUrl: '/icons/degen-icon-dark.svg', - reservoirBaseUrl: reservoirChains.degen.baseApiUrl, - proxyApi: '/api/reservoir/degen', - routePrefix: 'degen', - apiKey: process.env.RESERVOIR_API_KEY, - coingeckoId: 'degen-base', - collectionSetId: process.env.NEXT_PUBLIC_DEGEN_COLLECTION_SET_ID, - community: process.env.NEXT_PUBLIC_DEGEN_COMMUNITY, - oracleBidsEnabled: true, - checkPollingInterval: reservoirChains.degen.checkPollingInterval, - }, ] as ReservoirChain[] From e425926784244274273e1a5707d648143004b0bc Mon Sep 17 00:00:00 2001 From: Jaden Date: Tue, 21 May 2024 11:38:40 -0400 Subject: [PATCH 2/2] feat: disabling xai and nebula for testing --- utils/chains.ts | 60 ++++++++++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/utils/chains.ts b/utils/chains.ts index 19c0c48c1..ddf2c2a46 100644 --- a/utils/chains.ts +++ b/utils/chains.ts @@ -379,34 +379,34 @@ export default [ oracleBidsEnabled: true, checkPollingInterval: reservoirChains.degen.checkPollingInterval, }, - { - ...customChains.xai, - name: 'Xai', - lightIconUrl: '/icons/xai-icon-light.svg', - darkIconUrl: '/icons/xai-icon-dark.svg', - reservoirBaseUrl: reservoirChains.xai.baseApiUrl, - proxyApi: '/api/reservoir/xai', - routePrefix: 'xai', - apiKey: process.env.RESERVOIR_API_KEY, - coingeckoId: 'xai-blockchain', - collectionSetId: process.env.NEXT_PUBLIC_XAI_COLLECTION_SET_ID, - community: process.env.NEXT_PUBLIC_XAI_COMMUNITY, - oracleBidsEnabled: true, - checkPollingInterval: reservoirChains.xai.checkPollingInterval, - }, - { - ...customChains.nebula, - name: 'Nebula', - lightIconUrl: '/icons/nebula-icon-light.svg', - darkIconUrl: '/icons/nebula-icon-dark.svg', - reservoirBaseUrl: reservoirChains.nebula.baseApiUrl, - proxyApi: '/api/reservoir/nebula', - routePrefix: 'nebula', - apiKey: process.env.RESERVOIR_API_KEY, - coingeckoId: 'ethereum', - collectionSetId: process.env.NEXT_PUBLIC_NEBULA_COLLECTION_SET_ID, - community: process.env.NEXT_PUBLIC_NEBULA_COMMUNITY, - oracleBidsEnabled: true, - checkPollingInterval: reservoirChains.nebula.checkPollingInterval, - }, + // { + // ...customChains.xai, + // name: 'Xai', + // lightIconUrl: '/icons/xai-icon-light.svg', + // darkIconUrl: '/icons/xai-icon-dark.svg', + // reservoirBaseUrl: reservoirChains.xai.baseApiUrl, + // proxyApi: '/api/reservoir/xai', + // routePrefix: 'xai', + // apiKey: process.env.RESERVOIR_API_KEY, + // coingeckoId: 'xai-blockchain', + // collectionSetId: process.env.NEXT_PUBLIC_XAI_COLLECTION_SET_ID, + // community: process.env.NEXT_PUBLIC_XAI_COMMUNITY, + // oracleBidsEnabled: true, + // checkPollingInterval: reservoirChains.xai.checkPollingInterval, + // }, + // { + // ...customChains.nebula, + // name: 'Nebula', + // lightIconUrl: '/icons/nebula-icon-light.svg', + // darkIconUrl: '/icons/nebula-icon-dark.svg', + // reservoirBaseUrl: reservoirChains.nebula.baseApiUrl, + // proxyApi: '/api/reservoir/nebula', + // routePrefix: 'nebula', + // apiKey: process.env.RESERVOIR_API_KEY, + // coingeckoId: 'ethereum', + // collectionSetId: process.env.NEXT_PUBLIC_NEBULA_COLLECTION_SET_ID, + // community: process.env.NEXT_PUBLIC_NEBULA_COMMUNITY, + // oracleBidsEnabled: true, + // checkPollingInterval: reservoirChains.nebula.checkPollingInterval, + // }, ] as ReservoirChain[]