Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .example.env
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
2 changes: 0 additions & 2 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -55,7 +54,6 @@ export type DataSets =

export type Chains =
| "mainnet"
| "goerli"
| "polygon"
| "arbitrum"
| "optimism"
Expand Down
1 change: 0 additions & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down