Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: disable xdai decentralized subgraph #5113

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
200,467 changes: 99,992 additions & 100,475 deletions packages/adapters/subgraph/.graphclient/index.ts

Large diffs are not rendered by default.

106,744 changes: 53,110 additions & 53,634 deletions packages/adapters/subgraph/.graphclient/schema.graphql

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

13,435 changes: 11,874 additions & 1,561 deletions packages/adapters/subgraph/.graphclient/sources/Connext_Xdai/introspectionSchema.ts

Large diffs are not rendered by default.

Large diffs are not rendered by default.

834 changes: 822 additions & 12 deletions packages/adapters/subgraph/.graphclient/sources/Connext_Xdai/types.ts

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/adapters/subgraph/.graphclientrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ sources:
graphql:
strategy: fallback
sources:
- endpoint: "https://gateway.thegraph.com/api/{env.GRAPH_API_KEY}/subgraphs/id/EdS5b1Zbw8A5KHs4JRnWDKdM5K2Hnq97UuE8RG9b61Ey"
retry: 2
timeout: 30000 # 30 seconds
#- endpoint: "https://gateway.thegraph.com/api/{env.GRAPH_API_KEY}/subgraphs/id/EdS5b1Zbw8A5KHs4JRnWDKdM5K2Hnq97UuE8RG9b61Ey"
# retry: 2
# timeout: 30000 # 30 seconds
- endpoint: "https://api.thegraph.com/subgraphs/name/connext/amarok-runtime-v0-gnosis"
retry: 5
timeout: 30000 # 30 seconds
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import type * as admin from "./admin";
export type { admin };
import type * as arbitrum from "./arbitrum";
export type { arbitrum };
import type * as consensys from "./consensys";
export type { consensys };
import type * as gnosis from "./gnosis";
export type { gnosis };
import type * as linea from "./linea";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import type * as wormhole from "./wormhole";
export type { wormhole };
import type * as zksync from "./zksync";
export type { zksync };
export type { ConsensysAmb } from "./ConsensysAmb";
export type { GnosisAmb } from "./GnosisAmb";
export type { LineaAmb } from "./LineaAmb";
export type { Multichain } from "./Multichain";
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/* eslint-disable */
export * as admin from "./admin";
export * as arbitrum from "./arbitrum";
export * as consensys from "./consensys";
export * as gnosis from "./gnosis";
export * as linea from "./linea";
export * as mainnet from "./mainnet";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export * as optimism from "./optimism";
export * as polygonzk from "./polygonzk";
export * as wormhole from "./wormhole";
export * as zksync from "./zksync";
export { ConsensysAmb__factory } from "./ConsensysAmb__factory";
export { GnosisAmb__factory } from "./GnosisAmb__factory";
export { LineaAmb__factory } from "./LineaAmb__factory";
export { Multichain__factory } from "./Multichain__factory";
6 changes: 6 additions & 0 deletions packages/deployments/contracts/src/typechain-types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ export type { Connector } from "./contracts/messaging/connectors/Connector";
export { Connector__factory } from "./factories/contracts/messaging/connectors/Connector__factory";
export type { ConnectorManager } from "./contracts/messaging/connectors/ConnectorManager";
export { ConnectorManager__factory } from "./factories/contracts/messaging/connectors/ConnectorManager__factory";
export type { ConsensysHubConnector } from "./contracts/messaging/connectors/consensys/ConsensysHubConnector";
export { ConsensysHubConnector__factory } from "./factories/contracts/messaging/connectors/consensys/ConsensysHubConnector__factory";
export type { ConsensysSpokeConnector } from "./contracts/messaging/connectors/consensys/ConsensysSpokeConnector";
export { ConsensysSpokeConnector__factory } from "./factories/contracts/messaging/connectors/consensys/ConsensysSpokeConnector__factory";
export type { GasCap } from "./contracts/messaging/connectors/GasCap";
export { GasCap__factory } from "./factories/contracts/messaging/connectors/GasCap__factory";
export type { GnosisBase } from "./contracts/messaging/connectors/gnosis/GnosisBase";
Expand Down Expand Up @@ -240,6 +244,8 @@ export type { IArbitrumOutbox } from "./contracts/messaging/interfaces/ambs/arbi
export { IArbitrumOutbox__factory } from "./factories/contracts/messaging/interfaces/ambs/arbitrum/IArbitrumOutbox__factory";
export type { IArbitrumRollup } from "./contracts/messaging/interfaces/ambs/arbitrum/IArbitrumRollup";
export { IArbitrumRollup__factory } from "./factories/contracts/messaging/interfaces/ambs/arbitrum/IArbitrumRollup__factory";
export type { ConsensysAmb } from "./contracts/messaging/interfaces/ambs/ConsensysAmb";
export { ConsensysAmb__factory } from "./factories/contracts/messaging/interfaces/ambs/ConsensysAmb__factory";
export type { GnosisAmb } from "./contracts/messaging/interfaces/ambs/GnosisAmb";
export { GnosisAmb__factory } from "./factories/contracts/messaging/interfaces/ambs/GnosisAmb__factory";
export type { LineaAmb } from "./contracts/messaging/interfaces/ambs/LineaAmb";
Expand Down