From d3c968ba6c91dbe6d2cd967e6dde8d7518902adf Mon Sep 17 00:00:00 2001 From: armando Date: Mon, 25 Sep 2023 13:43:11 -0400 Subject: [PATCH] feat: Remove goerli --- .example.env | 2 +- src/types/index.ts | 2 -- src/utils/index.ts | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.example.env b/.example.env index d702221..3cfbc7a 100644 --- a/.example.env +++ b/.example.env @@ -32,7 +32,7 @@ REDIS_URL= # Syncer Configuration # ==================== -# CHAIN (Required): The chain to sync. Supported chains: 'mainnet', 'goerli', 'sepolia', 'polygon', 'arbitrum' 'optimism' +# CHAIN (Required): The chain to sync. Supported chains: 'mainnet', 'sepolia', 'polygon', 'arbitrum' 'optimism' CHAIN= # API_KEY (Required): Reservoir API key. Sign up for free at https://reservoir.tools/ diff --git a/src/types/index.ts b/src/types/index.ts index c711d8a..208b4d3 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -7,7 +7,6 @@ import { Application } from "express"; export enum URLs { "mainnet" = "wss://ws.reservoir.tools", - "goerli" = "wss://ws-goerli.reservoir.tools", "polygon" = "wss://ws-polygon.reservoir.tools", "arbitrum" = "wss://ws-arbitrum.reservoir.tools", "sepolia" = "wss://ws-sepolia.reservoir.tools", @@ -55,7 +54,6 @@ export type DataSets = export type Chains = | "mainnet" - | "goerli" | "polygon" | "arbitrum" | "optimism" diff --git a/src/utils/index.ts b/src/utils/index.ts index 04e1690..99c71aa 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -132,7 +132,6 @@ export const addressToBuffer = (hexValue: string = "") => { export const UrlBase = { mainnet: "https://api.reservoir.tools", - goerli: "https://api-goerli.reservoir.tools", sepolia: "https://api-sepolia.reservoir.tools", polygon: "https://api-polygon.reservoir.tools", arbitrum: "https://api-arbitrum.reservoir.tools",