From 65fa507d3fa01ac56bf41b8fb0b2801f378d952e Mon Sep 17 00:00:00 2001 From: llunaCreixent Date: Wed, 16 Oct 2024 08:28:41 +0200 Subject: [PATCH] Change subgraph endpoint --- README.md | 2 +- lib.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db9953a..d9922b6 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Circles statistics and analysis toolkit Options: -V, --version output the version number - -e, --endpoint graphQL subgraph endpoint (default: "https://api.thegraph.com/..") + -e, --endpoint graphQL subgraph endpoint (default: "https://graph.provisioning.circles.garden/..") -f, --format file format of output file (default: "csv") -o, --output optional file output for tabular data -s, --relayer_address address of relayer funder (default: "0x0739..") diff --git a/lib.js b/lib.js index 34e4cc4..df0e490 100755 --- a/lib.js +++ b/lib.js @@ -8,7 +8,7 @@ const PAGINATION_SIZE = 1000; const configuration = { endpoint: - 'https://api.thegraph.com/subgraphs/name/circlesubi/circles-ubi', + 'https://graph.provisioning.circles.garden/subgraphs/name/circlesubi/circles-ubi', relayerAddresses: ['0x0739a8d036c966ac9161ea14855ce0f94c15b87b', '0x9944ce8e27ce1f16c4003f108b1c09e5ae011ba0'], format: 'csv', log: undefined,