Skip to content

Commit

Permalink
Add NEXT_PUBLIC_NUMIA_BASE_URL base var (#3300)
Browse files Browse the repository at this point in the history
Merging after discussion with Max
  • Loading branch information
niccoloraspa committed Jun 12, 2024
1 parent eee49af commit 8bc5820
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/server/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ export const TIMESERIES_DATA_URL =
export const INDEXER_DATA_URL =
process.env.NEXT_PUBLIC_INDEXER_DATA_URL ??
"https://stage-proxy-data-indexer.osmosis-labs.workers.dev";
export const NUMIA_BASE_URL =
process.env.NEXT_PUBLIC_NUMIA_BASE_URL ??
"https://public-osmosis-api.numia.xyz";

// sqs
export const SIDECAR_BASE_URL =
process.env.NEXT_PUBLIC_SIDECAR_BASE_URL ?? "https://sqs.osmosis.zone/";
export const TFM_BASE_URL = process.env.NEXT_PUBLIC_TFM_API_BASE_URL;
export const NUMIA_BASE_URL = "https://public-osmosis-api.numia.xyz";

export const KEYBASE_BASE_URL = "https://keybase.io/";
export const KV_STORE_REST_API_URL = process.env.KV_STORE_REST_API_URL;
export const KV_STORE_REST_API_TOKEN = process.env.KV_STORE_REST_API_TOKEN;
Expand Down

0 comments on commit 8bc5820

Please sign in to comment.