Skip to content

Commit

Permalink
update indexer to production
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed May 7, 2024
1 parent 66fcdef commit 86e6c12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/data-layer/src/data-layer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ describe("v2 projects retrieval", () => {
fetch: fetchMock,
search: { baseUrl: "https://example.com" },
subgraph: { endpointsByChainId: {} },
indexer: { baseUrl: "https://indexer-staging.fly.dev/graphql" },
indexer: { baseUrl: "https://grants-stack-indexer-v2.gitcoin.co/graphql" },
});

const project = await dataLayer.getProjectById({
Expand Down Expand Up @@ -612,7 +612,7 @@ describe("v2 projects retrieval", () => {
fetch: fetchMock,
search: { baseUrl: "https://example.com" },
subgraph: { endpointsByChainId: {} },
indexer: { baseUrl: "https://indexer-staging.fly.dev/graphql" },
indexer: { baseUrl: "https://grants-stack-indexer-v2.gitcoin.co/graphql" },
});

const projects = await dataLayer.getProjectsByAddress({
Expand Down Expand Up @@ -646,7 +646,7 @@ describe("v2 projects retrieval", () => {
fetch: fetchMock,
search: { baseUrl: "https://example.com" },
subgraph: { endpointsByChainId: {} },
indexer: { baseUrl: "https://indexer-staging.fly.dev/graphql" },
indexer: { baseUrl: "https://grants-stack-indexer-v2.gitcoin.co/graphql" },
});

const applications = await dataLayer.getApplicationsByProjectIds({
Expand Down

0 comments on commit 86e6c12

Please sign in to comment.