We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fcff83 commit 2b414f8Copy full SHA for 2b414f8
packages/subgraph/src/getURL.ts
@@ -8,8 +8,9 @@ import { Network } from "./types"
8
export default function getURL(network: Network): string {
9
switch (network) {
10
case "goerli":
11
+ return `https://api.thegraph.com/subgraphs/name/semaphore-protocol/goerli-5259d3`
12
case "arbitrum":
- return `https://api.thegraph.com/subgraphs/name/semaphore-protocol/${network}`
13
+ return `https://api.thegraph.com/subgraphs/name/semaphore-protocol/arbitrum-86337c`
14
default:
15
throw new TypeError(`Network '${network}' is not supported`)
16
}
0 commit comments