Skip to content

Commit 0a6d420

Browse files
authored
Merge pull request #887 from kleros/chore/use-the-org-subgraph
chore: use the kleros org account for the subgraph
2 parents b69abee + a41343d commit 0a6d420

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

web/codegen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { CodegenConfig } from "@graphql-codegen/cli";
22

33
const config: CodegenConfig = {
44
overwrite: true,
5-
schema: ["https://api.thegraph.com/subgraphs/name/alcercu/kleroscoretest"],
5+
schema: ["https://api.thegraph.com/subgraphs/name/kleros/kleros-v2-core-arbitrum-goerli"],
66
documents: "./src/hooks/queries/*.ts",
77
generates: {
88
"./src/graphql/": {

web/src/app.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const App: React.FC = () => {
2525
<SWRConfig
2626
value={{
2727
fetcher: fetcherBuilder(
28-
process.env.REACT_APP_SUBGRAPH_ENDPOINT ?? "https://api.thegraph.com/subgraphs/name/alcercu/kleroscoretest"
28+
process.env.REACT_APP_SUBGRAPH_ENDPOINT ??
29+
"https://api.thegraph.com/subgraphs/name/kleros/kleros-v2-core-arbitrum-goerli"
2930
),
3031
}}
3132
>

0 commit comments

Comments
 (0)