Skip to content

Commit

Permalink
(fix) Change graph endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
lilchizh committed Jun 26, 2024
1 parent da89b4e commit 77416b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_INFO_GRAPH=https://api.thegraph.com/subgraphs/name/iliaazhel/integral-core
VITE_INFO_GRAPH=https://api.studio.thegraph.com/query/50593/integral-core/version/latest
VITE_LIMIT_ORDERS_GRAPH=https://api.thegraph.com/subgraphs/name/iliaazhel/integral-limit-order
VITE_BLOCKS_GRAPH=https://api.thegraph.com/subgraphs/name/iliaazhel/goerli-blocks
VITE_FARMING_GRAPH=https://api.thegraph.com/subgraphs/name/iliaazhel/farming-test
VITE_BLOCKS_GRAPH=https://api.studio.thegraph.com/query/50593/goerli-blocks/version/latest
VITE_FARMING_GRAPH=https://api.studio.thegraph.com/query/50593/farming-test/version/latest
VITE_INFURA_RPC=https://ethereum-holesky-rpc.publicnode.com
VITE_WALLETCONNECT_PROJECT_ID=79c313a96c99edbc26d06cd97bff1126
VITE_WALLETCONNECT_PROJECT_ID=79c313a96c99edbc26d06cd97bff1126
6 changes: 3 additions & 3 deletions codegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import type { CodegenConfig } from '@graphql-codegen/cli';
const config: CodegenConfig = {
overwrite: true,
schema: [
'https://api.thegraph.com/subgraphs/name/iliaazhel/integral-core',
'https://api.thegraph.com/subgraphs/name/iliaazhel/goerli-blocks',
'https://api.thegraph.com/subgraphs/name/iliaazhel/farming-test',
'https://api.studio.thegraph.com/query/50593/integral-core/version/latest',
'https://api.studio.thegraph.com/query/50593/goerli-blocks/version/latest',
'https://api.studio.thegraph.com/query/50593/farming-test/version/latest',
],
documents: 'src/graphql/queries/!(*.d).{ts,tsx}',
generates: {
Expand Down

0 comments on commit 77416b0

Please sign in to comment.