diff --git a/apps/subgraph/README.md b/apps/subgraph/README.md index e94ca12de..131d8f6ba 100644 --- a/apps/subgraph/README.md +++ b/apps/subgraph/README.md @@ -42,7 +42,7 @@ ## Networks -You can access any subgraph supported by Semaphore with the following URL: `https://api.studio.thegraph.com/query/14377/semaphore-/v4.1.0`. +You can access any subgraph supported by Semaphore with the following URL: `https://api.studio.thegraph.com/query/14377/semaphore-/v4.2.0`. Supported networks: diff --git a/packages/data/src/getURL.ts b/packages/data/src/getURL.ts index 129e44d20..4c8a6c15a 100644 --- a/packages/data/src/getURL.ts +++ b/packages/data/src/getURL.ts @@ -12,5 +12,5 @@ export default function getURL(supportedNetwork: SupportedNetwork): string { throw new TypeError(`Network '${supportedNetwork}' is not supported`) } - return `https://api.studio.thegraph.com/query/14377/semaphore-${supportedNetwork}/v4.1.0` + return `https://api.studio.thegraph.com/query/14377/semaphore-${supportedNetwork}/v4.2.0` }