From f2429e51f1d65a8ac0ec75b0f9727e78767266f1 Mon Sep 17 00:00:00 2001 From: Chris Steege Date: Mon, 24 Mar 2025 13:00:14 -0400 Subject: [PATCH 1/2] Subgraph Dashboard; Fix & Simplify --- dashboard/src/App.tsx | 91 +- dashboard/src/deployment-formatted.json | 25104 ++++++++++++++++ dashboard/src/deployment.json | 14144 +++++++++ dashboard/src/deployments/DeploymentsPage.tsx | 23 +- .../src/deployments/DeploymentsTable.tsx | 78 +- dashboard/src/deployments/ProtocolSection.tsx | 473 +- .../src/deployments/VersionComparison.tsx | 23 +- .../src/scripts/prepare-deployment-data.js | 142 + dashboard/src/utils/index.ts | 172 +- 9 files changed, 39797 insertions(+), 453 deletions(-) create mode 100644 dashboard/src/deployment-formatted.json create mode 100644 dashboard/src/deployment.json create mode 100644 dashboard/src/scripts/prepare-deployment-data.js diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx index 4ef1651202..956a627b63 100644 --- a/dashboard/src/App.tsx +++ b/dashboard/src/App.tsx @@ -14,9 +14,7 @@ import { decentralizedNetworkSubgraphsQuery } from "./queries/decentralizedNetwo function App() { console.log("RUNNING VERSION " + dashboardVersion); const [loading, setLoading] = useState(false); - const [protocolsToQuery, setProtocolsToQuery] = useState<{ - [type: string]: { [proto: string]: { [network: string]: string } }; - }>({}); + const [protocolsToQuery, setProtocolsToQuery] = useState({}); const [issuesMapping, setIssuesMapping] = useState({}); @@ -53,55 +51,25 @@ function App() { if (Object.keys(protocolsToQuery).length === 0) { setLoading(true); try { - fetch(process.env.REACT_APP_MESSARI_STATUS_URL!, { - method: "GET", - headers: { - Accept: "application/json", - "x-messari-api-key": process.env.REACT_APP_MESSARI_API_KEY!, - }, - }) - .then(function (res) { - return res.json(); - }) - .then(function (json) { + // TEMP FIX: Using local deployment data while the API is down + // TO REVERT: Replace this import with the original fetch call + import("./deployment-formatted.json") + .then(function (deploymentData) { setLoading(false); - // Hacky fix for the subgraph status API returning an error response, setting protocols to empty object. - // Status Page Will Not Load With This Condition, but the charting will work. - if (JSON.stringify(Object.keys(json)) == JSON.stringify(['error', 'data'])) { - console.log("Error Response from Messari Subgraph Status API. Setting protocols to empty object."); - json = {}; - } - - // Process the data to ensure all health metrics are properly populated - if (json && typeof json === 'object') { - try { - Object.keys(json).forEach(protocolName => { - const protocol = json[protocolName]; - if (protocol.deployments) { - Object.keys(protocol.deployments).forEach(deploymentKey => { - // Enhance the health metrics of each deployment - protocol.deployments[deploymentKey] = enhanceHealthMetrics(protocol.deployments[deploymentKey]); - }); - - // Debug the first protocol's health metrics - if (Object.keys(json).length > 0) { - debugHealthMetrics(protocol); - } - } - }); - } catch (err) { - console.error("Error enhancing health metrics:", err); - } - } - + // Use the pre-formatted data that matches the API response format + const json = deploymentData.default || deploymentData; + setProtocolsToQuery(json); }) .catch((err) => { - console.log(err); + setLoading(false); + console.error("Error loading deployment data:", err); + setProtocolsToQuery({}); }); } catch (error) { setLoading(false); console.error(error); + setProtocolsToQuery({}); } } }; @@ -127,7 +95,7 @@ function App() { subgraphEndpoints[schemaType][protocolName] = {}; } } - if (protocol.deployments && typeof protocol.deployments === 'object') { + if (protocol.deployments && typeof protocol.deployments === "object") { Object.values(protocol.deployments).forEach((depoData: any) => { if (!depoData?.services) { return; @@ -219,35 +187,12 @@ function App() { }); setDecentralizedDeployments(decenDepos); } - }, [decentralized]); + }, [decentralized, decentralizedDeployments]); - const debugHealthMetrics = (protocol: any) => { - if (!protocol || !protocol.deployments) { - console.warn("No protocol or deployments data found for debugging"); - return; - } - - try { - // Log a sample of health metrics for the first deployment - const firstDeploymentKey = Object.keys(protocol.deployments)[0]; - if (!firstDeploymentKey) { - console.warn("No deployments found for debugging"); - return; - } - - const deployment = protocol.deployments[firstDeploymentKey]; - if (!deployment || !deployment.services) { - console.warn("Invalid deployment data for debugging"); - return; - } - - const hostedService = deployment.services["hosted-service"]; - const decentralizedNetwork = deployment.services["decentralized-network"]; - - } catch (err) { - console.error("Error in debug health metrics:", err); - } - }; + // Remove this useEffect when the API service is back online + useEffect(() => { + getDeployments(); + }, []); // eslint-disable-line react-hooks/exhaustive-deps return (
diff --git a/dashboard/src/deployment-formatted.json b/dashboard/src/deployment-formatted.json new file mode 100644 index 0000000000..3eb38d4d4a --- /dev/null +++ b/dashboard/src/deployment-formatted.json @@ -0,0 +1,25104 @@ +{ + "abracadabra": { + "schema": "lending", + "base": "abracadabra", + "protocol": "abracadabra", + "project": "abracadabra", + "deployments": { + "abracadabra-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-arbitrum", + "query-id": "abracadabra-money-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "abracadabra-money-arbitrum", + "query-id": "3m97d2dJ2pXwPFuiHrm8T37V9TCoAHBpMqRwdguyUZXF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "abracadabra-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-avalanche", + "query-id": "abracadabra-money-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "abracadabra-money-avalanche", + "query-id": "3Gkei7B24o9C2bCoAbQpApZqMStPta7oCAnNhmNv5dab", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "abracadabra-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-bsc", + "query-id": "abracadabra-money-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "abracadabra-money-bsc", + "query-id": "6bFCfHn5Uuv5fH7PxKL12dzWh3zz7fkQ46EnMa7nZUj2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "abracadabra-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-fantom", + "query-id": "abracadabra-money-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "abracadabra-money-fantom", + "query-id": "2nxGrxxPShrm49dEWusJjB5dpmonN16JFzLwDrS1pCyq", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "abracadabra-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-ethereum", + "query-id": "abracadabra-money-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "abracadabra-money-ethereum", + "query-id": "GLAu42kvVs7ixfXcmkAsRiS7Xt1NCpgkKsnz3qiriuvV", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-arc": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-arc", + "project": "aave", + "deployments": { + "aave-arc-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.arc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-arc-ethereum", + "query-id": "aave-arc-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-arc-ethereum", + "query-id": "5hyqnEzjZbwFBU1rk4JBknCeiF2Mj93qBzsyQfpAa3QA", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-amm": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-amm", + "project": "aave", + "deployments": { + "aave-amm-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.amm.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-amm-ethereum", + "query-id": "aave-amm-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-amm-ethereum", + "query-id": "41ooPWnDYKwckqyG1mvg7ZEndy5zMemXinx6uQxscrBS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-rwa": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-rwa", + "project": "aave", + "deployments": { + "aave-rwa-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.rwa.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-rwa-ethereum", + "query-id": "aave-rwa-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-rwa-ethereum", + "query-id": "C8ynQrjVKcmqxb9fWrLvSCBFNf2ChFkxCg7Q8gknJrza", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-v2": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-v2", + "project": "aave", + "deployments": { + "aave-v2-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-avalanche", + "query-id": "aave-v2-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v2-avalanche", + "query-id": "9nh6Ums63wFcoZpmegyPcAFtY3CAzQc3S6cuERALYMqa", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-ethereum", + "query-id": "aave-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v2-ethereum", + "query-id": "C2zniPn45RnLDGzVeGZCx2Sw3GXrbc9gL4ZfL8B8Em2j", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v2-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-polygon", + "query-id": "aave-v2-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v2-polygon", + "query-id": "GrZQJ7sWdTqiNUD8Vh2THaeBM4wGwiF8mFv9FBfyzwxm", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-v3": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-v3", + "project": "aave", + "deployments": { + "aave-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.3", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-arbitrum", + "query-id": "aave-v3-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-arbitrum", + "query-id": "4xyasjQeREe7PxnF6wVdobZvCw5mhoHZq3T7guRpuNPf", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-avalanche", + "query-id": "aave-v3-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-avalanche", + "query-id": "72Cez54APnySAn6h8MswzYkwaL9KjvuuKnKArnPJ8yxb", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-fantom", + "query-id": "aave-v3-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-fantom", + "query-id": "ZcLcVKJNQboeqACXhGuL3WFLBZzf5uUWheNsaFvLph6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-harmony", + "query-id": "aave-v3-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-harmony", + "query-id": "G1BNHqmteZiUwSEacfXG2nzMm13KLNo5xoxv62ErAyQv", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-polygon", + "query-id": "aave-v3-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-polygon", + "query-id": "6yuf1C49aWEscgk5n9D1DekeG1BCk5Z9imJYJT3sVmAT", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-optimism", + "query-id": "aave-v3-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-optimism", + "query-id": "3RWFxWNstn4nP3dXiDfKi9GgBoHx7xzc7APkXs1MLEgi", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-metis": { + "network": "metis", + "status": "dev", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-metis", + "query-id": "aave-v3-metis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-metis", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-ethereum", + "query-id": "aave-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-ethereum", + "query-id": "JCNWRypm7FYwV8fx5HhzZPSFaMxgkPuw4TnR3Gpi81zk", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-base", + "query-id": "aave-v3-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-base", + "query-id": "D7mapexM5ZsQckLJai2FawTKXJ7CqYGKM8PErnS3cJi9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-gnosis", + "query-id": "aave-v3-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-gnosis", + "query-id": "GiNMLDxT1Bdn2dQZxjQLmW24uwpc3geKUBW8RP6oEdg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-bsc", + "query-id": "aave-v3-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-bsc", + "query-id": "43jbGkvSw55sMvYyF6MZieksmJbajMu3hNGF8PN9ucuP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "aave-v3-scroll": { + "network": "scroll", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-scroll", + "query-id": "aave-v3-scroll", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-v3-scroll", + "query-id": "DkvXMxq1skgSe1ehLHWpiUthHU1znnMDK2SUmj9avhEX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "seamless-protocol": { + "schema": "lending", + "base": "aave-forks", + "protocol": "seamless-protocol", + "project": "seamless-protocol", + "deployments": { + "seamless-protocol-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "seamless-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "seamless-protocol-base", + "query-id": "seamless-protocol-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "seamless-protocol-base", + "query-id": "2u4mWUV4xS19ef1MbnxZHWLLMwdPxtVifH46JbonXwXP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "kinza-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "kinza-finance", + "project": "kinza-finance", + "deployments": { + "kinza-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kinza.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "kinza-finance-bsc", + "query-id": "kinza-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "kinza-finance-bsc", + "query-id": "435cubRAqNsFYKzyQHRRiHvR7oJjh828r5Aqe4cZC586", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "seismic": { + "schema": "lending", + "base": "aave-forks", + "protocol": "seismic", + "project": "seismic", + "deployments": { + "seismic-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "seismic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "seismic-blast", + "query-id": "seismic-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "seismic-blast", + "query-id": "d7gMk1zkEyCQuNVeirBYA6keCZv8hTLheCZ4DBCjRfz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "pac-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "pac-finance", + "project": "pac-finance", + "deployments": { + "pac-finance-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pac.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "pac-finance-blast", + "query-id": "pac-finance-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pac-finance-blast", + "query-id": "ERsfyKMQTpTEN6LtyWvFwhDENLf6aAAggbtrNEnFKLpx", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "zerolend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "zerolend", + "project": "zerolend", + "deployments": { + "zerolend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-ethereum", + "query-id": "zerolend-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zerolend-ethereum", + "query-id": "4Zf4doH54RDit9KVsfCp3MkjrP3szhJZwvw2z5PHczx9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "zerolend-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-blast", + "query-id": "zerolend-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zerolend-blast", + "query-id": "6JP9542ArawumBSYczerbWGu6k7uu3hqk6qJnSkrgTM5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "zerolend-zksync-era": { + "network": "zksync-era", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-zksync-era", + "query-id": "zerolend-zksync-era", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zerolend-zksync-era", + "query-id": "3CHaJvCkTMqXa4PRKNshVecE9JqgNFCdsXNyGLZXFeM2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "zerolend-linea": { + "network": "linea", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-linea", + "query-id": "zerolend-linea", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zerolend-linea", + "query-id": "DLzwo1WFaKy7R7MgQWrnBXr19EbGwPRubu9YmsSmRMfC", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "zerolend-xlayer": { + "network": "xlayer-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-xlayer", + "query-id": "zerolend-xlayer", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zerolend-xlayer", + "query-id": "NRh6ScvPKoieeSH7tRiKyXJ97DR9aYraas8eREPQ8e3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "alpaca-finance-lending": { + "schema": "lending", + "base": "alpaca-finance-lending", + "protocol": "alpaca-finance-lending", + "project": "alpaca", + "deployments": { + "alpaca-finance-lending-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "alpaca.finance.lending.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "alpaca-finance-lending-bsc", + "query-id": "alpaca-finance-lending-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "alpaca-finance-lending-bsc", + "query-id": "ED3ayhcLA7h7DCGwbysgcxtfMEcoeYCdMEsdZJeoaUFS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "alpaca-finance-lending-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "alpaca.finance.lending.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "alpaca-finance-lending-fantom", + "query-id": "alpaca-finance-lending-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "alpaca-finance-lending-fantom", + "query-id": "6EfFr7xDpD7LLi1X8Cj9b6ytjFjX3GZYrMrCKomEuCmx", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "arrakis-finance": { + "schema": "yield-aggregator", + "base": "arrakis-finance", + "protocol": "arrakis-finance", + "project": "arrakis", + "deployments": { + "arrakis-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-ethereum", + "query-id": "arrakis-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "arrakis-finance-ethereum", + "query-id": "GnroBYmeLLtKuHNyTNS38hzKki5n4CWaHeaMRqZpU4cr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "arrakis-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-optimism", + "query-id": "arrakis-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "arrakis-finance-optimism", + "query-id": "6yqMWioX8XNx2aMDYJGnvrVQWNrZfgBzY3ee1RmkXh5Z", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "arrakis-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-polygon", + "query-id": "arrakis-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "arrakis-finance-polygon", + "query-id": "9YGjubD69wpCHyMMadVJv9eABKKUMWyBGYkZHVFEeWM8", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "convex-finance": { + "schema": "yield-aggregator", + "base": "convex-finance", + "protocol": "convex-finance", + "project": "convex", + "deployments": { + "convex-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "convex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "convex-finance-ethereum", + "query-id": "convex-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "convex-finance-ethereum", + "query-id": "7rFZ2x6aLQ7EZsNx8F5yenk4xcqwqR3Dynf9rdixCSME", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "balancer-v2": { + "schema": "dex-amm", + "base": "balancer-forks", + "protocol": "balancer-v2", + "project": "balancer", + "deployments": { + "balancer-v2-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-arbitrum", + "query-id": "balancer-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "balancer-v2-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "balancer-v2-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-polygon", + "query-id": "balancer-v2-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "balancer-v2-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "balancer-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-ethereum", + "query-id": "balancer-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "balancer-v2-ethereum", + "query-id": "794H6CNzdGF5YfBK9nPsUgGn7EBbdJSCTjgcKPEPyFnn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "beethoven-x": { + "schema": "dex-amm", + "base": "balancer-forks", + "protocol": "beethoven-x", + "project": "balancer", + "deployments": { + "beethoven-x-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "beethoven.x.fantom.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethoven-x-fantom", + "query-id": "beethoven-x-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beethoven-x-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beethoven-x-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "beethoven.x.optimism.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethoven-x-optimism", + "query-id": "beethoven-x-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beethoven-x-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "beefy-finance": { + "schema": "yield-aggregator", + "base": "beefy-finance", + "protocol": "beefy-finance", + "project": "beefy", + "deployments": { + "beefy-finance-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.arbitrum.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-arbitrum", + "query-id": "beefy-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.avalanche.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-avalanche", + "query-id": "beefy-finance-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-avalanche", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.aurora.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-aurora", + "query-id": "beefy-finance-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-aurora", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-celo": { + "network": "celo", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.celo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-celo", + "query-id": "beefy-finance-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-celo", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.fantom.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-fantom", + "query-id": "beefy-finance-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-fuse": { + "network": "fuse", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-fuse", + "query-id": "beefy-finance-fuse", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-fuse", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-harmony": { + "network": "harmony", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.harmony.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-harmony", + "query-id": "beefy-finance-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-harmony", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.moonbeam.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-moonbeam", + "query-id": "beefy-finance-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-moonbeam", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-moonriver": { + "network": "moonriver", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.moonriver.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-moonriver", + "query-id": "beefy-finance-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-moonriver", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.polygon.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-polygon", + "query-id": "beefy-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.bsc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-bsc", + "query-id": "beefy-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.optimism.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-optimism", + "query-id": "beefy-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "beefy-finance-cronos": { + "network": "cronos", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.cronos.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "cronos-portal": { + "slug": "beefy-finance-cronos", + "query-id": "beefy-finance-cronos" + }, + "hosted-service": { + "slug": "beefy-finance-cronos", + "query-id": "beefy-finance-cronos", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beefy-finance-cronos", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "belt-finance": { + "schema": "yield-aggregator", + "base": "belt-finance", + "protocol": "belt-finance", + "project": "belt", + "deployments": { + "belt-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "belt.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "belt-finance-bsc", + "query-id": "belt-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "belt-finance-bsc", + "query-id": "9jLaSWECnXdmwDG6zGMR39PqwhscHoiLGoX1mLtHLqWd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "bancor-v3": { + "schema": "dex-amm", + "base": "bancor-v3", + "protocol": "bancor-v3", + "project": "bancor", + "deployments": { + "bancor-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.4", + "methodology": "1.0.0" + }, + "files": { + "template": "bancor.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bancor-v3-ethereum", + "query-id": "bancor-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bancor-v3-ethereum", + "query-id": "4Q4eEMDBjYM8JGsvnWCafFB5wCu6XntmsgxsxwYSnMib", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aurigami": { + "schema": "lending", + "base": "compound-forks", + "protocol": "aurigami", + "project": "aurigami", + "deployments": { + "aurigami-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aurigami.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aurigami-aurora", + "query-id": "aurigami-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aurigami-aurora", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "banker-joe": { + "schema": "lending", + "base": "compound-forks", + "protocol": "banker-joe", + "project": "trader-joe", + "deployments": { + "banker-joe-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "banker-joe.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "banker-joe-avalanche", + "query-id": "banker-joe-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "banker-joe-avalanche", + "query-id": "9NjYuG2BFU1BPacNdKymd9eNdfVCaJM6LhsgD8zSQgDK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tectonic": { + "schema": "lending", + "base": "compound-forks", + "protocol": "tectonic", + "project": "tectonic", + "deployments": { + "tectonic-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tectonic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "cronos-portal": { + "slug": "tectonic", + "query-id": "tectonic" + }, + "hosted-service": { + "slug": "tectonic-cronos", + "query-id": "tectonic-cronos", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tectonic-cronos", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "bastion-protocol": { + "schema": "lending", + "base": "compound-forks", + "protocol": "bastion-protocol", + "project": "bastion-protocol", + "deployments": { + "bastion-protocol-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.1" + }, + "files": { + "template": "bastion-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bastion-protocol-aurora", + "query-id": "bastion-protocol-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bastion-protocol-aurora", + "query-id": "BD4rW7Ga5YQ3x68tALbi8vsXNodd6LrvFeaVocdJt3bD", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "benqi": { + "schema": "lending", + "base": "compound-forks", + "protocol": "benqi", + "project": "benqi", + "deployments": { + "benqi-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "benqi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "benqi-avalanche", + "query-id": "benqi-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "benqi-avalanche", + "query-id": "8ZjJGsaKea7WwLJPJNdHXPGsvXDe3iq2231aRjgBPisi", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "arbitrum-one-bridge": { + "schema": "bridge", + "base": "arbitrum-one-bridge", + "protocol": "arbitrum-one-bridge", + "project": "arbitrum-one-bridge", + "deployments": { + "arbitrum-one-bridge-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arbitrum-one-bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arbitrum-one-bridge-ethereum", + "query-id": "arbitrum-one-bridge-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "arbitrum-one-bridge-ethereum", + "query-id": "6XazDBEjAVADSXbiBoXBBVwxTYf4PXRtucxn5vRQFLch", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "arbitrum-one-bridge-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arbitrum-one-bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arbitrum-one-bridge-arbitrum", + "query-id": "arbitrum-one-bridge-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "arbitrum-one-bridge-arbitrum", + "query-id": "2rQHtwHiK2TCB4bQtgLybf8gGHCRVjANPzKTYss7B1n4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "biswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "biswap", + "project": "biswap", + "deployments": { + "biswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.6", + "methodology": "1.0.0" + }, + "files": { + "template": "biswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "biswap-bsc", + "query-id": "biswap-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "biswap-bsc", + "query-id": "EnAR2ancKqJqpCU6cJ8aq9xHquTSWsK2wQWVfdDSwacN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "burrow": { + "schema": "lending", + "base": "burrow", + "protocol": "burrow", + "project": "burrow", + "deployments": { + "burrow-near": { + "network": "near-mainnet", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "burrow.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "burrow-near", + "query-id": "burrow-near", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "burrow-near", + "query-id": "5W5fhZAq6QABBijKo7wqYps7TLzqAqS2mU1C1rhktvtg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "compound-v2": { + "schema": "lending", + "base": "compound-forks", + "protocol": "compound-v2", + "project": "compound", + "deployments": { + "compound-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.9.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v2-ethereum", + "query-id": "compound-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-v2-ethereum", + "query-id": "4TbqVA8p2DoBd5qDbPMwmDZv3CsJjWtxo8nVSqF2tA9a", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "cream-finance": { + "schema": "lending", + "base": "compound-forks", + "protocol": "cream-finance", + "project": "cream", + "deployments": { + "cream-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-arbitrum", + "query-id": "cream-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cream-finance-arbitrum", + "query-id": "GzHkVNf7BBqUjV8Sy6U6xUaWdGheFMdin1cB6sNvfdzs", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cream-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-bsc", + "query-id": "cream-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cream-finance-bsc", + "query-id": "Dd2ak11qC4mS2spUXzJm5v9EtVNJqmBC9rLzbckTwfN1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cream-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-ethereum", + "query-id": "cream-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cream-finance-ethereum", + "query-id": "43NeT7UTACLUkohKBaG7auvkhsj4Kwux9kNTJr6sFdNe", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cream-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-polygon", + "query-id": "cream-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cream-finance-polygon", + "query-id": "CBeERkhQNwPwU3jSWdKHeAtPQh4TFucUyUMcqAJk19ij", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "dforce": { + "schema": "lending", + "base": "compound-forks", + "protocol": "dforce", + "project": "dforce", + "deployments": { + "dforce-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-arbitrum", + "query-id": "dforce-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-arbitrum", + "query-id": "Dpk4Gen22wxQ3Laojf7DR2me8wGzjaHwjsKAsLf2rCFV", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "dforce-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-avalanche", + "query-id": "dforce-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-avalanche", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "dforce-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-bsc", + "query-id": "dforce-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-bsc", + "query-id": "DKu1HqTTi26uLZKAmvDbqyAvcnFAjXEuRJmF35RLpyFg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "dforce-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-ethereum", + "query-id": "dforce-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-ethereum", + "query-id": "6PaB6tKFqrL6YoAELEhFGU6Gc39cEynLbo6ETZMF3sCy", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "dforce-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-optimism", + "query-id": "dforce-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-optimism", + "query-id": "6AmkakXwadWiZ2jN7oJcFreWmKG1nZrT5P8om52upYPd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "dforce-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-polygon", + "query-id": "dforce-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dforce-polygon", + "query-id": "9CFGPWpntYisBp7NpHMrgYzFrBmtVxSw58haGyZ3ewoZ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "iron-bank": { + "schema": "lending", + "base": "compound-forks", + "protocol": "iron-bank", + "project": "iron-bank", + "deployments": { + "iron-bank-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-avalanche", + "query-id": "iron-bank-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "iron-bank-avalanche", + "query-id": "9YiJM9oHy25estSJjB1Z71Hdz5C814R3vDoS2ezpN27C", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "iron-bank-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-ethereum", + "query-id": "iron-bank-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "iron-bank-ethereum", + "query-id": "5YoxED3bbWV9byvn3x3S3ebZ3idrQmQmsJhL5LMyY26v", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "iron-bank-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-fantom", + "query-id": "iron-bank-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "iron-bank-fantom", + "query-id": "4dWx6UZNcLEzgtipy45VkgtptYRqoHdZeCGNKxHAxKWo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "iron-bank-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-optimism", + "query-id": "iron-bank-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "iron-bank-optimism", + "query-id": "4WKePP5QfwrW6Hfd8YKWHuivivmdxPubuP45BryeGo4g", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "moonwell": { + "schema": "lending", + "base": "compound-forks", + "protocol": "moonwell", + "project": "moonwell", + "deployments": { + "moonwell-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-moonbeam", + "query-id": "moonwell-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "moonwell-moonbeam", + "query-id": "DQhrdUHwspQf3hSjDtyfS6uqq9YiKoLF3Ut3U9os2HK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "moonwell-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-moonriver", + "query-id": "moonwell-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "moonwell-moonriver", + "query-id": "8ayELti1UNCNCWuvwSwapjh4mvvCejeXsk4PmsWBmQ82", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "moonwell-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-base", + "query-id": "moonwell-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "moonwell-base", + "query-id": "33ex1ExmYQtwGVwri1AP3oMFPGSce6YbocBP7fWbsBrg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "notional-finance": { + "schema": "lending", + "base": "notional-finance", + "protocol": "notional-finance", + "project": "notional", + "deployments": { + "notional-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.1.0" + }, + "files": { + "template": "notional-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "notional-finance-ethereum", + "query-id": "notional-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "notional-finance-ethereum", + "query-id": "2t4T7bts8ZQCpGcVq9VSzDyPVCQc5Y7TFwZKfmXKeSVx", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "rari-fuse": { + "schema": "lending", + "base": "compound-forks", + "protocol": "rari-fuse", + "project": "rari-capital", + "deployments": { + "rari-fuse-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-fuse-arbitrum", + "query-id": "rari-fuse-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "rari-fuse-arbitrum", + "query-id": "HnV3fhwsWfmQGdD2AeGzqvRVTDBqnMH74jCsDVq1DXYP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "rari-fuse-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-fuse-ethereum", + "query-id": "rari-fuse-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "rari-fuse-ethereum", + "query-id": "kecp6SPMvbB4GTqg9r5PXvztYriexj5F3ZCaATpjmb2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "scream": { + "schema": "lending", + "base": "compound-forks", + "protocol": "scream", + "project": "scream", + "deployments": { + "scream-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "scream.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "scream-fantom", + "query-id": "scream-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "scream-fantom", + "query-id": "Cj3pDoqHgLBntkaXAKMxtJTZr3StxYvVEedTXyJGJoK4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "sonne-finance": { + "schema": "lending", + "base": "compound-forks", + "protocol": "sonne-finance", + "project": "sonne", + "deployments": { + "sonne-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "sonne.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "sonne-finance-optimism", + "query-id": "sonne-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sonne-finance-optimism", + "query-id": "DQqb7FiQ1joLhESkAwvAYiuXhwfz4zf6qHmbt7stnec8", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "venus": { + "schema": "lending", + "base": "compound-forks", + "protocol": "venus", + "project": "venus", + "deployments": { + "venus-protocol-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "venus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "venus-protocol-bsc", + "query-id": "venus-protocol-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "venus-protocol-bsc", + "query-id": "CwswJ7sfENafqgAYU1upn3hQgoEV2CXXRZRJ7XtgJrKG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "compound-v3": { + "schema": "lending", + "base": "compound-v3", + "protocol": "compound-v3", + "project": "compound", + "deployments": { + "compound-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-ethereum", + "query-id": "compound-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-v3-ethereum", + "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "compound-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-polygon", + "query-id": "compound-v3-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-v3-polygon", + "query-id": "5wfoWBpfYv59b99wDxJmyFiKBu9brXESeqJAzw8WP5Cz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "compound-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-arbitrum", + "query-id": "compound-v3-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-v3-arbitrum", + "query-id": "5MjRndNWGhqvNX7chUYLQDnvEgc8DaH8eisEkcJt71SR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "compound-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "query-id": "compound-v3-base", + "slug": "compound-v3-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-v3-base", + "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "curve-finance": { + "schema": "dex-amm", + "base": "curve-finance", + "protocol": "curve-finance", + "project": "curve", + "deployments": { + "curve-finance-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-arbitrum", + "query-id": "curve-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-aurora", + "query-id": "curve-finance-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-aurora", + "query-id": "9zXFpPQHyTmXXygtNPwjBS6d4SMGzv7qMiha4bJ3fbyB", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-avalanche", + "query-id": "curve-finance-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-avalanche", + "query-id": "2Vt8WtdXNZUEeaVtzyEd1dpioJf44nvomzkd4HhubfKS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-ethereum", + "query-id": "curve-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-ethereum", + "query-id": "3fy93eAT56UJsRCEht8iFhfi6wjHWXtZ9dnnbQmvFopF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-fantom", + "query-id": "curve-finance-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-gnosis", + "query-id": "curve-finance-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-gnosis", + "query-id": "J8k2z8MhdhABfVZU5HtyRvzCT85bLLF886V4iDpt53Jr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-harmony", + "query-id": "curve-finance-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-harmony", + "query-id": "6gnHHn7562tDjCrrnSiMiR1H1NndrannPQ7LcYxMgF9t", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-moonbeam", + "query-id": "curve-finance-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-moonbeam", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-optimism", + "query-id": "curve-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-optimism", + "query-id": "CXDZPduZE6nWuWEkSzWkRoJSSJ6CneSqiDxdnhhURShX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "curve-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-polygon", + "query-id": "curve-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "curve-finance-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ellipsis-finance": { + "schema": "dex-amm", + "base": "ellipsis-finance", + "protocol": "ellipsis-finance", + "project": "ellipsis", + "deployments": { + "ellipsis-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ellipsis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ellipsis-finance-bsc", + "query-id": "ellipsis-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ellipsis-finance-bsc", + "query-id": "3oK7vysHSCqXkQ5L3G6S4ifBG3Xr5mjkEEzZKtGEg5x1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "erc721-holders": { + "schema": "erc721", + "base": "erc721-holders", + "protocol": "erc721-holders", + "project": "erc721", + "deployments": { + "erc721-holders-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc721.holders.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "erc721-holders", + "query-id": "erc721-holders", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc721-holders-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "erc721-metadata": { + "schema": "erc721", + "base": "erc721-metadata", + "protocol": "erc721-metadata", + "project": "erc721", + "deployments": { + "erc721-metadata-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc721.metadata.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "erc721-metadata", + "query-id": "erc721-metadata", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc721-metadata-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "euler-finance": { + "schema": "lending", + "base": "euler-finance", + "protocol": "euler-finance", + "project": "euler", + "deployments": { + "euler-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.0", + "methodology": "1.2.3" + }, + "files": { + "template": "euler.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "euler-finance-ethereum", + "query-id": "euler-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "euler-finance-ethereum", + "query-id": "95nyAWFFaiz6gykko3HtBCyhRuP5vZzuKYsZiLxHxLhr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "goldfinch": { + "schema": "lending", + "base": "goldfinch", + "protocol": "goldfinch", + "project": "goldfinch", + "deployments": { + "goldfinch-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.4", + "methodology": "1.0.1" + }, + "files": { + "template": "goldfinch.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "goldfinch-ethereum", + "query-id": "goldfinch-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "goldfinch-ethereum", + "query-id": "GRwpFCPYyQPdz84sCnKemzrNvgFPuKkFLcRLR6jsRxHr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "inverse-finance": { + "schema": "lending", + "base": "inverse-finance", + "protocol": "inverse-finance", + "project": "inverse", + "deployments": { + "inverse-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.6", + "methodology": "1.0.0" + }, + "files": { + "template": "inverse.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "inverse-finance-ethereum", + "query-id": "inverse-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "inverse-finance-ethereum", + "query-id": "EXuutY6qkZbXjYeJZdiDBf2imJswTNdfm8YZCqhAthfW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "lido": { + "schema": "generic", + "base": "lido", + "protocol": "lido", + "project": "lido", + "deployments": { + "lido-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lido.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lido-ethereum", + "query-id": "lido-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "lido-ethereum", + "query-id": "F7qb71hWab6SuRL5sf6LQLTpNahmqMsBnnweYHzLGUyG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "livepeer": { + "schema": "generic", + "base": "livepeer", + "protocol": "livepeer", + "project": "livepeer", + "deployments": { + "livepeer-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "livepeer.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "livepeer-arbitrum", + "query-id": "livepeer-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "livepeer-arbitrum", + "query-id": "6CdJfr35PDj8AMQikiKGjAUPG2vCu5VLYRawDk8cxwrs", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "liquity": { + "schema": "lending", + "base": "liquity", + "protocol": "liquity", + "project": "liquity", + "deployments": { + "liquity-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.0", + "methodology": "1.0.1" + }, + "files": { + "template": "liquity.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "liquity-ethereum", + "query-id": "liquity-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "liquity-ethereum", + "query-id": "2D2dFCLjUt3MfFgTKW8cBxiRQ3Adss7KUtYh2rTcFVY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mummy-finance": { + "schema": "derivatives-perpfutures", + "base": "gmx-forks", + "protocol": "mummy-finance", + "project": "mummy-finance", + "deployments": { + "mummy-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-fantom", + "query-id": "mummy-finance-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mummy-finance-fantom", + "query-id": "FP8YzYVARZ6jEYrciiTEtzrNfug7STzYyUr3fRUjQkEA", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mummy-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-optimism", + "query-id": "mummy-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mummy-finance-optimism", + "query-id": "GvgdFS6dFXCSXwq9PDTdcs5uZzwZYuTrqFjiTRC3jy54", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mummy-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-arbitrum", + "query-id": "mummy-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mummy-finance-arbitrum", + "query-id": "4Po9haSDCDbQ2XtrSXqT8BNB9H6T7EUAmbAorAzHQi9S", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "vesta-finance": { + "schema": "lending", + "base": "vesta-finance", + "protocol": "vesta-finance", + "project": "vesta", + "deployments": { + "vesta-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.1", + "methodology": "1.1.0" + }, + "files": { + "template": "vesta.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vesta-finance-arbitrum", + "query-id": "vesta-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "vesta-finance-arbitrum", + "query-id": "zGuPrsVqtY5ehJDCmweb9ZnBrae3tSQWRux8Mz1M4Gn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "truefi": { + "schema": "lending", + "base": "truefi", + "protocol": "truefi", + "project": "truefi", + "deployments": { + "truefi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.5", + "methodology": "1.0.0" + }, + "files": { + "template": "truefi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "truefi-ethereum", + "query-id": "truefi-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "truefi-ethereum", + "query-id": "39F8fYCvLYmutjqpzEwx3dcEJTtFFVupvBzJqkEzftA7", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gamma-strategies": { + "schema": "yield-aggregator", + "base": "gamma-strategies", + "protocol": "gamma-strategies", + "project": "gamma-strategies", + "deployments": { + "gamma-strategies-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-arbitrum", + "query-id": "gamma-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gamma-strategies-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "gamma-strategies-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-ethereum", + "query-id": "gamma-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gamma-ethereum", + "query-id": "ANz3TpZdY2syZGQvGA85ANNG7KiSWdPmv55kP4H4sRPJ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "gamma-strategies-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-optimism", + "query-id": "gamma-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gamma-strategies-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "gamma-strategies-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-polygon", + "query-id": "gamma-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gamma-polygon", + "query-id": "AyxB5Suv1REgRZPUwbgbbqtpwftvTC46dbiHPuBQuF8y", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "makerdao": { + "schema": "lending", + "base": "makerdao", + "protocol": "makerdao", + "project": "makerdao", + "deployments": { + "makerdao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "makerdao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "makerdao-ethereum", + "query-id": "makerdao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "makerdao-ethereum", + "query-id": "8sE6rTNkPhzZXZC6c8UQy2ghFTu5PPdGauwUBm4t7HZ1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "maple-finance-v1": { + "schema": "lending", + "base": "maple-finance-v1", + "protocol": "maple-finance-v1", + "project": "maple", + "deployments": { + "maple-finance-v1-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.1.0" + }, + "files": { + "template": "maple.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maple-finance-ethereum", + "query-id": "maple-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "maple-finance-ethereum", + "query-id": "J9dtvE11PWNZH74frWyx9QZonyC1Db2UWDMUegmT3zkG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "maple-finance-v2": { + "schema": "lending", + "base": "maple-finance-v2", + "protocol": "maple-finance-v2", + "project": "maple", + "deployments": { + "maple-finance-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "maple.finance.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maple-finance-v2-ethereum", + "query-id": "maple-finance-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "maple-finance-v2-ethereum", + "query-id": "94swSaaFChsQoZzb9Vc7Lo6FWFV6YZUMNSdFVTMAeRgj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "silo-finance": { + "schema": "lending", + "base": "silo-finance", + "protocol": "silo-finance", + "project": "silo", + "deployments": { + "silo-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "silo.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "silo-finance-ethereum", + "query-id": "silo-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "silo-finance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "synthetix": { + "schema": "lending", + "base": "synthetix", + "protocol": "synthetix", + "project": "synthetix", + "deployments": { + "synthetix-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "synth-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "synthetix-ethereum", + "query-id": "synthetix-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "synthetix-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "synthetix-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "synth-opt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "synthetix-optimism", + "query-id": "synthetix-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "synthetix-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "morpho-aave-v2": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-aave-v2", + "project": "morpho", + "deployments": { + "morpho-aave-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-aave-v2-ethereum", + "query-id": "morpho-aave-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "morpho-aave-v2-ethereum", + "query-id": "DsznTYxGdsqxWB6a474rSksvB7qWSth5Ff1PcxW28vZy", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "morpho-aave-v3": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-aave-v3", + "project": "morpho", + "deployments": { + "morpho-aave-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-aave-v3-ethereum", + "query-id": "morpho-aave-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "morpho-aave-v3-ethereum", + "query-id": "FKe6ANnWmGPE6hajGLoTgPrVF2jYPHiRu2Jwcg9ZmG9A", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "morpho-compound": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-compound", + "project": "morpho", + "deployments": { + "morpho-compound-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.compound.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-compound-ethereum", + "query-id": "morpho-compound-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "morpho-compound-ethereum", + "query-id": "9dTy23tkahyiap1THgwnJuMwxNHVnQM57jFQQiUzjcY6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "morpho-blue": { + "schema": "lending", + "base": "morpho-blue", + "protocol": "morpho-blue", + "project": "morpho", + "deployments": { + "morpho-blue-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "3.2.0", + "subgraph": "1.1.0", + "methodology": "1.1.0" + }, + "files": { + "template": "morpho.blue.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-blue-ethereum", + "query-id": "morpho-blue-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "morpho-blue-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "harvest-finance": { + "schema": "yield-aggregator", + "base": "harvest-finance", + "protocol": "harvest-finance", + "project": "harvest", + "deployments": { + "harvest-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-ethereum", + "query-id": "harvest-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "harvest-finance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "harvest-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-polygon", + "query-id": "harvest-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "harvest-finance-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "harvest-finance-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-bsc", + "query-id": "harvest-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "harvest-finance-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ribbon-finance": { + "schema": "yield-aggregator", + "base": "ribbon-finance", + "protocol": "ribbon-finance", + "project": "ribbon", + "deployments": { + "ribbon-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "ribbon.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ribbon-finance-ethereum", + "query-id": "ribbon-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ribbon-finance-ethereum", + "query-id": "Crag42fFb8PrXnbTjHe1UG5KjgzoiUJbqwzJxZ1W8XNJ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "ribbon-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "ribbon.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ribbon-finance-avalanche", + "query-id": "ribbon-finance-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ribbon-finance-avalanche", + "query-id": "FxhN13aCD2H1f9vagrVueGjHwguZ7JkfuDZrMvKthdk5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "yield-yak": { + "schema": "yield-aggregator", + "base": "yield-yak", + "protocol": "yield-yak", + "project": "yield-yak", + "deployments": { + "yield-yak-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yield.yak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yield-yak-avalanche", + "query-id": "yield-yak-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yield-yak-avalanche", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stakedao": { + "schema": "yield-aggregator", + "base": "stakedao", + "protocol": "stakedao", + "project": "stakedao", + "deployments": { + "stakedao-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.3.2", + "methodology": "1.0.0" + }, + "files": { + "template": "stakedao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stakedao-ethereum", + "query-id": "stakedao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stakedao-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "saddle-finance": { + "schema": "dex-amm", + "base": "saddle-finance", + "protocol": "saddle-finance", + "project": "saddle", + "deployments": { + "saddle-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-arbitrum", + "query-id": "saddle-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "saddle-finance-arbitrum", + "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "saddle-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-ethereum", + "query-id": "saddle-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "saddle-finance-ethereum", + "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "saddle-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-fantom", + "query-id": "saddle-finance-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "saddle-finance-fantom", + "query-id": "DToFejYjMRXcCrBrsdP9AZGBqwxpEumNHReRTfAmqgeP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "saddle-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-optimism", + "query-id": "saddle-finance-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "saddle-finance-optimism", + "query-id": "CFu1DWY9DyiC25WRmGreowMyuvLB27JfNRCa8rKkTDjK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "geist-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "geist-finance", + "project": "geist", + "deployments": { + "geist-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "geist.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "geist-finance-fantom", + "query-id": "geist-finance-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "geist-finance-fantom", + "query-id": "45LX32kZPBRNiXaBKDrzbCnidoKv3cMEc8cXt3kvPifz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "spark-lend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "spark-lend", + "project": "makerdao", + "deployments": { + "spark-lend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spark.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "spark-lend-ethereum", + "query-id": "spark-lend-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spark-lend-ethereum", + "query-id": "GbKdmBe4ycCYCQLQSjqGg6UHYoYfbyJyq5WrG35pv1si", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "spark-lend-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spark.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "spark-lend-gnosis", + "query-id": "spark-lend-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spark-lend-gnosis", + "query-id": "Bw4RH37UbbGEhHo4FaWwT1dn9QJzm1XSZCyK1cbr6ZKM", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "radiant": { + "schema": "lending", + "base": "aave-forks", + "protocol": "radiant-capital", + "project": "radiant", + "deployments": { + "radiant-capital-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-arbitrum", + "query-id": "radiant-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "radiant-capital-arbitrum", + "query-id": "5HTkKJNSm72tUGakwj8yroDGHxc6fBhmLaA5oJepZGL3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "radiant-v2": { + "schema": "lending", + "base": "aave-forks", + "protocol": "radiant-capital-v2", + "project": "radiant", + "deployments": { + "radiant-capital-v2-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-capital-v2-arbitrum", + "query-id": "radiant-capital-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "radiant-capital-v2-arbitrum", + "query-id": "2rQAKGJkvkiAXsCjx1n4E3DSgk2b7nCZMtt2BrV5TBgt", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "radiant-capital-v2-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "3.0.1", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-capital-v2-bsc", + "query-id": "radiant-capital-v2-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "radiant-capital-v2-bsc", + "query-id": "cM9BYtdT8aVBX8JEbi9SQjV2Ft8onEh6qwZHxCUyAAh", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uwu-lend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "uwu-lend", + "project": "uwu", + "deployments": { + "uwu-lend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uwu.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uwu-lend-ethereum", + "query-id": "uwu-lend-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uwu-lend-ethereum", + "query-id": "CZBD7e8VGvNa6WkBHZAaC688bsZ35UvAM1AuDdVng2aE", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tokemak": { + "schema": "yield-aggregator", + "base": "tokemak", + "protocol": "tokemak", + "project": "tokemak", + "deployments": { + "tokemak-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "tokemak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "tokemak-ethereum", + "query-id": "tokemak-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tokemak-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "uniswap-v3", + "project": "uniswap", + "deployments": { + "uniswap-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-arbitrum", + "query-id": "uniswap-v3-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-arbitrum", + "query-id": "FQ6JYszEKApsBpAmiHesRsd9Ygc6mzmpNRANeVQFYoVX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-base", + "query-id": "uniswap-v3-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-base", + "query-id": "FUbEPQw1oMghy39fwWBFY5fE6MXPXZQtjncQy2cXdrNS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-bsc", + "query-id": "uniswap-v3-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-bsc", + "query-id": "8f1KyiuNYiNGrjagzEVpf6k6KkPG517prtjdrJihgHw", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-celo", + "query-id": "uniswap-v3-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-celo", + "query-id": "8cLf29KxAedWLVaEqjV8qKomdwwXQxjptBZFrqWNH5u2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.6.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-ethereum", + "query-id": "uniswap-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-ethereum", + "query-id": "4cKy6QQMc5tpfdx8yxfYeb9TLZmgLQe44ddW1G7NwkA6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-optimism", + "query-id": "uniswap-v3-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-optimism", + "query-id": "EgnS9YE1avupkvCNj9fHnJxppfEmNNywYJtghqiu2pd9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-polygon", + "query-id": "uniswap-v3-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-polygon", + "query-id": "BvYimJ6vCLkk63oWZy7WB5cVDTVVMugUAF35RAUZpQXE", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "pancakeswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "pancakeswap-v3", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-bsc", + "query-id": "pancakeswap-v3-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pancakeswap-v3-bsc", + "query-id": "A1BC1hzDsK4NTeXBpKQnDBphngpYZAwDUF7dEBfa3jHK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "pancakeswap-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.3.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-ethereum", + "query-id": "pancakeswap-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pancakeswap-v3-ethereum", + "query-id": "JAGXF8B14mpB8QGKnwhKTs5JxsQZBJQvbDGFcWwL7gbm", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "sushiswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "sushiswap-v3", + "project": "sushiswap", + "deployments": { + "sushiswap-v3-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-ethereum", + "query-id": "sushiswap-v3-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-ethereum", + "query-id": "2tGWMrDha4164KkFAfkU3rDCtuxGb4q1emXmFdLLzJ8x", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-arbitrum", + "query-id": "sushiswap-v3-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-arbitrum", + "query-id": "3oHCddbQGTi42kPZBwyGzD2JzZR33zK2MwXtxAerNJy2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-avalanche", + "query-id": "sushiswap-v3-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-avalanche", + "query-id": "9WGqYsU8h1KVZeKz32663gFrbjVUNhBgmhRavMFqiSZz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-bsc", + "query-id": "sushiswap-v3-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-fantom", + "query-id": "sushiswap-v3-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-fuse": { + "network": "fuse", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-fuse", + "query-id": "sushiswap-v3-fuse", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-fuse", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-gnosis": { + "network": "gnosis", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-gnosis", + "query-id": "sushiswap-v3-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-gnosis", + "query-id": "9LC6MvaFHXyY3dmxM7VCwGNA9dvM6g2AuZxEGCyfvck3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-moonriver": { + "network": "moonriver", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-moonriver", + "query-id": "sushiswap-v3-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-moonriver", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-optimism", + "query-id": "sushiswap-v3-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-v3-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-polygon", + "query-id": "sushiswap-v3-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "uniswap-v3-swap", + "project": "uniswap", + "deployments": { + "uniswap-v3-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-swap-base", + "query-id": "uniswap-v3-swap-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-swap-base", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "uniswap-v3-swap-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-swap-optimism", + "query-id": "uniswap-v3-swap-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v3-swap-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "pancakeswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "pancakeswap-v3-swap", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v3-swap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-swap-bsc", + "query-id": "pancakeswap-v3-swap-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pancakeswap-v3-swap-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "pancakeswap-v3-swap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-swap-ethereum", + "query-id": "pancakeswap-v3-swap-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pancakeswap-v3-swap-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "sushiswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "sushiswap-v3-swap", + "project": "sushiswap", + "deployments": { + "sushiswap-v3-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-swap-base", + "query-id": "sushiswap-v3-swap-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-v3-swap-base", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "osmosis-dex": { + "schema": "dex-amm", + "base": "osmosis-dex", + "protocol": "osmosis-dex", + "project": "osmosis", + "deployments": { + "osmosis-dex-osmosis": { + "network": "osmosis", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "osmosis.dex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "osmosis-dex-osmosis", + "query-id": "osmosis-dex-osmosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "osmosis-dex-osmosis", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "qidao": { + "schema": "lending", + "base": "qidao", + "protocol": "qidao", + "project": "qidao", + "deployments": { + "qidao-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-arbitrum", + "query-id": "qidao-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-arbitrum", + "query-id": "Duw2tSACo9uRGFctAGsCc9pF7ZGMyqpjkAHPwm49dZe6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-avalanche", + "query-id": "qidao-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-avalanche", + "query-id": "98GG74FxxsG25Ltd8qvJ9BRfFmQWyN1AkS92MZBG1BsR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-base", + "query-id": "qidao-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-base", + "query-id": "9NHJ9k31qaGCYXppm9isJTiEoiB6v3tJDnR6SrQrxcjw", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-bsc", + "query-id": "qidao-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-bsc", + "query-id": "4DcztqYL7UG5bjdisWWvnj3m4NtK5J3bs89scihAkicr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-ethereum", + "query-id": "qidao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-ethereum", + "query-id": "BmQSQaXsivq866kUobQSbyxycjk3D7CiaczKgu3P9ifB", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-fantom", + "query-id": "qidao-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-fantom", + "query-id": "hf51jYbZ9uESiuBabfxf6fRdc22xtmNWX9c3SRrct2q", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-polygon", + "query-id": "qidao-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-polygon", + "query-id": "5UxEcMvYW4vVYP81tkPQMAvJv1e4m1xU8BJkDXBnpc6x", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-moonriver", + "query-id": "qidao-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-moonriver", + "query-id": "HzDP5zXKyjnEJP9TnFirk3qA24SUp4AfzKUBSRcBekgz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-optimism", + "query-id": "qidao-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-optimism", + "query-id": "4JbWxzxBNCpAaVz72Gt2UthgiwcWZQLKDBhmSE7wKY2K", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.5", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-gnosis", + "query-id": "qidao-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-gnosis", + "query-id": "7vJEsy8pJmRQZQh5kTXNz68SRHXBS859hMq3o5uWF1Ac", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "qidao-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-harmony", + "query-id": "qidao-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "qidao-harmony", + "query-id": "DCEQvXCiqtpMybQLL4YAgdCzqHzRH6wFFnCDnnLBBuvf", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "rari-vaults": { + "schema": "yield-aggregator", + "base": "rari-vaults", + "protocol": "rari-vaults", + "project": "rari-capital", + "deployments": { + "rari-vaults-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.3", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-vaults.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-vaults-ethereum", + "query-id": "rari-vaults-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "rari-vaults-ethereum", + "query-id": "Dy1yVPfbS27HTrqEq3nLGFGi3TMYxPzSfY7Zxxj5ZJhf", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "apeswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "apeswap", + "project": "apeswap", + "deployments": { + "apeswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "apeswap.bsc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "apeswap-bsc", + "query-id": "apeswap-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "apeswap-bsc", + "query-id": "4u1aTvzBMjBdm7aK7uQmjffhoPc6Ceu3w2nTfq6vUQnb", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "apeswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "apeswap.matic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "apeswap-polygon", + "query-id": "apeswap-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "apeswap-polygon", + "query-id": "2x478mWv6rECUcJR4VxNxRnuMuRsY22Jxy7xxXJu4Q7F", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mm-finance": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "mm-finance", + "project": "mm", + "deployments": { + "mm-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "mm.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mm-finance-polygon", + "query-id": "mm-finance-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mm-finance-polygon", + "query-id": "7B7R7aie7erfqUijkH2HNQcZ8bK6DpuXJaB5myt6nrs7", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "mm-finance-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.6", + "methodology": "1.0.0" + }, + "files": { + "template": "mm.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "cronos-portal": { + "slug": "mm-finance", + "query-id": "mm-finance" + }, + "hosted-service": { + "slug": "mm-finance-cronos", + "query-id": "mm-finance-cronos", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mm-finance-cronos", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "quickswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "quickswap", + "project": "quickswap", + "deployments": { + "quickswap-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "quickswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "quickswap-polygon", + "query-id": "quickswap-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "quickswap-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "quickswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "quickswap-swap", + "project": "quickswap", + "deployments": { + "quickswap-swap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "quickswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "quickswap-swap-polygon", + "query-id": "quickswap-swap-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "quickswap-swap-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "solarbeam": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "solarbeam", + "project": "solarbeam", + "deployments": { + "solarbeam-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "solarbeam.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "solarbeam-moonriver", + "query-id": "solarbeam-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "solarbeam-moonriver", + "query-id": "EoN2oon5KNH6XL1xSQCRsLHFPSZ2xLJD9DApizNtfGWo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "spiritswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "spiritswap", + "project": "spiritswap", + "deployments": { + "spiritswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.10", + "methodology": "1.0.0" + }, + "files": { + "template": "spiritswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiritswap-fantom", + "query-id": "spiritswap-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spiritswap-fantom", + "query-id": "ARnDoat2Zyft9miSW8Md6V32nd5YUfngMCDCaNgqLqXv", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "spookyswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "spookyswap", + "project": "spookyswap", + "deployments": { + "spookyswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "spookyswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spookyswap-fantom", + "query-id": "spookyswap-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spookyswap-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "spookyswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "spookyswap-swap", + "project": "spookyswap", + "deployments": { + "spookyswap-swap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spookyswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spookyswap-swap-fantom", + "query-id": "spookyswap-swap-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spookyswap-swap-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "sushiswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "sushiswap", + "project": "sushiswap", + "deployments": { + "sushiswap-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-arbitrum", + "query-id": "sushiswap-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-arbitrum", + "query-id": "9tSS5FaePZnjmnXnSKCCqKVLAqA6eGg6jA2oRojsXUbP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-avalanche", + "query-id": "sushiswap-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-avalanche", + "query-id": "4KgG6aek9cEp8MXQZKWCmeJWj5Y77mK9tPRAD1kDQa8Q", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-bsc", + "query-id": "sushiswap-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-bsc", + "query-id": "7QyoZFgo1bYvTD7bmdBxsjFLjmeDLgBT3nC3H8y6yuKZ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-celo", + "query-id": "sushiswap-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-celo", + "query-id": "5H97eNhy9fVHcqRXZtCV2UxHG2DbzcFA7yth1TaVZ45x", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-fantom", + "query-id": "sushiswap-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-fantom", + "query-id": "9wj3CmJFtoe7J25h4t39ioQHXexGe2rbsLfBgLefU7mN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-fuse": { + "network": "fuse", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-fuse", + "query-id": "sushiswap-fuse", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-fuse", + "query-id": "7MhgrLAB5B4D6PLDjF9Stx7fzS54MA3d5oi9dT3fHxbz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.2", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.mainnet.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-ethereum", + "query-id": "sushiswap-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-ethereum", + "query-id": "77jZ9KWeyi3CJ96zkkj5s1CojKPHt6XJKjLFzsDCd8Fd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-harmony", + "query-id": "sushiswap-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-harmony", + "query-id": "96NBskquxSxSDV8W42g3nmzECziCvhftSXFFpbY4geaC", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-polygon", + "query-id": "sushiswap-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-polygon", + "query-id": "B3Jt84tHJJjanE4W1YijyksTwtm7jqK8KcG5dcoc1ZNF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-moonbeam", + "query-id": "sushiswap-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-moonbeam", + "query-id": "8oFzyJBeHoojoe23u3YYNruTZsqgn91q44U8hrFocbtp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-moonriver", + "query-id": "sushiswap-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-moonriver", + "query-id": "EuYBux3ZPq1v3Uipo837WDq6WrK4AB3LGD6w78edRHib", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "sushiswap-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.15", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-gnosis", + "query-id": "sushiswap-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "sushiswap-gnosis", + "query-id": "GvgkY82DTAkYqRShBbPQMjF1WJyUcknXre3QPWiXrPnS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "trader-joe": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "trader-joe", + "project": "trader-joe", + "deployments": { + "trader-joe-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "trader.joe.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "trader-joe-avalanche", + "query-id": "trader-joe-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "trader-joe-avalanche", + "query-id": "H2VGe2tYavUEosSjomHwxbvCKy3LaNaW8Kjw2KhhHs1K", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "trisolaris": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "trisolaris", + "project": "trisolaris", + "deployments": { + "trisolaris-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.9", + "methodology": "1.0.0" + }, + "files": { + "template": "trisolaris.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "trisolaris-aurora", + "query-id": "trisolaris-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "trisolaris-aurora", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ubeswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "ubeswap", + "project": "ubeswap", + "deployments": { + "ubeswap-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.16", + "methodology": "1.0.0" + }, + "files": { + "template": "ubeswap-template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "ubeswap-celo", + "query-id": "ubeswap-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ubeswap-celo", + "query-id": "9WiZHUk2d3rM4sEQ4NSz6ihFRc2zWmPj7yk8w51dNdhT", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-v2": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "uniswap-v2", + "project": "uniswap", + "deployments": { + "uniswap-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v2-ethereum", + "query-id": "uniswap-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v2-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "baseswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "baseswap", + "project": "baseswap", + "deployments": { + "baseswap-base": { + "network": "base", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "baseswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "baseswap-base", + "query-id": "baseswap-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "baseswap-base", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-v2-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "uniswap-v2-swap", + "project": "uniswap", + "deployments": { + "uniswap-v2-swap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v2-swap-ethereum", + "query-id": "uniswap-v2-swap-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-v2-swap-ethereum", + "query-id": "3onEbd9MLfXTTWAfP91yqsKr7C68VCT2ZiF7EoQiQAFj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "substream-uniswap-v2": { + "schema": "dex-amm", + "base": "substreams", + "protocol": "uniswap-v2", + "project": "uniswap", + "deployments": { + "substream-uniswap-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "NA" + }, + "options": { + "prepare:yaml": false, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "substream-uniswap-v2-ethereum", + "query-id": "substream-uniswap-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "substream-uniswap-v2-ethereum", + "query-id": "J2oP9UNBjsnuDDW1fAoHKskyrNLFNBB2badQU6UvEtJp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "pancakeswap-v2-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "pancakeswap-v2-swap", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v2-swap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v2.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v2-swap-bsc", + "query-id": "pancakeswap-v2-swap-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pancakeswap-v2-swap-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "baseswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "baseswap-swap", + "project": "baseswap", + "deployments": { + "baseswap-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "baseswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "baseswap-swap-base", + "query-id": "baseswap-swap-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "baseswap-swap-base", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "vvs-finance": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "vvs-finance", + "project": "vvs", + "deployments": { + "vvs-finance-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "vvs.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "cronos-portal": { + "slug": "vvs-finance", + "query-id": "vvs-finance" + }, + "hosted-service": { + "slug": "vvs-finance-cronos", + "query-id": "vvs-finance-cronos", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "vvs-finance-cronos", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "honeyswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "honeyswap", + "project": "honeyswap", + "deployments": { + "honeyswap-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.1" + }, + "files": { + "template": "honeyswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "honeyswap-gnosis", + "query-id": "honeyswap-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "honeyswap-gnosis", + "query-id": "33aQTj7abtAR5zGcG9JBd1fd1sodgKDjoTsKuA8QrUW7", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "honeyswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.10", + "methodology": "1.0.1" + }, + "files": { + "template": "honeyswap.matic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "honeyswap-polygon", + "query-id": "honeyswap-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "honeyswap-polygon", + "query-id": "7YaQPHXFrPCwbt2MUPQ5N5PgmgMch14Ab5cZVYxvtPgW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "velodrome-finance-v1": { + "schema": "dex-amm", + "base": "velodrome-finance", + "protocol": "velodrome-finance-v1", + "project": "velodrome", + "deployments": { + "velodrome-finance-v1-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "velodrome.finance.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "velodrome-optimism", + "query-id": "velodrome-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "velodrome-optimism", + "query-id": "7tA4PY1VmbycJeoVtn2mjQK4NbozgwTuZgrxDTxzEDL1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "velodrome-finance-v2": { + "schema": "dex-amm", + "base": "velodrome-finance", + "protocol": "velodrome-finance-v2", + "project": "velodrome", + "deployments": { + "velodrome-finance-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "velodrome.finance.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "velodrome-v2-optimism", + "query-id": "velodrome-v2-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "velodrome-v2-optimism", + "query-id": "A4Y1A82YhSLTn998BVVELC8eWzhi992k4ZitByvssxqA", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "yearn-v2": { + "schema": "yield-aggregator", + "base": "yearn-v2", + "protocol": "yearn-v2", + "project": "yearn", + "deployments": { + "yearn-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-arbitrum", + "query-id": "yearn-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yearn-v2-arbitrum", + "query-id": "G3JZhmKKHC4mydRzD6kSz5fCWve5WDYYCyTFSJyv3SD5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "yearn-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-ethereum", + "query-id": "yearn-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yearn-v2-ethereum", + "query-id": "FDLuaz69DbMADuBjJDEcLnTuPnjhZqNbFVrkNiBLGkEg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "yearn-v2-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-fantom", + "query-id": "yearn-v2-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yearn-v2-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "maker-governance": { + "schema": "governance", + "base": "maker-governance", + "protocol": "maker-governance", + "project": "makerdao", + "deployments": { + "maker-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "maker-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maker-governance", + "query-id": "maker-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "maker-governance", + "query-id": "FXpCdSzUbRFzovJLW8hrwFXA2E3Bj915w99TtTSMm88p", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aave-governance": { + "schema": "governance", + "base": "aave-governance", + "protocol": "aave-governance", + "project": "aave", + "deployments": { + "aave-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-governance", + "query-id": "aave-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aave-governance", + "query-id": "8EBbn3tNayccBZrnW9ae6Q4NLHfVEcozvkB3YAp5Qatr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "dydx-governance": { + "schema": "governance", + "base": "aave-governance", + "protocol": "dydx-governance", + "project": "dydx", + "deployments": { + "dydx-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dydx-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dydx-governance", + "query-id": "dydx-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dydx-governance", + "query-id": "FFK9Fa8fdBrAugNVFqRZVAtrej7FjsQNq1s9LVBhF4FX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "angle-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "angle-governance", + "project": "angle", + "deployments": { + "angle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "angle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "angle-governance", + "query-id": "angle-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "angle-governance", + "query-id": "94D1g2jHHqKUS5uhbEPHWyRgfp4bYeZPn5Cr5R3zvoYH", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "code4rena-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "code4rena-governance", + "project": "code4rena", + "deployments": { + "code4rena-governance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "code4rena-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "code4rena-governance", + "query-id": "code4rena-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "code4rena-governance-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ens-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "ens-governance", + "project": "ens", + "deployments": { + "ens-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ens-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ens-governance", + "query-id": "ens-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ens-governance", + "query-id": "GyijYxW9yiSRcEd5u2gfquSvneQKi5QuvU3WZgFyfFSn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "euler-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "euler-governance", + "project": "euler", + "deployments": { + "euler-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "euler-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "euler-governance", + "query-id": "euler-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "euler-governance", + "query-id": "F94CS4mephx6noem4KsXxeGDSufCGUH5fXrqUX5ZiFk2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "fei-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "fei-governance", + "project": "fei", + "deployments": { + "fei-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "fei-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "fei-governance", + "query-id": "fei-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "fei-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "hop-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "hop-governance", + "project": "hop", + "deployments": { + "hop-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hop-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hop-governance", + "query-id": "hop-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-governance", + "query-id": "9RFPnB3zNjtc7x9kowTyBU2YVGUFSJRe27EBJWLMVgy6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "silo-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "silo-governance", + "project": "silo", + "deployments": { + "silo-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "silo-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "silo-governance", + "query-id": "silo-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "silo-governance", + "query-id": "8qztgeMTJrq2kQHK7LzmbmDUpuBvDc6eFASDqN8SJBM5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "truefi-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "truefi-governance", + "project": "truefi", + "deployments": { + "truefi-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "truefi-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "truefi-governance", + "query-id": "truefi-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "truefi-governance", + "query-id": "DbD7U3k8trdQUC2KqC2Fu2WcS42QUZHr2YXJzZXjH719", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "unlock-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "unlock-governance", + "project": "unlock", + "deployments": { + "unlock-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "unlock-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "unlock-governance", + "query-id": "unlock-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "unlock-governance-ethereum", + "query-id": "7ziHxbouaMXhSzxf5nfTXLYYASajU9bTCcxWoTKEAkBe", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "rarible-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "rarible-governance", + "project": "rarible", + "deployments": { + "rarible-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rarible-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rarible-governance", + "query-id": "rarible-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "rarible-governance", + "query-id": "2oGCcncW9v7AAExqpZ9T1W1GecSjGVmi7XGet3P9JiNn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "optimism-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "optimism-governance", + "project": "optimism", + "deployments": { + "optimism-governance-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "optimism-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "optimism-governance", + "query-id": "optimism-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "optimism-governance-optimism", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ousd-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "ousd-governance", + "project": "ousd", + "deployments": { + "ousd-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ousd-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ousd-governance", + "query-id": "ousd-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ousd-governance", + "query-id": "BwcFTZJskUwk6WXKteMAEqn6CQFWsPsqq8A8YGcqnWkK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "threshold-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "threshold-governance", + "project": "threshold", + "deployments": { + "threshold-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "threshold-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "threshold-governance", + "query-id": "threshold-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "threshold-governance", + "query-id": "Bk9fLLKttYoM4fE1cXXCq61owGqFtX1RsS8kEtDnDELC", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ampleforth-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "ampleforth-governance", + "project": "ampleforth", + "deployments": { + "ampleforth-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ampleforth-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ampleforth-governance", + "query-id": "ampleforth-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ampleforth-governance", + "query-id": "B7zUhfTTV7mi2QZgUL661D714NGqeLtk6h3q3Mf2xNNa", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "compound-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "compound-governance", + "project": "compound", + "deployments": { + "compound-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-governance", + "query-id": "compound-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-governance", + "query-id": "7nuSuPhUgKSg5uKRh8g5jyjZWE8DnvQw1mQtvDWpxrnh", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "compound-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "compound-governance-v1", + "project": "compound", + "deployments": { + "compound-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-governance-v1", + "query-id": "compound-governance-v1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "compound-governance-v1-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "cryptex-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "cryptex-governance", + "project": "cryptex", + "deployments": { + "cryptex-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cryptex-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cryptex-governance", + "query-id": "cryptex-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cryptex-governance", + "query-id": "AnAnCpeyy2ZbP2BLZw9u7VjGtVtRorvYuGU3vME1na7F", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gitcoin-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "gitcoin-governance", + "project": "gitcoin", + "deployments": { + "gitcoin-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gitcoin-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gitcoin-governance", + "query-id": "gitcoin-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gitcoin-governance", + "query-id": "By35hUZiWiHNzRsdDnxFU9T47YUNZwPjfhwD1iBbNGQL", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "hifi-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "hifi-governance", + "project": "hifi", + "deployments": { + "hifi-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hifi-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hifi-governance", + "query-id": "hifi-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hifi-governance", + "query-id": "ANAXtqRM9cUySpQZ8xuaFTdu1oFCj4HYaRXXiChTihAM", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "idle-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "idle-governance", + "project": "idle", + "deployments": { + "idle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "idle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "idle-governance", + "query-id": "idle-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "idle-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "idle-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "idle-governance-v1", + "project": "idle", + "deployments": { + "idle-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "idle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "idle-governance-v1", + "query-id": "idle-governance-v1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "idle-governance-v1-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "indexed-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "indexed-governance", + "project": "indexed", + "deployments": { + "indexed-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "indexed-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "indexed-governance", + "query-id": "indexed-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "indexed-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "lilnouns-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "lilnouns-governance", + "project": "lilnouns", + "deployments": { + "lilnouns-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lilnouns-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lilnouns-governance", + "query-id": "lilnouns-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "lilnouns-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "nouns-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "nouns-governance", + "project": "nouns", + "deployments": { + "nouns-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "nouns-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "nouns-governance", + "query-id": "nouns-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "nouns-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ooki-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "ooki-governance", + "project": "ooki", + "deployments": { + "ooki-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ooki-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ooki-governance", + "query-id": "ooki-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ooki-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "pooltogether-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "pooltogether-governance", + "project": "pooltogether", + "deployments": { + "pooltogether-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "pooltogether-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "pooltogether-governance", + "query-id": "pooltogether-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pooltogether-governance", + "query-id": "8rW1keThqpvtoBz7V2iNbo3wqcPCJZTBGuc3frGKbyi2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "radicle-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "radicle-governance", + "project": "radicle", + "deployments": { + "radicle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radicle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radicle-governance", + "query-id": "radicle-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "radicle-governance", + "query-id": "8jQvvEWJffzA48kxnPhuG7dqv4MWwPatVKKbxzr66xiN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "reflexer-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "reflexer-governance", + "project": "reflexer", + "deployments": { + "reflexer-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "reflexer-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "reflexer-governance", + "query-id": "reflexer-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "reflexer-governance", + "query-id": "wWdwntxsEd21qDdhkzDn9ycNs5kvYamkndwv3GwLfPp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance", + "project": "uniswap", + "deployments": { + "uniswap-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance", + "query-id": "uniswap-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-governance", + "query-id": "7WXaWRE2GbBpmokFAnQfugpVsC61D9dfR6fHgjQFqpq5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance-v1", + "project": "uniswap", + "deployments": { + "uniswap-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance-v1", + "query-id": "uniswap-governance-v1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-governance-v1-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "uniswap-governance-v2": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance-v2", + "project": "uniswap", + "deployments": { + "uniswap-governance-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance-v2", + "query-id": "uniswap-governance-v2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "uniswap-governance-v2-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "unslashed-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "unslashed-governance", + "project": "unslashed", + "deployments": { + "unslashed-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "unslashed-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "unslashed-governance", + "query-id": "unslashed-governance", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "unslashed-governance-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "vesper-finance": { + "schema": "yield-aggregator", + "base": "vesper-finance", + "protocol": "vesper-finance", + "project": "vesper", + "deployments": { + "vesper-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "vesper.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vesper-ethereum", + "query-id": "vesper-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "vesper-ethereum", + "query-id": "GQdCg4oR8tFB4tH8svyL1PfgDABKnRXz4GjwFYH68pPG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "badgerdao": { + "schema": "yield-aggregator", + "base": "badgerdao", + "protocol": "badgerdao", + "project": "badger", + "deployments": { + "badgerdao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "badgerdao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "badgerdao-ethereum", + "query-id": "badgerdao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "badgerdao-ethereum", + "query-id": "BchjnXAXXV5coiCBMQH4A8yCHXEFX9S88JFF6G3mfem4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "platypus-finance": { + "schema": "dex-amm", + "base": "platypus-finance", + "protocol": "platypus-finance", + "project": "platypus", + "deployments": { + "platypus-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.3.3", + "methodology": "1.0.0" + }, + "files": { + "template": "platypus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "platypus-finance-avalanche", + "query-id": "platypus-finance-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "platypus-finance-avalanche", + "query-id": "B35cLTayreXTML6fXPTrFNSYx7mKyDuuV51LjVxWwWjp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "erc20": { + "schema": "erc20", + "base": "erc20", + "protocol": "erc20", + "project": "erc20", + "deployments": { + "erc20-holders-2017": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2017", + "query-id": "erc20-holders-2017", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2017", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "erc20-holders-2018": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2018", + "query-id": "erc20-holders-2018", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2018", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "erc20-holders-2019": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2019", + "query-id": "erc20-holders-2019", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2019", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "erc20-holders-2020": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2020", + "query-id": "erc20-holders-2020", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2020", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "erc20-holders-2021": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2021", + "query-id": "erc20-holders-2021", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2021", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "erc20-holders-2022": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2022", + "query-id": "erc20-holders-2022", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "erc20-holders-2022", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "opensea-v1": { + "schema": "nft-marketplace", + "base": "opensea", + "protocol": "opensea-v1", + "project": "opensea", + "deployments": { + "opensea-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "opensea.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-v1-ethereum", + "query-id": "opensea-v1-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opensea-v1-ethereum", + "query-id": "GSjXo5Vd1EPaMGRJBYe6HoBKv7WSq3miCrRRZJbTCHkT", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "opensea-v2": { + "schema": "nft-marketplace", + "base": "opensea", + "protocol": "opensea-v2", + "project": "opensea", + "deployments": { + "opensea-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "opensea.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-v2-ethereum", + "query-id": "opensea-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opensea-v2-ethereum", + "query-id": "ECtdoov16DUmk5qbhFx4PVVN7vidiNDwzFNsui6FoHEo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "seaport": { + "schema": "nft-marketplace", + "base": "seaport", + "protocol": "seaport", + "project": "opensea", + "deployments": { + "opensea-seaport-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "seaport.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-seaport-ethereum", + "query-id": "opensea-seaport-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opensea-seaport-ethereum", + "query-id": "2GmLsgYGWoFoouZzKjp8biYDkfmeLTkEY3VDQyZqSJHA", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "x2y2": { + "schema": "nft-marketplace", + "base": "x2y2", + "protocol": "x2y2", + "project": "x2y2", + "deployments": { + "x2y2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "x2y2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "x2y2-ethereum", + "query-id": "x2y2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "x2y2-ethereum", + "query-id": "3cMswgcjkpLmuF99ViQRZfCPRyCsnimqQsR9z6mY5e2i", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "looksrare": { + "schema": "nft-marketplace", + "base": "looksrare", + "protocol": "looksrare", + "project": "looksrare", + "deployments": { + "looksrare-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "looksrare.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "looksrare-ethereum", + "query-id": "looksrare-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "looksrare-ethereum", + "query-id": "FsT2DES8UdhfDkXCtE56h5WCDrrSXrtJiSMgNWvSdyYL", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tornado-cash": { + "schema": "generic", + "base": "tornado-cash", + "protocol": "tornado-cash", + "project": "tornado-cash", + "deployments": { + "tornado-cash-classic-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.4", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "tornado-cash-classic-ethereum", + "query-id": "tornado-cash-classic-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tornado-cash-classic-ethereum", + "query-id": "346UaR2Lgxg8yJ2Vq2r8wid1pWaYQNH6N1GmzGCJkHRV", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "tornado-cash.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "tornado-cash-classic-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "tornado-cash-classic-bsc", + "query-id": "tornado-cash-classic-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tornado-cash-classic-bsc", + "query-id": "3wAcWMmwNSv9CVfT4HFFWAvawCq621JPKfg1tniwdW7a", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "tornado-cash.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "the-graph": { + "schema": "generic", + "base": "the-graph", + "protocol": "the-graph", + "project": "the-graph", + "deployments": { + "the-graph-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "the-graph-arbitrum", + "query-id": "the-graph-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "the-graph-arbitrum", + "query-id": "EExUE3FayKraaTteewjxaUpZW4M33j4bsD6pgxNCHnGd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "theGraphTemplate.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "the-graph-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "the-graph-ethereum", + "query-id": "the-graph-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "the-graph-ethereum", + "query-id": "AQHJdvUMkPfSxi6Q2LxXYjWXjGvfCST8DFFYE4VUKtU6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "theGraphTemplate.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "aura-finance": { + "schema": "yield-aggregator", + "base": "aura-finance", + "protocol": "aura-finance", + "project": "aura", + "deployments": { + "aura-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "aura-finance-ethereum", + "query-id": "aura-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aura-finance-ethereum", + "query-id": "EcNHwEGXq3KW1vCbHHj1iwvtf62ae5kxzEQhKtRqPygt", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "aura-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "pangolin": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "pangolin", + "project": "pangolin", + "deployments": { + "pangolin-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "pangolin-avalanche", + "query-id": "pangolin-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "pangolin-avalanche", + "query-id": "6f3YqP75bLuLZAv7Cm1BohFot17kT3Svekg6giuvaTmg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "pangolin.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "rocket-pool": { + "schema": "generic", + "base": "rocket-pool", + "protocol": "rocket-pool", + "project": "rocket-pool", + "deployments": { + "rocket-pool-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "rocket-pool-ethereum", + "query-id": "rocket-pool-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "rocket-pool-ethereum", + "query-id": "Dtj2HicXKpoUjNB7ffdBkMwt3L9Sz3cbENd67AdHu6Vb", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "rocket-pool.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "cryptopunks": { + "schema": "nft-marketplace", + "base": "cryptopunks", + "protocol": "cryptopunks", + "project": "cryptopunks", + "deployments": { + "cryptopunks-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "cryptopunks.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cryptopunks-ethereum", + "query-id": "cryptopunks-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cryptopunks-ethereum", + "query-id": "HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "multichain": { + "schema": "bridge", + "base": "multichain", + "protocol": "multichain", + "project": "multichain", + "deployments": { + "multichain-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-arbitrum", + "query-id": "multichain-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-arbitrum", + "query-id": "579DZmKbpRcdLVBiLyhLEvRQBQ54BA72yDqtSaVSijRs", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-avalanche", + "query-id": "multichain-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-avalanche", + "query-id": "28ds2UuXzULQ9XLKFncX1pVL6xTENwKw9VKb7xRXC6mX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-bsc", + "query-id": "multichain-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-celo", + "query-id": "multichain-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-celo", + "query-id": "F6Rz64x6iem1VuUNUvzBzH1zzBBZfCA7cpZ91mLySXQY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-ethereum", + "query-id": "multichain-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-ethereum", + "query-id": "GRPErV1E73JGNGGsF2tK4fuuqpvBWpfRBSED8567BAD2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-fantom", + "query-id": "multichain-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-fantom", + "query-id": "B6xbS79Nza7zNjSXu1Bsq2ofpFLhDEW1mpAkECKdQXQc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-gnosis", + "query-id": "multichain-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-gnosis", + "query-id": "E3FsKA2dpjv94tPgMKmyPEa63mUQ611XRrbsgAtzqrCn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-optimism", + "query-id": "multichain-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-optimism", + "query-id": "FZkvvW6rZJxJk1E3LqhVWHRAb8oWoWZAX563Y94C6GaF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-polygon", + "query-id": "multichain-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "multichain-polygon", + "query-id": "AKgq2JRAoRnBE14iDAMN8bqDwwyufpy3AqXuZRKvyZVR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "stargate": { + "schema": "bridge", + "base": "stargate", + "protocol": "stargate", + "project": "stargate", + "deployments": { + "stargate-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-ethereum", + "query-id": "stargate-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-ethereum", + "query-id": "G1pPbbMjwCnFiyMherq8wqfMusZDriLMqvGBHLr2wS34", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-avalanche", + "query-id": "stargate-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-avalanche", + "query-id": "6XypMkQUovcohhVC2XeWgdXeDsBcnL9ynKdLXpXggoHd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-bsc", + "query-id": "stargate-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-bsc", + "query-id": "6sRx6JNkjz66id39jCK3GMiVnPVuyuv2ntwQVpDzmjRF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-arbitrum", + "query-id": "stargate-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-arbitrum", + "query-id": "DWo7jrtpTtUM1buqiCUg7j7XUF568qNPBv7FwwDceuxm", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-polygon", + "query-id": "stargate-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-polygon", + "query-id": "SitmxEcPXXwo5cFK8Y2FSMZNZNQ4gXcGdWBDqo3A7K6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-optimism", + "query-id": "stargate-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-optimism", + "query-id": "7NAF7ZtNtJiXkfCFkTSAyFbfLLfUFa55UgK5woxPxZ46", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-fantom", + "query-id": "stargate-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-fantom", + "query-id": "2pG7kUAfPhtGyy1StFLhFu8pwTR5kDsCJN9KZjWn9Lnk", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stargate-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-base", + "query-id": "stargate-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stargate-base", + "query-id": "4amk8rvTHgxSobsFKsr5jheHsDzLcwyqc8vHhNC1xhGt", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "orbit": { + "schema": "bridge", + "base": "orbit", + "protocol": "orbit", + "project": "orbit", + "deployments": { + "orbit-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-ethereum", + "query-id": "orbit-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "orbit-ethereum", + "query-id": "DpGRvQhDPH3EXRuCjMM7RednJz25Ucm2oYp56Vb4k74F", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "orbit-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-bsc", + "query-id": "orbit-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "orbit-bsc", + "query-id": "8XNHKT5X8DgsdL6hKe6tK5FnkBRR4TtS2YH23db5D6VH", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "orbit-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-celo", + "query-id": "orbit-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "orbit-celo", + "query-id": "DdGECh8tM63FEsT96AjxfhxkE5wTBeBPdnh3qkUYpcvY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "orbit-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-polygon", + "query-id": "orbit-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "orbit-polygon", + "query-id": "FQVKZkxeeqdnGU4a1Qwm5SVu8FxtQVPshzpLBAhMH1V9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "polygon-bridge": { + "schema": "bridge", + "base": "polygon-bridge", + "protocol": "polygon-bridge", + "project": "polygon", + "deployments": { + "polygon-bridge-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "polygon-bridge-ethereum", + "query-id": "polygon-bridge-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "polygon-bridge-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "polygon.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "polygon-bridge-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "polygon-bridge-polygon", + "query-id": "polygon-bridge-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "polygon-bridge-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "polygon.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "across-v2": { + "schema": "bridge", + "base": "across-v2", + "protocol": "across-v2", + "project": "across", + "deployments": { + "across-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-ethereum", + "query-id": "across-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "across-v2-ethereum", + "query-id": "34kdiaZVpPsStQdsh5xFhrZdsZvZYJGfhJ7SVGWY2Y8g", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-optimism", + "query-id": "across-v2-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "across-v2-optimism", + "query-id": "GY9s64KVsRkW4Q8pCBKQePyDdcUV1TV1ArWFzvMv2qVb", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-boba": { + "network": "boba", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-boba", + "query-id": "across-v2-boba", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "across-v2-boba", + "query-id": "4SbLL5ZptwGU9Eor3SaoV3UZw12KPiZRKkwBEbKDenjP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-arbitrum", + "query-id": "across-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "across-v2-arbitrum", + "query-id": "3rg6ZtwNUMpBrM1uSUtNqcbc6tGfyY2WLheDGSc5qMzX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-polygon", + "query-id": "across-v2-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "across-v2-polygon", + "query-id": "8ywQVEAGn6wAGdYa4ofniy52CMsYMHyK6CbBrL4ZE7ks", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "hop-protocol": { + "schema": "bridge", + "base": "hop-protocol", + "protocol": "hop-protocol", + "project": "hop", + "deployments": { + "hop-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-ethereum", + "query-id": "hop-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-ethereum", + "query-id": "7YKiuzrmUxTpSN5DddDVFm9FDjQ5387dnEivHHdX9pAc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-arbitrum", + "query-id": "hop-protocol-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-arbitrum", + "query-id": "4xY1CAbwQA7oq3a78CX8mgKFvMoZzPsv21A92Hm7rEvv", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-optimism", + "query-id": "hop-protocol-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-optimism", + "query-id": "KoMGmd2d1VMukusmf98SdWCSKH5ZP5UEUDHKrKpY74D", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-xdai": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-xdai", + "query-id": "hop-protocol-xdai", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-gnosis", + "query-id": "DA1WTRx4pbGQdTm1YqRz3MCLiap4cdgK62Q6Bjy99m1y", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-polygon", + "query-id": "hop-protocol-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-polygon", + "query-id": "iLsL5mqiwjQhdGs3XfYBdLhaKdE4yDR73iTg2PSRr1E", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-polygon-zkevm": { + "network": "polygon-zkevm", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-polygon-zkevm", + "query-id": "hop-protocol-polygon-zkevm", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hop-protocol-polygon-zkevm", + "query-id": "EkkvCmBiEPiJ5LkaSPxpuAmMouSUN5FZrdrKu7nBY5p9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "portal": { + "schema": "bridge", + "base": "portal", + "protocol": "portal", + "project": "portal", + "deployments": { + "portal-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-ethereum", + "query-id": "portal-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "portal-ethereum", + "query-id": "HxduZZ9fy1shXbo7EAG9W73geBAxzKjVNXgMkxeTJkpX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-fantom", + "query-id": "portal-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "portal-fantom", + "query-id": "3wKUbySRqqBe6bXGWm3aDr9g8fuUoxKMqcdhTGwBGyjG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-bsc", + "query-id": "portal-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "portal-bsc", + "query-id": "FCd8kxMGFkk3AGEHeYRngeHvBsuTpQo7XBLu6XoyDctr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-polygon", + "query-id": "portal-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "portal-polygon", + "query-id": "4V9sMa8P8vKAccUtR8jP28mBfvtUMip4tVvMBSDC7h3V", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-avalanche", + "query-id": "portal-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "portal-avalanche", + "query-id": "BV3hShBwZkZM7RL9XPGqZ9JyJcE2vrWqXwFQYTVquH3Z", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "optimism-bridge-v2": { + "schema": "bridge", + "base": "optimism-bridge-v2", + "protocol": "optimism-bridge-v2", + "project": "optimism", + "deployments": { + "optimism-bridge-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "optimism-bridge-v2-ethereum", + "query-id": "optimism-bridge-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "optimism-bridge-v2-ethereum", + "query-id": "DCKLUdmvmaX4eNSAouXjxt8yShp28dFKGD763Tb2KibH", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "optimism.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true + } + }, + "optimism-bridge-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "optimism-bridge-v2-optimism", + "query-id": "optimism-bridge-v2-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "optimism-bridge-v2-optimism", + "query-id": "4aUWDFLz4sVYKZDw4JDJLk8vjify1Rqij7UGFozNxA8k", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "optimism.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true + } + } + } + }, + "cbridge": { + "schema": "bridge", + "base": "cbridge", + "protocol": "cbridge", + "project": "celer-network", + "deployments": { + "cbridge-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-ethereum", + "query-id": "cbridge-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-ethereum", + "query-id": "3C9qpsGFHrAnXkmPoeRbMjH9gyTuQskzB29VrrV8NbAN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-arbitrum", + "query-id": "cbridge-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-arbitrum", + "query-id": "FGucK6FiGDyjwA1VDymrCQXgSTdZH7sCrP8HbnwVFatY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-aurora", + "query-id": "cbridge-aurora", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-aurora", + "query-id": "5uW7hwPPaHVEY7qqx5S9CV156YE7Dvjt2AAPiJ4mn12h", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-avalanche", + "query-id": "cbridge-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-avalanche", + "query-id": "2usVF8JKwgVesvXVkLj2KG6ourAPEVG7GV6j1MtTwhVa", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-boba": { + "network": "boba", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-boba", + "query-id": "cbridge-boba", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-boba", + "query-id": "AZd3VzvnYoxBKAWjbZB4snZgow9SnyTTxaxad3YPxbvh", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-bsc", + "query-id": "cbridge-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-bsc", + "query-id": "9ryiazBA4UJu1g2rbunQ42wqxvhdZP648p2jiBMjcoZc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-celo", + "query-id": "cbridge-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-celo", + "query-id": "Exzi1255D9QkAzLhcS1qrVXVDMdkQvQ6wxRDjpi9uQz6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-fantom", + "query-id": "cbridge-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-fantom", + "query-id": "Ce9MWULyvFUXRqN7LgehQVy3XBGhxk3qtFJhgznHYY3x", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-gnosis", + "query-id": "cbridge-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-gnosis", + "query-id": "FdoU8yttG4HUfoYSsP2Qit1UvvVCaZeUDPnMB4nzguNU", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-harmony", + "query-id": "cbridge-harmony", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-harmony", + "query-id": "8gXopvmmYABDCCrWuafAkYuRB4bpJ7XcbgGmN8AcMJDg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-moonbeam", + "query-id": "cbridge-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-moonbeam", + "query-id": "6F1ia9A6Vmanbzk2T3EAAev5Q9TKyF1oxu6JiUKbPdnL", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-moonriver", + "query-id": "cbridge-moonriver", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-moonriver", + "query-id": "FuFD3UqnCWhQoarNsvdY8AW5exnKXxiizJRXVakvniHX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-optimism", + "query-id": "cbridge-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-optimism", + "query-id": "GEy4r8C2cMku1TTfjzC751teQZ4dvVxXiW1F6K4fue2K", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "cbridge-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-polygon", + "query-id": "cbridge-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cbridge-polygon", + "query-id": "8rR3yC5ZPMoUauudfQC4iLJxqf5nCRjZRmYne8tEGrV9", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gmx": { + "schema": "derivatives-perpfutures", + "base": "gmx-forks", + "protocol": "gmx", + "project": "gmx", + "deployments": { + "gmx-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gmx-arbitrum", + "query-id": "gmx-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gmx-arbitrum", + "query-id": "DiR5cWwB3pwXXQWWdus7fDLR2mnFRQLiBFsVmHAH9VAs", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "gmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "gmx-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gmx-avalanche", + "query-id": "gmx-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gmx-avalanche", + "query-id": "6pXgnXcL6mkXBjKX7NyHN7tCudv2JGFnXZ8wf8WbjPXv", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "gmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "opyn-gamma": { + "schema": "derivatives-options", + "base": "opyn-gamma", + "protocol": "opyn-gamma", + "project": "opyn", + "deployments": { + "opyn-gamma-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-ethereum", + "query-id": "opyn-gamma-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opyn-gamma-ethereum", + "query-id": "3zUv74ekxpiy92MQ2MwemR8fJhjvgyBFaGzQLkYHmaUy", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-avalanche", + "query-id": "opyn-gamma-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opyn-gamma-avalanche", + "query-id": "3eaTJDJ1Y867jkDMY1iEJJLRZTSREfGZjusgmucptWJE", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-arbitrum", + "query-id": "opyn-gamma-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opyn-gamma-arbitrum", + "query-id": "BC766cXkcBxAwQ6LAYnQytdHJLpJX1C1bbrMFhLCHx7C", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-polygon", + "query-id": "opyn-gamma-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "opyn-gamma-polygon", + "query-id": "6WbUbvCBtjhKyf9ddZEfVReHNHHunzspGBp3hFsy1c8P", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "dopex": { + "schema": "derivatives-options", + "base": "dopex", + "protocol": "dopex", + "project": "dopex", + "deployments": { + "dopex-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "dopex-arbitrum", + "query-id": "dopex-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dopex-arbitrum", + "query-id": "6C7okGPnmQw4eahgvkjzKGqHyXsZBLSWz7BBEyyfe6vB", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "dopex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "dopex-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "dopex-polygon", + "query-id": "dopex-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dopex-polygon", + "query-id": "nTecf2j4MGgqgJrKTGmvVyWn169py1H9fgvaiN29MVu", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "dopex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "gains-trade": { + "schema": "derivatives-perpfutures", + "base": "gains-trade", + "protocol": "gains-trade", + "project": "gains-network", + "deployments": { + "gains-trade-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gains-trade-arbitrum", + "query-id": "gains-trade-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gains-trade-arbitrum", + "query-id": "DuPBYBj3nfP3sFiHwkRfTATmA4iSqoPvxBaRXWiwpELk", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "gains.trade.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "gains-trade-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gains-trade-polygon", + "query-id": "gains-trade-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gains-trade-polygon", + "query-id": "4d1zcsK9f1T2wzZTGZHaLKswbhmKTRWu1yeyX94htoMW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "gains.trade.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "vela-exchange": { + "schema": "derivatives-perpfutures", + "base": "vela-exchange", + "protocol": "vela-exchange", + "project": "vela-exchange", + "deployments": { + "vela-exchange-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "vela-exchange-arbitrum", + "query-id": "vela-exchange-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "vela-exchange-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "vela.exchange.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "synfutures-v2": { + "schema": "derivatives-perpfutures", + "base": "synfutures-v2", + "protocol": "synfutures-v2", + "project": "synfutures-v2", + "deployments": { + "synfutures-v2-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "synfutures-v2-polygon", + "query-id": "synfutures-v2-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "synfutures-v2-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "synfutures.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "mux-protocol": { + "schema": "derivatives-perpfutures", + "base": "mux-protocol", + "protocol": "mux-protocol", + "project": "mux-protocol", + "deployments": { + "mux-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-arbitrum", + "query-id": "mux-protocol-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mux-protocol-arbitrum", + "query-id": "AMh1u4wCbz8Jybs4Nf7uGBdU9dz2C8mJkH1Aocz6HXUf", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-avalanche", + "query-id": "mux-protocol-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mux-protocol-avalanche", + "query-id": "97XbzzGmRpUvHwdZyArbyrZHFnmWU15tC381epA1Fp7H", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-bsc", + "query-id": "mux-protocol-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mux-protocol-bsc", + "query-id": "3zRKcHbGqvMe6BG6fiLiaKx3y41ytzjw4jetbh5Q2fx1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-fantom", + "query-id": "mux-protocol-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mux-protocol-fantom", + "query-id": "46iwTwh5F6yAuKHF9iwFccu9wsYEaXwQCwnj2EjcEgBk", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-optimism", + "query-id": "mux-protocol-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mux-protocol-optimism", + "query-id": "7hUM4US9DPz6JqLD6ySqwFmLq4XiAF7cEZLmEesQnYgR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "kwenta": { + "schema": "derivatives-perpfutures", + "base": "kwenta", + "protocol": "kwenta", + "project": "kwenta", + "deployments": { + "kwenta-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "kwenta-optimism", + "query-id": "kwenta-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "kwenta-optimism", + "query-id": "5sbJJTTJQQ4kYuVYNBVw9sX8C5juRpVJNLHg7uFugw2e", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "kwenta.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "level-finance": { + "schema": "derivatives-perpfutures", + "base": "level-finance", + "protocol": "level-finance", + "project": "level-finance", + "deployments": { + "level-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "level-finance-bsc", + "query-id": "level-finance-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "level-finance-bsc", + "query-id": "97TRgysfrSPH7sumNXSasdjhKBnDwig2JKE7PwB4W2J8", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "level.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "level-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "level-finance-arbitrum", + "query-id": "level-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "level-finance-arbitrum", + "query-id": "9KPc6WMUXg6mqQ9KbCeosJrgmsZyH97vpFPKwJHkVkui", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + }, + "files": { + "template": "level.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "axelar": { + "schema": "bridge", + "base": "axelar", + "protocol": "axelar", + "project": "axelar", + "deployments": { + "axelar-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-ethereum", + "query-id": "axelar-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-ethereum", + "query-id": "8u1rrGZY3gjXAAVJidygbpKeHzitrMSQV1RoLAkyd1AA", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-arbitrum", + "query-id": "axelar-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-arbitrum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.2", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-avalanche", + "query-id": "axelar-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-avalanche", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-bsc", + "query-id": "axelar-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-celo": { + "network": "celo", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-celo", + "query-id": "axelar-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-celo", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-fantom", + "query-id": "axelar-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-fantom", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-moonbeam", + "query-id": "axelar-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-moonbeam", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "axelar-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-polygon", + "query-id": "axelar-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "axelar-polygon", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "camelot-v2": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "camelot-v2", + "project": "camelot", + "deployments": { + "camelot-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "camelot.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "camelot-v2-arbitrum", + "query-id": "camelot-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "camelot-v2-arbitrum", + "query-id": "E6J42xXvRQGsqcMEoWRkdeJjUTsWdcHL8khuFMY6CDAM", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "thena-fusion": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "thena-fusion", + "project": "thena", + "deployments": { + "thena-fusion-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "3.0.4", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "thena.fusion.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "thena-fusion-bsc", + "query-id": "thena-fusion-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "thena-fusion-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "thena-v1": { + "schema": "dex-amm", + "base": "solidly-forks", + "protocol": "thena-v1", + "project": "thena", + "deployments": { + "thena-v1-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "thena.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "thena-v1-bsc", + "query-id": "thena-v1-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "thena-v1-bsc", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "eigenlayer": { + "schema": "generic", + "base": "eigenlayer", + "protocol": "eigenlayer", + "project": "eigenlayer", + "deployments": { + "eigenlayer-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "eigenlayer.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "eigenlayer-ethereum", + "query-id": "eigenlayer-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "eigenlayer-ethereum", + "query-id": "68g9WSC4QTUJmMpuSbgLNENrcYha4mPmXhWGCoupM7kB", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "friend-tech": { + "schema": "generic", + "base": "friend-tech", + "protocol": "friend-tech", + "project": "friend-tech", + "deployments": { + "friend-tech-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "friend.tech.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "friend-tech-base", + "query-id": "friend-tech-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "friend-tech-base", + "query-id": "8fjDwMF5JPXYEg3tU45ttTsnp3mdTQd5efhkHhHGHCKj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stader": { + "schema": "generic", + "base": "stader", + "protocol": "stader", + "project": "stader", + "deployments": { + "stader-ethereum": { + "network": "mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stader.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stader-ethereum", + "query-id": "stader-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stader-ethereum", + "query-id": "2RLAUqUMvGGFygtuJfmTyeo62zFSJswDZSRMTcu28fSa", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "etherfi": { + "schema": "generic", + "base": "etherfi", + "protocol": "etherfi", + "project": "etherfi", + "deployments": { + "etherfi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "etherfi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "etherfi-ethereum", + "query-id": "etherfi-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "etherfi-ethereum", + "query-id": "GPwCNqJ5aroTtkk48Y57pBjFHVkeYmMzmBpE1a7WF7Hc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "frax-ether-staking": { + "schema": "generic", + "base": "frax-ether-staking", + "protocol": "frax-ether-staking", + "project": "frax-ether-staking", + "deployments": { + "frax-ether-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-ethereum", + "query-id": "frax-ether-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-ethereum", + "query-id": "FeKHrGeNxVctN6EeAhba2Kv78xNxuEhbRKNECLfVH8z2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-arbitrum", + "query-id": "frax-ether-staking-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-arbitrum", + "query-id": "FSafXUhkuwqARZNNe82isspkjQJcPK2PrSjQLvNXuakU", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-bsc", + "query-id": "frax-ether-staking-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-bsc", + "query-id": "A113zHKpiXzugLyKDVknAxjQ6qFSPQwfiGK7rjiuqbcq", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-fantom", + "query-id": "frax-ether-staking-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-fantom", + "query-id": "Ba52AgUJfCmWQpBJEwRvygC45iGr9uqnrehpymN2Xmx4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-moonbeam", + "query-id": "frax-ether-staking-moonbeam", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-moonbeam", + "query-id": "FhaAErF9146bnqJsQD34zPHNC11quKTuk9HBA7RdGrjz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-optimism", + "query-id": "frax-ether-staking-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-optimism", + "query-id": "G9nDvQw6S7LkzNxj7oGFZUsahe3ebpAtEww716kWkfZd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "frax-ether-staking-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-polygon", + "query-id": "frax-ether-staking-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "frax-ether-staking-polygon", + "query-id": "FMkrjPgSyGm2UBFrMqpJVwWgGHLek8U39W1M4R9TfP1T", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mantle-staked-eth": { + "schema": "generic", + "base": "mantle-staked-eth", + "protocol": "mantle-staked-eth", + "project": "mantle-staked-eth", + "deployments": { + "mantle-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mantle-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mantle-staked-eth-ethereum", + "query-id": "mantle-staked-eth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mantle-staked-eth-ethereum", + "query-id": "VVKZagj4XUyamqXysVBniarN8HMz87DnwkTChuXH18Z", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "swell-liquid-staking": { + "schema": "generic", + "base": "swell-liquid-staking", + "protocol": "swell-liquid-staking", + "project": "swell-liquid-staking", + "deployments": { + "swell-liquid-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "swell.liquid.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "swell-liquid-staking-ethereum", + "query-id": "swell-liquid-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "swell-liquid-staking-ethereum", + "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "puffer-finance": { + "schema": "generic", + "base": "puffer-finance", + "protocol": "puffer-finance", + "project": "puffer-finance", + "deployments": { + "puffer-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "puffer.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "puffer-finance-ethereum", + "query-id": "puffer-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "puffer-finance-ethereum", + "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "karak": { + "schema": "generic", + "base": "karak", + "protocol": "karak", + "project": "karak", + "deployments": { + "karak-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-ethereum", + "query-id": "karak-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "karak-ethereum", + "query-id": "2vzPTkDT2DddrRoXtg25AGK55nviKXeJiG21Cu56nurg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "karak-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-arbitrum", + "query-id": "karak-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "karak-arbitrum", + "query-id": "7kCkjx6GK67WZrVo54UcLWZ7kBx65TogBW1CD316XZgn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "karak-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-bsc", + "query-id": "karak-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "karak-bsc", + "query-id": "8YGDQQgExT7zLJioLRQdcSQko1qgiCjfwVg7TBV6eR7W", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "renzo": { + "schema": "generic", + "base": "renzo", + "protocol": "renzo", + "project": "renzo", + "deployments": { + "renzo-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-ethereum", + "query-id": "renzo-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-ethereum", + "query-id": "91jPrEeA5BPzDHmjKjVwmgDvGEQpAwh5yusTbHCQiQbM", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "renzo-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-arbitrum", + "query-id": "renzo-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-arbitrum", + "query-id": "5P79EkkSDxiXxWgiYcpsvML7Q3MSu64sHi8LF2xVggQz", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "renzo-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-base", + "query-id": "renzo-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-base", + "query-id": "Atj9RDj7hzmUd6a3PTzpPCpjJPzqMbvPLdxMfF2BFy5B", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "renzo-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-blast", + "query-id": "renzo-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-blast", + "query-id": "HXWd4suSQ4TztRznBCi1dWdBKrHvkDPZBA2hy5nng1eL", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "renzo-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-bsc", + "query-id": "renzo-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-bsc", + "query-id": "JD3KpTX2bdwVMtZvX3HmPKSGQsVYP8FRkUJs51vZBJPR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "renzo-mode": { + "network": "mode-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-mode", + "query-id": "renzo-mode", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "renzo-mode", + "query-id": "AUcw3uDfWmRQDHKgnQ6C7P2139scRwvzMfrJovSGbACW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ring-few": { + "schema": "generic", + "base": "ring-few", + "protocol": "ring-few", + "project": "ring-few", + "deployments": { + "ring-few-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ring.few.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ring-few-blast", + "query-id": "ring-few-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ring-few-blast", + "query-id": "FfTNTmfsJAz1gUqnc3RxGEqyaeMTRdaS4C5bYHAHbzsC", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "cygnus-finance": { + "schema": "generic", + "base": "cygnus-finance", + "protocol": "cygnus-finance", + "project": "cygnus-finance", + "deployments": { + "cygnus-finance-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cygnus.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cygnus-finance-base", + "query-id": "cygnus-finance-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cygnus-finance-base", + "query-id": "ELqNv3KbLggc6kN6uoeKvrbfBpbkQbAorZo3FABZJb6A", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "symbiotic": { + "schema": "generic", + "base": "symbiotic", + "protocol": "symbiotic", + "project": "symbiotic", + "deployments": { + "symbiotic-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "symbiotic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "symbiotic-ethereum", + "query-id": "symbiotic-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "symbiotic-ethereum", + "query-id": "2Bp6ibq6y7LLUoZRi4AfPmDNLrMcM6pKJCbusMPCAvzr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "hyperlock-finance": { + "schema": "generic", + "base": "hyperlock-finance", + "protocol": "hyperlock-finance", + "project": "hyperlock-finance", + "deployments": { + "hyperlock-finance-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hyperlock.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hyperlock-finance-blast", + "query-id": "hyperlock-finance-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hyperlock-finance-blast", + "query-id": "tXk1UdCXjJkyvBRXvc5KvqGGZVSpdsdPoYrTAemT1kV", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "amphor": { + "schema": "generic", + "base": "amphor", + "protocol": "amphor", + "project": "amphor", + "deployments": { + "amphor-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "amphor.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "amphor-ethereum", + "query-id": "amphor-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "amphor-ethereum", + "query-id": "RkDsVce2tRzGWbNAeZJrRy7nLAmMWtxQ6ixerhhw581", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "zircuit-staking": { + "schema": "generic", + "base": "zircuit-staking", + "protocol": "zircuit-staking", + "project": "zircuit-staking", + "deployments": { + "zircuit-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zircuit.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "zircuit-staking-ethereum", + "query-id": "zircuit-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "zircuit-staking-ethereum", + "query-id": "AFZyi8H8ASMA3JzBf4d2eG3Ajxtx7mbD1H5G4Bpjn4ZD", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "lybra-finance": { + "schema": "generic", + "base": "lybra-finance", + "protocol": "lybra-finance", + "project": "lybra-finance", + "deployments": { + "lybra-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lybra.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lybra-finance-ethereum", + "query-id": "lybra-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "lybra-finance-ethereum", + "query-id": "2fNZY1J6FzuoHnx8ZTuhiEiM5AhzU3JiC7vp4UqaktSj", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stream-finance": { + "schema": "generic", + "base": "stream-finance", + "protocol": "stream-finance", + "project": "stream-finance", + "deployments": { + "stream-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stream.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stream-finance-ethereum", + "query-id": "stream-finance-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stream-finance-ethereum", + "query-id": "7wzhzJbytdHNsE12B3ascjZKhP8LvoVtuhXqZ97gz2Dr", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "umami-finance": { + "schema": "generic", + "base": "umami-finance", + "protocol": "umami-finance", + "project": "umami-finance", + "deployments": { + "umami-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "umami.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "umami-finance-arbitrum", + "query-id": "umami-finance-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "umami-finance-arbitrum", + "query-id": "3nfuRKwAnT5xEBtKT9cKhdCp517TDvEqhgY1eDKAtuZi", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "kelp-dao": { + "schema": "generic", + "base": "kelp-dao", + "protocol": "kelp-dao", + "project": "kelp-dao", + "deployments": { + "kelp-dao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kelp.dao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "kelp-dao-ethereum", + "query-id": "kelp-dao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "kelp-dao-ethereum", + "query-id": "BKAuuey1mAQimbeKHWHQTLkFHeSn4Z9cfSJcHBaYhrV2", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "chainlink-staking": { + "schema": "generic", + "base": "chainlink-staking", + "protocol": "chainlink-staking", + "project": "chainlink-staking", + "deployments": { + "chainlink-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "chainlink.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "chainlink-staking-ethereum", + "query-id": "chainlink-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "chainlink-staking-ethereum", + "query-id": "CEvNvcykaphaHuipRNsP5fd2LE75QLsFtLnofTcf6JZX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "liquid-collective": { + "schema": "generic", + "base": "liquid-collective", + "protocol": "liquid-collective", + "project": "liquid-collective", + "deployments": { + "liquid-collective-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "liquid.collective.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "liquid-collective-ethereum", + "query-id": "liquid-collective-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "liquid-collective-ethereum", + "query-id": "4kRPyZuhGgAcjYuVgbR79qm5WQ3TvXeaqVHRHx6MV5U7", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "binance-staked-eth": { + "schema": "generic", + "base": "binance-staked-eth", + "protocol": "binance-staked-eth", + "project": "binance-staked-eth", + "deployments": { + "binance-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "binance-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "binance-staked-eth-ethereum", + "query-id": "binance-staked-eth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "binance-staked-eth-ethereum", + "query-id": "EdxuQc4V8zGV9f34KZJhUNmBrfdPWMmbjVTzjUsyJZgd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "binance-staked-eth-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "binance-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "binance-staked-eth-bsc", + "query-id": "binance-staked-eth-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "binance-staked-eth-bsc", + "query-id": "Hfb8J7aNfT8cjgDTYMjWt5Mb7yRtS1CJC4UQeWEfWNsU", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "concentrator": { + "schema": "generic", + "base": "concentrator", + "protocol": "concentrator", + "project": "concentrator", + "deployments": { + "concentrator-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "concentrator.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "concentrator-ethereum", + "query-id": "concentrator-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "concentrator-ethereum", + "query-id": "FigcbmZouBnKctj6zqsvp1LhHiV1pZdVQ6ABrA27w3Lk", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "vaultka": { + "schema": "generic", + "base": "vaultka", + "protocol": "vaultka", + "project": "vaultka", + "deployments": { + "vaultka-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "vaultka.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vaultka-arbitrum", + "query-id": "vaultka-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "vaultka-arbitrum", + "query-id": "GerYgkkJgdtE5LoxqiqXrxJzjDrLWixEd7D3aqfDQBxe", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "benqi-staked-avax": { + "schema": "generic", + "base": "benqi-staked-avax", + "protocol": "benqi-staked-avax", + "project": "benqi-staked-avax", + "deployments": { + "benqi-staked-avax-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "benqi-staked-avax.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "benqi-staked-avax-avalanche", + "query-id": "benqi-staked-avax-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "benqi-staked-avax-avalanche", + "query-id": "6vSK9N1NGT65mRgMtNfoxwPkaMJoJBQJA2Z5G1fKEKCu", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stakestone": { + "schema": "generic", + "base": "stakestone", + "protocol": "stakestone", + "project": "stakestone", + "deployments": { + "stakestone-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakestone.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakestone-ethereum", + "query-id": "stakestone-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stakestone-ethereum", + "query-id": "Dks14vz78EJf4i5SomNUBcpoLRbFKrAD8imtMdUC37bg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "llama-airforce": { + "schema": "generic", + "base": "llama-airforce", + "protocol": "llama-airforce", + "project": "llama-airforce", + "deployments": { + "llama-airforce-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "llama.airforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "llama-airforce-ethereum", + "query-id": "llama-airforce-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "llama-airforce-ethereum", + "query-id": "C2EGJcZhx44BMaT9hJ2K2zjPGdYmrnuK7MusKEXaEPPH", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mellow-lrt": { + "schema": "generic", + "base": "mellow-lrt", + "protocol": "mellow-lrt", + "project": "mellow-lrt", + "deployments": { + "mellow-lrt-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mellow.lrt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "mellow-lrt-ethereum", + "query-id": "mellow-lrt-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mellow-lrt-ethereum", + "query-id": "B5asn3DbqssJhSevYyQQUPVrtoXqfnQBqNvp1En52wCY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "eigenpie": { + "schema": "generic", + "base": "eigenpie", + "protocol": "eigenpie", + "project": "eigenpie", + "deployments": { + "eigenpie-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "eigenpie.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "eigenpie-ethereum", + "query-id": "eigenpie-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "eigenpie-ethereum", + "query-id": "BbkLSUBpyJv8UiCyMyQBGpngz8qfdhx4LJBqFdHqiwhH", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "prime-staked-eth": { + "schema": "generic", + "base": "prime-staked-eth", + "protocol": "prime-staked-eth", + "project": "prime-staked-eth", + "deployments": { + "prime-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "prime.staked.eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "prime-staked-eth-ethereum", + "query-id": "prime-staked-eth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "prime-staked-eth-ethereum", + "query-id": "222GCE8sewRURAfh7meRbkyNE9NNG2HqfVfYmfFg9MkR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "coinbase-wrapped-staked-eth": { + "schema": "generic", + "base": "coinbase-wrapped-staked-eth", + "protocol": "coinbase-wrapped-staked-eth", + "project": "coinbase-wrapped-staked-eth", + "deployments": { + "coinbase-wrapped-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "coinbase-wrapped-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "coinbase-wsteth-ethereum", + "query-id": "coinbase-wsteth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "coinbase-wsteth-ethereum", + "query-id": "4bPFmTTqoKZcQL8DXj8jBbo86pm4RisAQeuGhZKkvA9X", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "slisbnb": { + "schema": "generic", + "base": "slisbnb", + "protocol": "slisbnb", + "project": "slisbnb", + "deployments": { + "slisbnb-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "slisbnb.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "slisbnb-bsc", + "query-id": "slisbnb-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "slisbnb-bsc", + "query-id": "7Ptuvapgqo21jvcH2dquePfmfpEwENFHERN48pKptZf3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "bedrock-unieth": { + "schema": "generic", + "base": "bedrock-unieth", + "protocol": "bedrock-unieth", + "project": "bedrock-unieth", + "deployments": { + "bedrock-unieth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bedrock.unieth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bedrock-unieth-ethereum", + "query-id": "bedrock-unieth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bedrock-unieth-ethereum", + "query-id": "69xran7p1VnLJoLrC7g5jeGTWsEkMD5kNqhYaEPbAzx6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "origin-ether": { + "schema": "generic", + "base": "origin-ether", + "protocol": "origin-ether", + "project": "origin-ether", + "deployments": { + "origin-ether-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "origin.ether.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "origin-ether-ethereum", + "query-id": "origin-ether-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "origin-ether-ethereum", + "query-id": "EYpKTVtNYaVN3LfDi1BCQBxhhUq53BTWcbExDt53cH75", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "node-dao": { + "schema": "generic", + "base": "node-dao", + "protocol": "node-dao", + "project": "node-dao", + "deployments": { + "node-dao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "node.dao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "node-dao-ethereum", + "query-id": "node-dao-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "node-dao-ethereum", + "query-id": "FfhhdxuMRwc7R2dBZd4MH4NZKRwZm5rqEFzY4XDoEq6x", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "dinero-pxeth": { + "schema": "generic", + "base": "dinero-pxeth", + "protocol": "dinero-pxeth", + "project": "dinero-pxeth", + "deployments": { + "dinero-pxeth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dinero-pxeth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "dinero-pxeth-ethereum", + "query-id": "dinero-pxeth-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "dinero-pxeth-ethereum", + "query-id": "4WV13q7iDBhFyqprdbFX5eb2h29Qh6c7aVuCjUHX8148", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stake-link-liquid": { + "schema": "generic", + "base": "stake-link-liquid", + "protocol": "stake-link-liquid", + "project": "stake-link-liquid", + "deployments": { + "stake-link-liquid-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stake-link-liquid.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stake-link-liquid-ethereum", + "query-id": "stake-link-liquid-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stake-link-liquid-ethereum", + "query-id": "AV8BsSRc9oC4dr6yN7wPi4PyXsBnW3oHqbvoKfbEr1XW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gogopool": { + "schema": "generic", + "base": "gogopool", + "protocol": "gogopool", + "project": "gogopool", + "deployments": { + "gogopool-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gogopool.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gogopool-avalanche", + "query-id": "gogopool-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gogopool-avalanche", + "query-id": "4fD8jH8YUR4HSyQZArgyX5RVvgPLoG6H1stzUeHSNBne", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gaurda-staking": { + "schema": "generic", + "base": "gaurda-staking", + "protocol": "gaurda-staking", + "project": "gaurda-staking", + "deployments": { + "gaurda-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gaurda-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gaurda-staking-ethereum", + "query-id": "gaurda-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gaurda-staking-ethereum", + "query-id": "7Ax8MpZkfR5CnQFKRxUEGG8TuyrW5UwxohXC8opnqZ7j", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tenderize-v2": { + "schema": "generic", + "base": "tenderize-v2", + "protocol": "tenderize-v2", + "project": "tenderize-v2", + "deployments": { + "tenderize-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tenderize-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tenderize-v2-ethereum", + "query-id": "tenderize-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tenderize-v2-ethereum", + "query-id": "7dyhXtGrSebgffTAduYLzbdef1EQwDWEULnVogeTDmfG", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "tenderize-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tenderize-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tenderize-v2-arbitrum", + "query-id": "tenderize-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tenderize-v2-arbitrum", + "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tensorplex": { + "schema": "generic", + "base": "tensorplex", + "protocol": "tensorplex", + "project": "tensorplex", + "deployments": { + "tensorplex-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tensorplex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tensorplex-ethereum", + "query-id": "tensorplex-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tensorplex-ethereum", + "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "paxos-gold": { + "schema": "generic", + "base": "paxos-gold", + "protocol": "paxos-gold", + "project": "paxos-gold", + "deployments": { + "paxos-gold-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "paxos-gold.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "paxos-gold-ethereum", + "query-id": "paxos-gold-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "paxos-gold-ethereum", + "query-id": "3GYHnRz961CsPut6udWqaVdDJN7imKZWjBqfyzaAbPri", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "tether-gold": { + "schema": "generic", + "base": "tether-gold", + "protocol": "tether-gold", + "project": "tether-gold", + "deployments": { + "tether-gold-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tether-gold.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tether-gold-ethereum", + "query-id": "tether-gold-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "tether-gold-ethereum", + "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aurus": { + "schema": "generic", + "base": "aurus", + "protocol": "aurus", + "project": "aurus", + "deployments": { + "aurus-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aurus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aurus-ethereum", + "query-id": "aurus-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aurus-ethereum", + "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "klimadao": { + "schema": "generic", + "base": "klimadao", + "protocol": "klimadao", + "project": "klimadao", + "deployments": { + "klimadao-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "klimadao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "klimadao-polygon", + "query-id": "klimadao-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "klimadao-polygon", + "query-id": "6SasXXKVoVSFEJqEGQqUQMEL2nufjaapbNuzE7tDCuu8", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "matrixdock": { + "schema": "generic", + "base": "matrixdock", + "protocol": "matrixdock", + "project": "matrixdock", + "deployments": { + "matrixdock-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "matrixdock.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "matrixdock-ethereum", + "query-id": "matrixdock-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "matrixdock-ethereum", + "query-id": "CAKvXVz7dzbF5HH4MVWXi1ozhCm1omWpmYk4n2s56tjJ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "powh3d": { + "schema": "generic", + "base": "powh3d", + "protocol": "powh3d", + "project": "powh3d", + "deployments": { + "powh3d-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "powh3d.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "powh3d-ethereum", + "query-id": "powh3d-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "powh3d-ethereum", + "query-id": "83e1tomqiwGsM2LehC4MpUUxCQKvRNk92dk6AL21oit4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "nexus-mutual": { + "schema": "generic", + "base": "nexus-mutual", + "protocol": "nexus-mutual", + "project": "nexus-mutual", + "deployments": { + "nexus-mutual-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "nexus-mutual.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "nexus-mutual-ethereum", + "query-id": "nexus-mutual-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "nexus-mutual-ethereum", + "query-id": "FMtuHz5h9uDsTo6Z4ZXg4zgCBrsHPqFhbSBiTjgZV1AQ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "yieldyak-staked-avax": { + "schema": "generic", + "base": "yieldyak-staked-avax", + "protocol": "yieldyak-staked-avax", + "project": "yieldyak-staked-avax", + "deployments": { + "yieldyak-staked-avax-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldyak-staked-avax.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldyak-staked-avax-avalanche", + "query-id": "yieldyak-staked-avax-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yieldyak-staked-avax-avalanche", + "query-id": "DFD6o4jyHAXnrEHNZv45JHEJJAwq9atyyCoJ2oq8spc1", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "blackwing": { + "schema": "generic", + "base": "blackwing", + "protocol": "blackwing", + "project": "blackwing", + "deployments": { + "blackwing-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-ethereum", + "query-id": "blackwing-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "blackwing-ethereum", + "query-id": "G3scLRUbu9bGGs1JwPU4yUw3JKDBi1YYVee2rwU39MeP", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "blackwing-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-arbitrum", + "query-id": "blackwing-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "blackwing-arbitrum", + "query-id": "BbgxhvZhDAW2HjDLFdUucHjYYLFmVHivitbyyK21MNer", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "blackwing-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-bsc", + "query-id": "blackwing-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "blackwing-bsc", + "query-id": "9PZ1rE37Krm2AtwRPaDovCqjMuAYjLAgSJZruowofv16", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "creth2": { + "schema": "generic", + "base": "creth2", + "protocol": "creth2", + "project": "creth2", + "deployments": { + "creth2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "creth2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "creth2-ethereum", + "query-id": "creth2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "cream-eth-2-ethereum", + "query-id": "8aXEEhktu4zb1qv388ZgP1GggJUY1btKVoqm1S1mGHmY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stcelo": { + "schema": "generic", + "base": "stcelo", + "protocol": "stcelo", + "project": "stcelo", + "deployments": { + "stcelo-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stcelo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stcelo-celo", + "query-id": "stcelo-celo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "staked-celo-celo", + "query-id": "DrXwENbuEpbJ7EHZqdEjYqeoPGSYWC35oVWuZ6LyaW3j", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "hord-fi": { + "schema": "generic", + "base": "hord-fi", + "protocol": "hord-fi", + "project": "hord-fi", + "deployments": { + "hord-fi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hord-fi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "hord-fi-ethereum", + "query-id": "hord-fi-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "hord-fi-ethereum", + "query-id": "En1soX984KfBh45TBcEVH7B2AaPxCoHAo4vEwJ2sfnx4", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "anzen-v2": { + "schema": "generic", + "base": "anzen-v2", + "protocol": "anzen-v2", + "project": "anzen-v2", + "deployments": { + "anzen-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-ethereum", + "query-id": "anzen-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "anzen-v2-ethereum", + "query-id": "FWbueBconwHjZpu7AJRAV6fx8n8dGnZ3uDkCtMgByuwu", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "anzen-v2-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-base", + "query-id": "anzen-v2-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "anzen-v2-base", + "query-id": "CbQHFSCr7XjAAQ1mUmNHSS2AQGrzxst5z3igTUsZMyhN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "anzen-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-arbitrum", + "query-id": "anzen-v2-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "anzen-v2-arbitrum", + "query-id": "6sArjf9NeQYBKABesaYjXnKP1r6iNuD4VudCDNrHrsR5", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "anzen-v2-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-blast", + "query-id": "anzen-v2-blast", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "anzen-v2-blast", + "query-id": "4mqq4fNs2rfnSUfv97efYiLK4ZviJsyiqBVxVmEFjibo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mev-protocol": { + "schema": "generic", + "base": "mev-protocol", + "protocol": "mev-protocol", + "project": "mev-protocol", + "deployments": { + "mev-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mev-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mev-protocol-ethereum", + "query-id": "mev-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mev-protocol-ethereum", + "query-id": "357GA1eUz5JZzi8GKT5jZmvt3qpNBUqWmffqFWBQi7Cg", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "geode": { + "schema": "generic", + "base": "geode", + "protocol": "geode", + "project": "geode", + "deployments": { + "geode-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "geode.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "geode-avalanche", + "query-id": "geode-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "geode-avalanche", + "query-id": "Fzef5CZEkTbGuL4n852JBKDtYT9jYJ5TfVDZGnSaPCsw", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "beethovenx-sftmx": { + "schema": "generic", + "base": "beethovenx-sftmx", + "protocol": "beethovenx-sftmx", + "project": "beethovenx-sftmx", + "deployments": { + "beethovenx-sftmx-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "beethovenx-sftmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethovenx-sftmx-fantom", + "query-id": "beethovenx-sftmx-fantom", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "beethovenx-sftmx-fantom", + "query-id": "4XjrnBJegUimJGGop2Nxfqj1H45TGwhXSGR7GvzG9keT", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "stakewise-v2": { + "schema": "generic", + "base": "stakewise-v2", + "protocol": "stakewise-v2", + "project": "stakewise-v2", + "deployments": { + "stakewise-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakewise-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakewise-v2-ethereum", + "query-id": "stakewise-v2-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stakewise-v2-ethereum", + "query-id": "2vmnaGa7TjrKP9Q6ncbV5WvFvEJMvAHgMAQaMpFnTmpS", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "stakewise-v2-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakewise-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakewise-v2-gnosis", + "query-id": "stakewise-v2-gnosis", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "stakewise-v2-gnosis", + "query-id": "3RMneHsDkc3e9J2HeqNezZ2hssGm8Kmuknsy5kiqEtfv", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "suzaku": { + "schema": "generic", + "base": "suzaku", + "protocol": "suzaku", + "project": "suzaku", + "deployments": { + "suzaku-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "suzaku.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "suzaku-avalanche", + "query-id": "suzaku-avalanche", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "suzaku-avalanche", + "query-id": "ChnR9QwW6tzKt2hbuHLmHqeB1Sk35UzR1XDbxYBA3cvW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "deq": { + "schema": "generic", + "base": "deq", + "protocol": "deq", + "project": "deq", + "deployments": { + "deq-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "deq.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "deq-ethereum", + "query-id": "deq-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "deq-fi-ethereum", + "query-id": "D1b2w9gpsw5ta9kitgg1x5it7vjuYBSQSxGPzUJCE6LT", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aspida": { + "schema": "generic", + "base": "aspida", + "protocol": "aspida", + "project": "aspida", + "deployments": { + "aspida-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aspida.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aspida-ethereum", + "query-id": "aspida-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aspida-ethereum", + "query-id": "BC9v6SDtvEhrruVW8mfX6ydWWH9CDEM8UCmZvJ4QSHiN", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "yieldnest": { + "schema": "generic", + "base": "yieldnest", + "protocol": "yieldnest", + "project": "yieldnest", + "deployments": { + "yieldnest-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldnest.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldnest-ethereum", + "query-id": "yieldnest-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yieldnest-ethereum", + "query-id": "EHG4qyPLWv4fhXHxa7hiqsaVoWFEiaDvB7pe3CzN6jL6", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "yieldnest-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldnest.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldnest-bsc", + "query-id": "yieldnest-bsc", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "yieldnest-bsc", + "query-id": "BH5pBHMxeNBzvsCnZuzJxi4kjrbyAsF5CyREGaV99gqR", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "inception": { + "schema": "generic", + "base": "inception", + "protocol": "inception", + "project": "inception", + "deployments": { + "inception-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "inception.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "inception-ethereum", + "query-id": "inception-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "inception-ethereum", + "query-id": "8BKHkTqYumCog3xwVfhPL99pRbddk5xdL3P1k5xkSbgM", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "aqua-patina": { + "schema": "generic", + "base": "aqua-patina", + "protocol": "aqua-patina", + "project": "aqua-patina", + "deployments": { + "aqua-patina-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aqua-patina.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aqua-patina-ethereum", + "query-id": "aqua-patina-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "aqua-patina-ethereum", + "query-id": "4FBKKFiCv9bk3ggBamDtEuL9gNtE7Wuef4AYpASYpgGX", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "affine-restaking": { + "schema": "generic", + "base": "affine-restaking", + "protocol": "affine-restaking", + "project": "affine-restaking", + "deployments": { + "affine-restaking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "affine-restaking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "affine-restaking-ethereum", + "query-id": "affine-restaking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "affine-restaking-ethereum", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "affine-restaking-linea": { + "network": "linea", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "affine-restaking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "affine-restaking-linea", + "query-id": "affine-restaking-linea", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "affine-restaking-linea", + "query-id": "FK525H2L7hunrwYytG8vEN3qBUqbZE4AHXVRWKWpLnJV", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "kernel-protocol": { + "schema": "generic", + "base": "kernel-protocol", + "protocol": "kernel-protocol", + "project": "kernel-protocol", + "deployments": { + "kernel-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kernel-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "kernel-protocol-ethereum", + "query-id": "kernel-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "kernel-protocol-ethereum", + "query-id": "BPPmqYgnXQoUfZYhVhtCT4btU81BwrrEwPBeR9rotSJD", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "mountain-protocol": { + "schema": "generic", + "base": "mountain-protocol", + "protocol": "mountain-protocol", + "project": "mountain-protocol", + "deployments": { + "mountain-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-ethereum", + "query-id": "mountain-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mountain-protocol-ethereum", + "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "mountain-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-arbitrum", + "query-id": "mountain-protocol-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mountain-protocol-arbitrum", + "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "mountain-protocol-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-base", + "query-id": "mountain-protocol-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mountain-protocol-base", + "query-id": "j3sSJTsVHhmBBktg63cPKxYqchRVhLKdJrJVAoWfLUn", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "mountain-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-optimism", + "query-id": "mountain-protocol-optimism", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mountain-protocol-optimism", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "mountain-protocol-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-polygon", + "query-id": "mountain-protocol-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "mountain-protocol-polygon", + "query-id": "Gs7wJLxSNywuKdNYKA3Y1SdDDcUYJxd5kr6RAKqVTKvW", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "flat-money": { + "schema": "generic", + "base": "flat-money", + "protocol": "flat-money", + "project": "flat-money", + "deployments": { + "flat-money-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "flat-money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "flat-money-base", + "query-id": "flat-money-base", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "flat-money-base", + "query-id": "G7ap2BncLoDoWj2U7Ak8oB1TBFyQbEYPT51d6fDnPkVb", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "usual": { + "schema": "generic", + "base": "usual", + "protocol": "usual", + "project": "usual", + "deployments": { + "usual-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "usual.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "usual-ethereum", + "query-id": "usual-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "usual-ethereum", + "query-id": "6wn8aUC32emwyKpDd2pStwCwqcWvXYHPuhkcN3RyQsBZ", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "spiko": { + "schema": "generic", + "base": "spiko", + "protocol": "spiko", + "project": "spiko", + "deployments": { + "spiko-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spiko.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiko-ethereum", + "query-id": "spiko-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spiko-ethereum", + "query-id": "GMmo43Rn5SZRJUawpifZ2C3g8tet8kwv8qVsrAyQabxq", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "spiko-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spiko.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiko-polygon", + "query-id": "spiko-polygon", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "spiko-polygon", + "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "gudchain": { + "schema": "generic", + "base": "gudchain", + "protocol": "gudchain", + "project": "gudchain", + "deployments": { + "gudchain-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gudchain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gudchain-ethereum", + "query-id": "gudchain-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "gudchain-ethereum", + "query-id": "G7BnX3TE7hvyggLTUvynnmVYqnCWrQHAvFCADqKWxHBh", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "superseed": { + "schema": "generic", + "base": "superseed", + "protocol": "superseed", + "project": "superseed", + "deployments": { + "superseed-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "superseed.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "superseed-ethereum", + "query-id": "superseed-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "superseed-ethereum", + "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "bracket-escrow-staking": { + "schema": "generic", + "base": "bracket-escrow-staking", + "protocol": "bracket-escrow-staking", + "project": "bracket-escrow-staking", + "deployments": { + "bracket-escrow-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bracket-escrow-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bracket-escrow-staking-ethereum", + "query-id": "bracket-escrow-staking-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bracket-escrow-staking-ethereum", + "query-id": "E8Vc24QPWdT2pW14erM8M3vXTWMZon4DUJ8vqSbngcZt", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + }, + "bracket-escrow-staking-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bracket-escrow-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bracket-escrow-staking-arbitrum", + "query-id": "bracket-escrow-staking-arbitrum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bracket-escrow-staking-arbitrum", + "query-id": "9kVpuw3Cgf6NQckem8SXH7TQGXsJ8Hb8Zm6mQF7eaiyd", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "ora-protocol": { + "schema": "generic", + "base": "ora-protocol", + "protocol": "ora-protocol", + "project": "ora-protocol", + "deployments": { + "ora-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ora-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "ora-protocol-ethereum", + "query-id": "ora-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "ora-protocol-ethereum", + "query-id": "J1h9wtEcAfi32mTbNq4zQASGZJyidvEGXzi7HV8GxveF", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "iguanadex-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "iguanadex-v3", + "project": "iguanadex", + "deployments": { + "iguanadex-v3-etherlink-mainnet": { + "network": "etherlink-mainnet", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iguanadexV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "iguanadex-v3-etherlink-mainnet", + "query-id": "iguanadex-v3-etherlink-mainnet", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "iguanadex-v3-etherlink-mainnet", + "query-id": "DNp3H73UxzbLMbK9sTr3MC2oLwF27aa6ptM7aYzsgxmt", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "superlend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "superlend", + "project": "superlend", + "deployments": { + "superlend-etherlink-mainnet": { + "network": "etherlink-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "superlend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "superlend-etherlink-mainnet", + "query-id": "superlend-etherlink-mainnet", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "superlend-etherlink-mainnet", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "bob-fusion": { + "schema": "generic", + "base": "bob-fusion", + "protocol": "bob-fusion", + "project": "bob-fusion", + "deployments": { + "bob-fusion-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bob-fusion.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bob-fusion-ethereum", + "query-id": "bob-fusion-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "bob-fusion-ethereum", + "query-id": "FJCXWb8Z4n59Hkv9XsadRDyWcQE2GUh5GzJ1sPagU1r3", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "fx-protocol": { + "schema": "generic", + "base": "fx-protocol", + "protocol": "fx-protocol", + "project": "fx-protocol", + "deployments": { + "fx-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "fx.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "fx-protocol-ethereum", + "query-id": "fx-protocol-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "fx-protocol-ethereum", + "query-id": "todo", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + }, + "m0-power": { + "schema": "generic", + "base": "m0-power", + "protocol": "m0-power", + "project": "m0-power", + "deployments": { + "m0-power-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "m0.power.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "m0-power-ethereum", + "query-id": "m0-power-ethereum", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + }, + "decentralized-network": { + "slug": "m0-power-ethereum", + "query-id": "TODO", + "health": [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + "synced": false, + "indexed-percentage": "N/A", + "has-been-enhanced": true + } + ] + } + } + } + } + } +} diff --git a/dashboard/src/deployment.json b/dashboard/src/deployment.json new file mode 100644 index 0000000000..7665f4b048 --- /dev/null +++ b/dashboard/src/deployment.json @@ -0,0 +1,14144 @@ +{ + "abracadabra": { + "schema": "lending", + "base": "abracadabra", + "protocol": "abracadabra", + "project": "abracadabra", + "deployments": { + "abracadabra-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-arbitrum", + "query-id": "abracadabra-money-arbitrum" + }, + "decentralized-network": { + "slug": "abracadabra-money-arbitrum", + "query-id": "3m97d2dJ2pXwPFuiHrm8T37V9TCoAHBpMqRwdguyUZXF" + } + } + }, + "abracadabra-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-avalanche", + "query-id": "abracadabra-money-avalanche" + }, + "decentralized-network": { + "slug": "abracadabra-money-avalanche", + "query-id": "3Gkei7B24o9C2bCoAbQpApZqMStPta7oCAnNhmNv5dab" + } + } + }, + "abracadabra-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-bsc", + "query-id": "abracadabra-money-bsc" + }, + "decentralized-network": { + "slug": "abracadabra-money-bsc", + "query-id": "6bFCfHn5Uuv5fH7PxKL12dzWh3zz7fkQ46EnMa7nZUj2" + } + } + }, + "abracadabra-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-fantom", + "query-id": "abracadabra-money-fantom" + }, + "decentralized-network": { + "slug": "abracadabra-money-fantom", + "query-id": "2nxGrxxPShrm49dEWusJjB5dpmonN16JFzLwDrS1pCyq" + } + } + }, + "abracadabra-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "abracadabra.money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "abracadabra-money-ethereum", + "query-id": "abracadabra-money-ethereum" + }, + "decentralized-network": { + "slug": "abracadabra-money-ethereum", + "query-id": "GLAu42kvVs7ixfXcmkAsRiS7Xt1NCpgkKsnz3qiriuvV" + } + } + } + } + }, + "aave-arc": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-arc", + "project": "aave", + "deployments": { + "aave-arc-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.arc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-arc-ethereum", + "query-id": "aave-arc-ethereum" + }, + "decentralized-network": { + "slug": "aave-arc-ethereum", + "query-id": "5hyqnEzjZbwFBU1rk4JBknCeiF2Mj93qBzsyQfpAa3QA" + } + } + } + } + }, + "aave-amm": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-amm", + "project": "aave", + "deployments": { + "aave-amm-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.amm.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-amm-ethereum", + "query-id": "aave-amm-ethereum" + }, + "decentralized-network": { + "slug": "aave-amm-ethereum", + "query-id": "41ooPWnDYKwckqyG1mvg7ZEndy5zMemXinx6uQxscrBS" + } + } + } + } + }, + "aave-rwa": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-rwa", + "project": "aave", + "deployments": { + "aave-rwa-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.rwa.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-rwa-ethereum", + "query-id": "aave-rwa-ethereum" + }, + "decentralized-network": { + "slug": "aave-rwa-ethereum", + "query-id": "C8ynQrjVKcmqxb9fWrLvSCBFNf2ChFkxCg7Q8gknJrza" + } + } + } + } + }, + "aave-v2": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-v2", + "project": "aave", + "deployments": { + "aave-v2-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-avalanche", + "query-id": "aave-v2-avalanche" + }, + "decentralized-network": { + "slug": "aave-v2-avalanche", + "query-id": "9nh6Ums63wFcoZpmegyPcAFtY3CAzQc3S6cuERALYMqa" + } + } + }, + "aave-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-ethereum", + "query-id": "aave-v2-ethereum" + }, + "decentralized-network": { + "slug": "aave-v2-ethereum", + "query-id": "C2zniPn45RnLDGzVeGZCx2Sw3GXrbc9gL4ZfL8B8Em2j" + } + } + }, + "aave-v2-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v2-polygon", + "query-id": "aave-v2-polygon" + }, + "decentralized-network": { + "slug": "aave-v2-polygon", + "query-id": "GrZQJ7sWdTqiNUD8Vh2THaeBM4wGwiF8mFv9FBfyzwxm" + } + } + } + } + }, + "aave-v3": { + "schema": "lending", + "base": "aave-forks", + "protocol": "aave-v3", + "project": "aave", + "deployments": { + "aave-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.3", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-arbitrum", + "query-id": "aave-v3-arbitrum" + }, + "decentralized-network": { + "slug": "aave-v3-arbitrum", + "query-id": "4xyasjQeREe7PxnF6wVdobZvCw5mhoHZq3T7guRpuNPf" + } + } + }, + "aave-v3-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-avalanche", + "query-id": "aave-v3-avalanche" + }, + "decentralized-network": { + "slug": "aave-v3-avalanche", + "query-id": "72Cez54APnySAn6h8MswzYkwaL9KjvuuKnKArnPJ8yxb" + } + } + }, + "aave-v3-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-fantom", + "query-id": "aave-v3-fantom" + }, + "decentralized-network": { + "slug": "aave-v3-fantom", + "query-id": "ZcLcVKJNQboeqACXhGuL3WFLBZzf5uUWheNsaFvLph6" + } + } + }, + "aave-v3-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-harmony", + "query-id": "aave-v3-harmony" + }, + "decentralized-network": { + "slug": "aave-v3-harmony", + "query-id": "G1BNHqmteZiUwSEacfXG2nzMm13KLNo5xoxv62ErAyQv" + } + } + }, + "aave-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-polygon", + "query-id": "aave-v3-polygon" + }, + "decentralized-network": { + "slug": "aave-v3-polygon", + "query-id": "6yuf1C49aWEscgk5n9D1DekeG1BCk5Z9imJYJT3sVmAT" + } + } + }, + "aave-v3-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-optimism", + "query-id": "aave-v3-optimism" + }, + "decentralized-network": { + "slug": "aave-v3-optimism", + "query-id": "3RWFxWNstn4nP3dXiDfKi9GgBoHx7xzc7APkXs1MLEgi" + } + } + }, + "aave-v3-metis": { + "network": "metis", + "status": "dev", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-metis", + "query-id": "aave-v3-metis" + } + } + }, + "aave-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-ethereum", + "query-id": "aave-v3-ethereum" + }, + "decentralized-network": { + "slug": "aave-v3-ethereum", + "query-id": "JCNWRypm7FYwV8fx5HhzZPSFaMxgkPuw4TnR3Gpi81zk" + } + } + }, + "aave-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-base", + "query-id": "aave-v3-base" + }, + "decentralized-network": { + "slug": "aave-v3-base", + "query-id": "D7mapexM5ZsQckLJai2FawTKXJ7CqYGKM8PErnS3cJi9" + } + } + }, + "aave-v3-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-gnosis", + "query-id": "aave-v3-gnosis" + }, + "decentralized-network": { + "slug": "aave-v3-gnosis", + "query-id": "GiNMLDxT1Bdn2dQZxjQLmW24uwpc3geKUBW8RP6oEdg" + } + } + }, + "aave-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-bsc", + "query-id": "aave-v3-bsc" + }, + "decentralized-network": { + "slug": "aave-v3-bsc", + "query-id": "43jbGkvSw55sMvYyF6MZieksmJbajMu3hNGF8PN9ucuP" + } + } + }, + "aave-v3-scroll": { + "network": "scroll", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-v3-scroll", + "query-id": "aave-v3-scroll" + }, + "decentralized-network": { + "slug": "aave-v3-scroll", + "query-id": "DkvXMxq1skgSe1ehLHWpiUthHU1znnMDK2SUmj9avhEX" + } + } + } + } + }, + "seamless-protocol": { + "schema": "lending", + "base": "aave-forks", + "protocol": "seamless-protocol", + "project": "seamless-protocol", + "deployments": { + "seamless-protocol-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "seamless-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "seamless-protocol-base", + "query-id": "seamless-protocol-base" + }, + "decentralized-network": { + "slug": "seamless-protocol-base", + "query-id": "2u4mWUV4xS19ef1MbnxZHWLLMwdPxtVifH46JbonXwXP" + } + } + } + } + }, + "kinza-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "kinza-finance", + "project": "kinza-finance", + "deployments": { + "kinza-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kinza.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "kinza-finance-bsc", + "query-id": "kinza-finance-bsc" + }, + "decentralized-network": { + "slug": "kinza-finance-bsc", + "query-id": "435cubRAqNsFYKzyQHRRiHvR7oJjh828r5Aqe4cZC586" + } + } + } + } + }, + "seismic": { + "schema": "lending", + "base": "aave-forks", + "protocol": "seismic", + "project": "seismic", + "deployments": { + "seismic-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "seismic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "seismic-blast", + "query-id": "seismic-blast" + }, + "decentralized-network": { + "slug": "seismic-blast", + "query-id": "d7gMk1zkEyCQuNVeirBYA6keCZv8hTLheCZ4DBCjRfz" + } + } + } + } + }, + "pac-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "pac-finance", + "project": "pac-finance", + "deployments": { + "pac-finance-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pac.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "pac-finance-blast", + "query-id": "pac-finance-blast" + }, + "decentralized-network": { + "slug": "pac-finance-blast", + "query-id": "ERsfyKMQTpTEN6LtyWvFwhDENLf6aAAggbtrNEnFKLpx" + } + } + } + } + }, + "zerolend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "zerolend", + "project": "zerolend", + "deployments": { + "zerolend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-ethereum", + "query-id": "zerolend-ethereum" + }, + "decentralized-network": { + "slug": "zerolend-ethereum", + "query-id": "4Zf4doH54RDit9KVsfCp3MkjrP3szhJZwvw2z5PHczx9" + } + } + }, + "zerolend-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-blast", + "query-id": "zerolend-blast" + }, + "decentralized-network": { + "slug": "zerolend-blast", + "query-id": "6JP9542ArawumBSYczerbWGu6k7uu3hqk6qJnSkrgTM5" + } + } + }, + "zerolend-zksync-era": { + "network": "zksync-era", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-zksync-era", + "query-id": "zerolend-zksync-era" + }, + "decentralized-network": { + "slug": "zerolend-zksync-era", + "query-id": "3CHaJvCkTMqXa4PRKNshVecE9JqgNFCdsXNyGLZXFeM2" + } + } + }, + "zerolend-linea": { + "network": "linea", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-linea", + "query-id": "zerolend-linea" + }, + "decentralized-network": { + "slug": "zerolend-linea", + "query-id": "DLzwo1WFaKy7R7MgQWrnBXr19EbGwPRubu9YmsSmRMfC" + } + } + }, + "zerolend-xlayer": { + "network": "xlayer-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zerolend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "zerolend-xlayer", + "query-id": "zerolend-xlayer" + }, + "decentralized-network": { + "slug": "zerolend-xlayer", + "query-id": "NRh6ScvPKoieeSH7tRiKyXJ97DR9aYraas8eREPQ8e3" + } + } + } + } + }, + "alpaca-finance-lending": { + "schema": "lending", + "base": "alpaca-finance-lending", + "protocol": "alpaca-finance-lending", + "project": "alpaca", + "deployments": { + "alpaca-finance-lending-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "alpaca.finance.lending.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "alpaca-finance-lending-bsc", + "query-id": "alpaca-finance-lending-bsc" + }, + "decentralized-network": { + "slug": "alpaca-finance-lending-bsc", + "query-id": "ED3ayhcLA7h7DCGwbysgcxtfMEcoeYCdMEsdZJeoaUFS" + } + } + }, + "alpaca-finance-lending-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "alpaca.finance.lending.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "alpaca-finance-lending-fantom", + "query-id": "alpaca-finance-lending-fantom" + }, + "decentralized-network": { + "slug": "alpaca-finance-lending-fantom", + "query-id": "6EfFr7xDpD7LLi1X8Cj9b6ytjFjX3GZYrMrCKomEuCmx" + } + } + } + } + }, + "arrakis-finance": { + "schema": "yield-aggregator", + "base": "arrakis-finance", + "protocol": "arrakis-finance", + "project": "arrakis", + "deployments": { + "arrakis-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-ethereum", + "query-id": "arrakis-finance-ethereum" + }, + "decentralized-network": { + "slug": "arrakis-finance-ethereum", + "query-id": "GnroBYmeLLtKuHNyTNS38hzKki5n4CWaHeaMRqZpU4cr" + } + } + }, + "arrakis-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-optimism", + "query-id": "arrakis-finance-optimism" + }, + "decentralized-network": { + "slug": "arrakis-finance-optimism", + "query-id": "6yqMWioX8XNx2aMDYJGnvrVQWNrZfgBzY3ee1RmkXh5Z" + } + } + }, + "arrakis-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arrakis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arrakis-finance-polygon", + "query-id": "arrakis-finance-polygon" + }, + "decentralized-network": { + "slug": "arrakis-finance-polygon", + "query-id": "9YGjubD69wpCHyMMadVJv9eABKKUMWyBGYkZHVFEeWM8" + } + } + } + } + }, + "convex-finance": { + "schema": "yield-aggregator", + "base": "convex-finance", + "protocol": "convex-finance", + "project": "convex", + "deployments": { + "convex-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "convex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "convex-finance-ethereum", + "query-id": "convex-finance-ethereum" + }, + "decentralized-network": { + "slug": "convex-finance-ethereum", + "query-id": "7rFZ2x6aLQ7EZsNx8F5yenk4xcqwqR3Dynf9rdixCSME" + } + } + } + } + }, + "balancer-v2": { + "schema": "dex-amm", + "base": "balancer-forks", + "protocol": "balancer-v2", + "project": "balancer", + "deployments": { + "balancer-v2-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-arbitrum", + "query-id": "balancer-v2-arbitrum" + } + } + }, + "balancer-v2-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-polygon", + "query-id": "balancer-v2-polygon" + } + } + }, + "balancer-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "balancer.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "balancer-v2-ethereum", + "query-id": "balancer-v2-ethereum" + }, + "decentralized-network": { + "slug": "balancer-v2-ethereum", + "query-id": "794H6CNzdGF5YfBK9nPsUgGn7EBbdJSCTjgcKPEPyFnn" + } + } + } + } + }, + "beethoven-x": { + "schema": "dex-amm", + "base": "balancer-forks", + "protocol": "beethoven-x", + "project": "balancer", + "deployments": { + "beethoven-x-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "beethoven.x.fantom.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethoven-x-fantom", + "query-id": "beethoven-x-fantom" + } + } + }, + "beethoven-x-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "beethoven.x.optimism.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethoven-x-optimism", + "query-id": "beethoven-x-optimism" + } + } + } + } + }, + "beefy-finance": { + "schema": "yield-aggregator", + "base": "beefy-finance", + "protocol": "beefy-finance", + "project": "beefy", + "deployments": { + "beefy-finance-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.arbitrum.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-arbitrum", + "query-id": "beefy-finance-arbitrum" + } + } + }, + "beefy-finance-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.avalanche.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-avalanche", + "query-id": "beefy-finance-avalanche" + } + } + }, + "beefy-finance-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.aurora.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-aurora", + "query-id": "beefy-finance-aurora" + } + } + }, + "beefy-finance-celo": { + "network": "celo", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.celo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-celo", + "query-id": "beefy-finance-celo" + } + } + }, + "beefy-finance-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.fantom.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-fantom", + "query-id": "beefy-finance-fantom" + } + } + }, + "beefy-finance-fuse": { + "network": "fuse", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-fuse", + "query-id": "beefy-finance-fuse" + } + } + }, + "beefy-finance-harmony": { + "network": "harmony", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.harmony.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-harmony", + "query-id": "beefy-finance-harmony" + } + } + }, + "beefy-finance-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.moonbeam.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-moonbeam", + "query-id": "beefy-finance-moonbeam" + } + } + }, + "beefy-finance-moonriver": { + "network": "moonriver", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.moonriver.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-moonriver", + "query-id": "beefy-finance-moonriver" + } + } + }, + "beefy-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.polygon.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-polygon", + "query-id": "beefy-finance-polygon" + } + } + }, + "beefy-finance-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.bsc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-bsc", + "query-id": "beefy-finance-bsc" + } + } + }, + "beefy-finance-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.optimism.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "beefy-finance-optimism", + "query-id": "beefy-finance-optimism" + } + } + }, + "beefy-finance-cronos": { + "network": "cronos", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "beefy.cronos.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "cronos-portal": { + "slug": "beefy-finance-cronos", + "query-id": "beefy-finance-cronos" + } + } + } + } + }, + "belt-finance": { + "schema": "yield-aggregator", + "base": "belt-finance", + "protocol": "belt-finance", + "project": "belt", + "deployments": { + "belt-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "belt.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "belt-finance-bsc", + "query-id": "belt-finance-bsc" + }, + "decentralized-network": { + "slug": "belt-finance-bsc", + "query-id": "9jLaSWECnXdmwDG6zGMR39PqwhscHoiLGoX1mLtHLqWd" + } + } + } + } + }, + "bancor-v3": { + "schema": "dex-amm", + "base": "bancor-v3", + "protocol": "bancor-v3", + "project": "bancor", + "deployments": { + "bancor-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.4", + "methodology": "1.0.0" + }, + "files": { + "template": "bancor.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bancor-v3-ethereum", + "query-id": "bancor-v3-ethereum" + }, + "decentralized-network": { + "slug": "bancor-v3-ethereum", + "query-id": "4Q4eEMDBjYM8JGsvnWCafFB5wCu6XntmsgxsxwYSnMib" + } + } + } + } + }, + "aurigami": { + "schema": "lending", + "base": "compound-forks", + "protocol": "aurigami", + "project": "aurigami", + "deployments": { + "aurigami-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aurigami.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aurigami-aurora", + "query-id": "aurigami-aurora" + } + } + } + } + }, + "banker-joe": { + "schema": "lending", + "base": "compound-forks", + "protocol": "banker-joe", + "project": "trader-joe", + "deployments": { + "banker-joe-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "banker-joe.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "banker-joe-avalanche", + "query-id": "banker-joe-avalanche" + }, + "decentralized-network": { + "slug": "banker-joe-avalanche", + "query-id": "9NjYuG2BFU1BPacNdKymd9eNdfVCaJM6LhsgD8zSQgDK" + } + } + } + } + }, + "tectonic": { + "schema": "lending", + "base": "compound-forks", + "protocol": "tectonic", + "project": "tectonic", + "deployments": { + "tectonic-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tectonic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "cronos-portal": { + "slug": "tectonic", + "query-id": "tectonic" + } + } + } + } + }, + "bastion-protocol": { + "schema": "lending", + "base": "compound-forks", + "protocol": "bastion-protocol", + "project": "bastion-protocol", + "deployments": { + "bastion-protocol-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.1" + }, + "files": { + "template": "bastion-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bastion-protocol-aurora", + "query-id": "bastion-protocol-aurora" + }, + "decentralized-network": { + "slug": "bastion-protocol-aurora", + "query-id": "BD4rW7Ga5YQ3x68tALbi8vsXNodd6LrvFeaVocdJt3bD" + } + } + } + } + }, + "benqi": { + "schema": "lending", + "base": "compound-forks", + "protocol": "benqi", + "project": "benqi", + "deployments": { + "benqi-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "benqi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "benqi-avalanche", + "query-id": "benqi-avalanche" + }, + "decentralized-network": { + "slug": "benqi-avalanche", + "query-id": "8ZjJGsaKea7WwLJPJNdHXPGsvXDe3iq2231aRjgBPisi" + } + } + } + } + }, + "arbitrum-one-bridge": { + "schema": "bridge", + "base": "arbitrum-one-bridge", + "protocol": "arbitrum-one-bridge", + "project": "arbitrum-one-bridge", + "deployments": { + "arbitrum-one-bridge-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arbitrum-one-bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arbitrum-one-bridge-ethereum", + "query-id": "arbitrum-one-bridge-ethereum" + }, + "decentralized-network": { + "slug": "arbitrum-one-bridge-ethereum", + "query-id": "6XazDBEjAVADSXbiBoXBBVwxTYf4PXRtucxn5vRQFLch" + } + } + }, + "arbitrum-one-bridge-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "arbitrum-one-bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "arbitrum-one-bridge-arbitrum", + "query-id": "arbitrum-one-bridge-arbitrum" + }, + "decentralized-network": { + "slug": "arbitrum-one-bridge-arbitrum", + "query-id": "2rQHtwHiK2TCB4bQtgLybf8gGHCRVjANPzKTYss7B1n4" + } + } + } + } + }, + "biswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "biswap", + "project": "biswap", + "deployments": { + "biswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.6", + "methodology": "1.0.0" + }, + "files": { + "template": "biswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "biswap-bsc", + "query-id": "biswap-bsc" + }, + "decentralized-network": { + "slug": "biswap-bsc", + "query-id": "EnAR2ancKqJqpCU6cJ8aq9xHquTSWsK2wQWVfdDSwacN" + } + } + } + } + }, + "burrow": { + "schema": "lending", + "base": "burrow", + "protocol": "burrow", + "project": "burrow", + "deployments": { + "burrow-near": { + "network": "near-mainnet", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "burrow.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "burrow-near", + "query-id": "burrow-near" + }, + "decentralized-network": { + "slug": "burrow-near", + "query-id": "5W5fhZAq6QABBijKo7wqYps7TLzqAqS2mU1C1rhktvtg" + } + } + } + } + }, + "compound-v2": { + "schema": "lending", + "base": "compound-forks", + "protocol": "compound-v2", + "project": "compound", + "deployments": { + "compound-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.9.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v2-ethereum", + "query-id": "compound-v2-ethereum" + }, + "decentralized-network": { + "slug": "compound-v2-ethereum", + "query-id": "4TbqVA8p2DoBd5qDbPMwmDZv3CsJjWtxo8nVSqF2tA9a" + } + } + } + } + }, + "cream-finance": { + "schema": "lending", + "base": "compound-forks", + "protocol": "cream-finance", + "project": "cream", + "deployments": { + "cream-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-arbitrum", + "query-id": "cream-finance-arbitrum" + }, + "decentralized-network": { + "slug": "cream-finance-arbitrum", + "query-id": "GzHkVNf7BBqUjV8Sy6U6xUaWdGheFMdin1cB6sNvfdzs" + } + } + }, + "cream-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-bsc", + "query-id": "cream-finance-bsc" + }, + "decentralized-network": { + "slug": "cream-finance-bsc", + "query-id": "Dd2ak11qC4mS2spUXzJm5v9EtVNJqmBC9rLzbckTwfN1" + } + } + }, + "cream-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-ethereum", + "query-id": "cream-finance-ethereum" + }, + "decentralized-network": { + "slug": "cream-finance-ethereum", + "query-id": "43NeT7UTACLUkohKBaG7auvkhsj4Kwux9kNTJr6sFdNe" + } + } + }, + "cream-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cream-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cream-finance-polygon", + "query-id": "cream-finance-polygon" + }, + "decentralized-network": { + "slug": "cream-finance-polygon", + "query-id": "CBeERkhQNwPwU3jSWdKHeAtPQh4TFucUyUMcqAJk19ij" + } + } + } + } + }, + "dforce": { + "schema": "lending", + "base": "compound-forks", + "protocol": "dforce", + "project": "dforce", + "deployments": { + "dforce-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-arbitrum", + "query-id": "dforce-arbitrum" + }, + "decentralized-network": { + "slug": "dforce-arbitrum", + "query-id": "Dpk4Gen22wxQ3Laojf7DR2me8wGzjaHwjsKAsLf2rCFV" + } + } + }, + "dforce-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-avalanche", + "query-id": "dforce-avalanche" + } + } + }, + "dforce-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-bsc", + "query-id": "dforce-bsc" + }, + "decentralized-network": { + "slug": "dforce-bsc", + "query-id": "DKu1HqTTi26uLZKAmvDbqyAvcnFAjXEuRJmF35RLpyFg" + } + } + }, + "dforce-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-ethereum", + "query-id": "dforce-ethereum" + }, + "decentralized-network": { + "slug": "dforce-ethereum", + "query-id": "6PaB6tKFqrL6YoAELEhFGU6Gc39cEynLbo6ETZMF3sCy" + } + } + }, + "dforce-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-optimism", + "query-id": "dforce-optimism" + }, + "decentralized-network": { + "slug": "dforce-optimism", + "query-id": "6AmkakXwadWiZ2jN7oJcFreWmKG1nZrT5P8om52upYPd" + } + } + }, + "dforce-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dforce-polygon", + "query-id": "dforce-polygon" + }, + "decentralized-network": { + "slug": "dforce-polygon", + "query-id": "9CFGPWpntYisBp7NpHMrgYzFrBmtVxSw58haGyZ3ewoZ" + } + } + } + } + }, + "iron-bank": { + "schema": "lending", + "base": "compound-forks", + "protocol": "iron-bank", + "project": "iron-bank", + "deployments": { + "iron-bank-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-avalanche", + "query-id": "iron-bank-avalanche" + }, + "decentralized-network": { + "slug": "iron-bank-avalanche", + "query-id": "9YiJM9oHy25estSJjB1Z71Hdz5C814R3vDoS2ezpN27C" + } + } + }, + "iron-bank-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-ethereum", + "query-id": "iron-bank-ethereum" + }, + "decentralized-network": { + "slug": "iron-bank-ethereum", + "query-id": "5YoxED3bbWV9byvn3x3S3ebZ3idrQmQmsJhL5LMyY26v" + } + } + }, + "iron-bank-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-fantom", + "query-id": "iron-bank-fantom" + }, + "decentralized-network": { + "slug": "iron-bank-fantom", + "query-id": "4dWx6UZNcLEzgtipy45VkgtptYRqoHdZeCGNKxHAxKWo" + } + } + }, + "iron-bank-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iron-bank.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "iron-bank-optimism", + "query-id": "iron-bank-optimism" + }, + "decentralized-network": { + "slug": "iron-bank-optimism", + "query-id": "4WKePP5QfwrW6Hfd8YKWHuivivmdxPubuP45BryeGo4g" + } + } + } + } + }, + "moonwell": { + "schema": "lending", + "base": "compound-forks", + "protocol": "moonwell", + "project": "moonwell", + "deployments": { + "moonwell-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-moonbeam", + "query-id": "moonwell-moonbeam" + }, + "decentralized-network": { + "slug": "moonwell-moonbeam", + "query-id": "DQhrdUHwspQf3hSjDtyfS6uqq9YiKoLF3Ut3U9os2HK" + } + } + }, + "moonwell-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-moonriver", + "query-id": "moonwell-moonriver" + }, + "decentralized-network": { + "slug": "moonwell-moonriver", + "query-id": "8ayELti1UNCNCWuvwSwapjh4mvvCejeXsk4PmsWBmQ82" + } + } + }, + "moonwell-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "moonwell.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "moonwell-base", + "query-id": "moonwell-base" + }, + "decentralized-network": { + "slug": "moonwell-base", + "query-id": "33ex1ExmYQtwGVwri1AP3oMFPGSce6YbocBP7fWbsBrg" + } + } + } + } + }, + "notional-finance": { + "schema": "lending", + "base": "notional-finance", + "protocol": "notional-finance", + "project": "notional", + "deployments": { + "notional-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.1.0" + }, + "files": { + "template": "notional-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "notional-finance-ethereum", + "query-id": "notional-finance-ethereum" + }, + "decentralized-network": { + "slug": "notional-finance-ethereum", + "query-id": "2t4T7bts8ZQCpGcVq9VSzDyPVCQc5Y7TFwZKfmXKeSVx" + } + } + } + } + }, + "rari-fuse": { + "schema": "lending", + "base": "compound-forks", + "protocol": "rari-fuse", + "project": "rari-capital", + "deployments": { + "rari-fuse-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-fuse-arbitrum", + "query-id": "rari-fuse-arbitrum" + }, + "decentralized-network": { + "slug": "rari-fuse-arbitrum", + "query-id": "HnV3fhwsWfmQGdD2AeGzqvRVTDBqnMH74jCsDVq1DXYP" + } + } + }, + "rari-fuse-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-fuse.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-fuse-ethereum", + "query-id": "rari-fuse-ethereum" + }, + "decentralized-network": { + "slug": "rari-fuse-ethereum", + "query-id": "kecp6SPMvbB4GTqg9r5PXvztYriexj5F3ZCaATpjmb2" + } + } + } + } + }, + "scream": { + "schema": "lending", + "base": "compound-forks", + "protocol": "scream", + "project": "scream", + "deployments": { + "scream-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "scream.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "scream-fantom", + "query-id": "scream-fantom" + }, + "decentralized-network": { + "slug": "scream-fantom", + "query-id": "Cj3pDoqHgLBntkaXAKMxtJTZr3StxYvVEedTXyJGJoK4" + } + } + } + } + }, + "sonne-finance": { + "schema": "lending", + "base": "compound-forks", + "protocol": "sonne-finance", + "project": "sonne", + "deployments": { + "sonne-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "sonne.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "sonne-finance-optimism", + "query-id": "sonne-finance-optimism" + }, + "decentralized-network": { + "slug": "sonne-finance-optimism", + "query-id": "DQqb7FiQ1joLhESkAwvAYiuXhwfz4zf6qHmbt7stnec8" + } + } + } + } + }, + "venus": { + "schema": "lending", + "base": "compound-forks", + "protocol": "venus", + "project": "venus", + "deployments": { + "venus-protocol-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "venus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "venus-protocol-bsc", + "query-id": "venus-protocol-bsc" + }, + "decentralized-network": { + "slug": "venus-protocol-bsc", + "query-id": "CwswJ7sfENafqgAYU1upn3hQgoEV2CXXRZRJ7XtgJrKG" + } + } + } + } + }, + "compound-v3": { + "schema": "lending", + "base": "compound-v3", + "protocol": "compound-v3", + "project": "compound", + "deployments": { + "compound-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-ethereum", + "query-id": "compound-v3-ethereum" + }, + "decentralized-network": { + "slug": "compound-v3-ethereum", + "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9" + } + } + }, + "compound-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-polygon", + "query-id": "compound-v3-polygon" + }, + "decentralized-network": { + "slug": "compound-v3-polygon", + "query-id": "5wfoWBpfYv59b99wDxJmyFiKBu9brXESeqJAzw8WP5Cz" + } + } + }, + "compound-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-v3-arbitrum", + "query-id": "compound-v3-arbitrum" + }, + "decentralized-network": { + "slug": "compound-v3-arbitrum", + "query-id": "5MjRndNWGhqvNX7chUYLQDnvEgc8DaH8eisEkcJt71SR" + } + } + }, + "compound-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "query-id": "compound-v3-base", + "slug": "compound-v3-base" + }, + "decentralized-network": { + "slug": "compound-v3-base", + "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9" + } + } + } + } + }, + "curve-finance": { + "schema": "dex-amm", + "base": "curve-finance", + "protocol": "curve-finance", + "project": "curve", + "deployments": { + "curve-finance-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-arbitrum", + "query-id": "curve-finance-arbitrum" + } + } + }, + "curve-finance-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-aurora", + "query-id": "curve-finance-aurora" + }, + "decentralized-network": { + "slug": "curve-finance-aurora", + "query-id": "9zXFpPQHyTmXXygtNPwjBS6d4SMGzv7qMiha4bJ3fbyB" + } + } + }, + "curve-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-avalanche", + "query-id": "curve-finance-avalanche" + }, + "decentralized-network": { + "slug": "curve-finance-avalanche", + "query-id": "2Vt8WtdXNZUEeaVtzyEd1dpioJf44nvomzkd4HhubfKS" + } + } + }, + "curve-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-ethereum", + "query-id": "curve-finance-ethereum" + }, + "decentralized-network": { + "slug": "curve-finance-ethereum", + "query-id": "3fy93eAT56UJsRCEht8iFhfi6wjHWXtZ9dnnbQmvFopF" + } + } + }, + "curve-finance-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-fantom", + "query-id": "curve-finance-fantom" + } + } + }, + "curve-finance-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-gnosis", + "query-id": "curve-finance-gnosis" + }, + "decentralized-network": { + "slug": "curve-finance-gnosis", + "query-id": "J8k2z8MhdhABfVZU5HtyRvzCT85bLLF886V4iDpt53Jr" + } + } + }, + "curve-finance-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-harmony", + "query-id": "curve-finance-harmony" + }, + "decentralized-network": { + "slug": "curve-finance-harmony", + "query-id": "6gnHHn7562tDjCrrnSiMiR1H1NndrannPQ7LcYxMgF9t" + } + } + }, + "curve-finance-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-moonbeam", + "query-id": "curve-finance-moonbeam" + } + } + }, + "curve-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-optimism", + "query-id": "curve-finance-optimism" + }, + "decentralized-network": { + "slug": "curve-finance-optimism", + "query-id": "CXDZPduZE6nWuWEkSzWkRoJSSJ6CneSqiDxdnhhURShX" + } + } + }, + "curve-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "curve.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "curve-finance-polygon", + "query-id": "curve-finance-polygon" + } + } + } + } + }, + "ellipsis-finance": { + "schema": "dex-amm", + "base": "ellipsis-finance", + "protocol": "ellipsis-finance", + "project": "ellipsis", + "deployments": { + "ellipsis-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ellipsis.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ellipsis-finance-bsc", + "query-id": "ellipsis-finance-bsc" + }, + "decentralized-network": { + "slug": "ellipsis-finance-bsc", + "query-id": "3oK7vysHSCqXkQ5L3G6S4ifBG3Xr5mjkEEzZKtGEg5x1" + } + } + } + } + }, + "erc721-holders": { + "schema": "erc721", + "base": "erc721-holders", + "protocol": "erc721-holders", + "project": "erc721", + "deployments": { + "erc721-holders-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc721.holders.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "erc721-holders", + "query-id": "erc721-holders" + } + } + } + } + }, + "erc721-metadata": { + "schema": "erc721", + "base": "erc721-metadata", + "protocol": "erc721-metadata", + "project": "erc721", + "deployments": { + "erc721-metadata-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc721.metadata.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "erc721-metadata", + "query-id": "erc721-metadata" + } + } + } + } + }, + "euler-finance": { + "schema": "lending", + "base": "euler-finance", + "protocol": "euler-finance", + "project": "euler", + "deployments": { + "euler-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.0", + "methodology": "1.2.3" + }, + "files": { + "template": "euler.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "euler-finance-ethereum", + "query-id": "euler-finance-ethereum" + }, + "decentralized-network": { + "slug": "euler-finance-ethereum", + "query-id": "95nyAWFFaiz6gykko3HtBCyhRuP5vZzuKYsZiLxHxLhr" + } + } + } + } + }, + "goldfinch": { + "schema": "lending", + "base": "goldfinch", + "protocol": "goldfinch", + "project": "goldfinch", + "deployments": { + "goldfinch-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.4", + "methodology": "1.0.1" + }, + "files": { + "template": "goldfinch.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "goldfinch-ethereum", + "query-id": "goldfinch-ethereum" + }, + "decentralized-network": { + "slug": "goldfinch-ethereum", + "query-id": "GRwpFCPYyQPdz84sCnKemzrNvgFPuKkFLcRLR6jsRxHr" + } + } + } + } + }, + "inverse-finance": { + "schema": "lending", + "base": "inverse-finance", + "protocol": "inverse-finance", + "project": "inverse", + "deployments": { + "inverse-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.6", + "methodology": "1.0.0" + }, + "files": { + "template": "inverse.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "inverse-finance-ethereum", + "query-id": "inverse-finance-ethereum" + }, + "decentralized-network": { + "slug": "inverse-finance-ethereum", + "query-id": "EXuutY6qkZbXjYeJZdiDBf2imJswTNdfm8YZCqhAthfW" + } + } + } + } + }, + "lido": { + "schema": "generic", + "base": "lido", + "protocol": "lido", + "project": "lido", + "deployments": { + "lido-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lido.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lido-ethereum", + "query-id": "lido-ethereum" + }, + "decentralized-network": { + "slug": "lido-ethereum", + "query-id": "F7qb71hWab6SuRL5sf6LQLTpNahmqMsBnnweYHzLGUyG" + } + } + } + } + }, + "livepeer": { + "schema": "generic", + "base": "livepeer", + "protocol": "livepeer", + "project": "livepeer", + "deployments": { + "livepeer-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "livepeer.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "livepeer-arbitrum", + "query-id": "livepeer-arbitrum" + }, + "decentralized-network": { + "slug": "livepeer-arbitrum", + "query-id": "6CdJfr35PDj8AMQikiKGjAUPG2vCu5VLYRawDk8cxwrs" + } + } + } + } + }, + "liquity": { + "schema": "lending", + "base": "liquity", + "protocol": "liquity", + "project": "liquity", + "deployments": { + "liquity-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.4.0", + "methodology": "1.0.1" + }, + "files": { + "template": "liquity.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "liquity-ethereum", + "query-id": "liquity-ethereum" + }, + "decentralized-network": { + "slug": "liquity-ethereum", + "query-id": "2D2dFCLjUt3MfFgTKW8cBxiRQ3Adss7KUtYh2rTcFVY" + } + } + } + } + }, + "mummy-finance": { + "schema": "derivatives-perpfutures", + "base": "gmx-forks", + "protocol": "mummy-finance", + "project": "mummy-finance", + "deployments": { + "mummy-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-fantom", + "query-id": "mummy-finance-fantom" + }, + "decentralized-network": { + "slug": "mummy-finance-fantom", + "query-id": "FP8YzYVARZ6jEYrciiTEtzrNfug7STzYyUr3fRUjQkEA" + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mummy-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-optimism", + "query-id": "mummy-finance-optimism" + }, + "decentralized-network": { + "slug": "mummy-finance-optimism", + "query-id": "GvgdFS6dFXCSXwq9PDTdcs5uZzwZYuTrqFjiTRC3jy54" + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mummy-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mummy-finance-arbitrum", + "query-id": "mummy-finance-arbitrum" + }, + "decentralized-network": { + "slug": "mummy-finance-arbitrum", + "query-id": "4Po9haSDCDbQ2XtrSXqT8BNB9H6T7EUAmbAorAzHQi9S" + } + }, + "files": { + "template": "mummy.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "vesta-finance": { + "schema": "lending", + "base": "vesta-finance", + "protocol": "vesta-finance", + "project": "vesta", + "deployments": { + "vesta-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.1.1", + "methodology": "1.1.0" + }, + "files": { + "template": "vesta.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vesta-finance-arbitrum", + "query-id": "vesta-finance-arbitrum" + }, + "decentralized-network": { + "slug": "vesta-finance-arbitrum", + "query-id": "zGuPrsVqtY5ehJDCmweb9ZnBrae3tSQWRux8Mz1M4Gn" + } + } + } + } + }, + "truefi": { + "schema": "lending", + "base": "truefi", + "protocol": "truefi", + "project": "truefi", + "deployments": { + "truefi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.5", + "methodology": "1.0.0" + }, + "files": { + "template": "truefi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "truefi-ethereum", + "query-id": "truefi-ethereum" + }, + "decentralized-network": { + "slug": "truefi-ethereum", + "query-id": "39F8fYCvLYmutjqpzEwx3dcEJTtFFVupvBzJqkEzftA7" + } + } + } + } + }, + "gamma-strategies": { + "schema": "yield-aggregator", + "base": "gamma-strategies", + "protocol": "gamma-strategies", + "project": "gamma-strategies", + "deployments": { + "gamma-strategies-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-arbitrum", + "query-id": "gamma-arbitrum" + } + } + }, + "gamma-strategies-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-ethereum", + "query-id": "gamma-ethereum" + }, + "decentralized-network": { + "slug": "gamma-ethereum", + "query-id": "ANz3TpZdY2syZGQvGA85ANNG7KiSWdPmv55kP4H4sRPJ" + } + } + }, + "gamma-strategies-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-optimism", + "query-id": "gamma-optimism" + } + } + }, + "gamma-strategies-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.3", + "methodology": "1.0.0" + }, + "files": { + "template": "gamma.strategies.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gamma-polygon", + "query-id": "gamma-polygon" + }, + "decentralized-network": { + "slug": "gamma-polygon", + "query-id": "AyxB5Suv1REgRZPUwbgbbqtpwftvTC46dbiHPuBQuF8y" + } + } + } + } + }, + "makerdao": { + "schema": "lending", + "base": "makerdao", + "protocol": "makerdao", + "project": "makerdao", + "deployments": { + "makerdao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.0.1", + "subgraph": "2.4.1", + "methodology": "1.1.0" + }, + "files": { + "template": "makerdao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "makerdao-ethereum", + "query-id": "makerdao-ethereum" + }, + "decentralized-network": { + "slug": "makerdao-ethereum", + "query-id": "8sE6rTNkPhzZXZC6c8UQy2ghFTu5PPdGauwUBm4t7HZ1" + } + } + } + } + }, + "maple-finance-v1": { + "schema": "lending", + "base": "maple-finance-v1", + "protocol": "maple-finance-v1", + "project": "maple", + "deployments": { + "maple-finance-v1-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.1.0" + }, + "files": { + "template": "maple.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maple-finance-ethereum", + "query-id": "maple-finance-ethereum" + }, + "decentralized-network": { + "slug": "maple-finance-ethereum", + "query-id": "J9dtvE11PWNZH74frWyx9QZonyC1Db2UWDMUegmT3zkG" + } + } + } + } + }, + "maple-finance-v2": { + "schema": "lending", + "base": "maple-finance-v2", + "protocol": "maple-finance-v2", + "project": "maple", + "deployments": { + "maple-finance-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "maple.finance.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maple-finance-v2-ethereum", + "query-id": "maple-finance-v2-ethereum" + }, + "decentralized-network": { + "slug": "maple-finance-v2-ethereum", + "query-id": "94swSaaFChsQoZzb9Vc7Lo6FWFV6YZUMNSdFVTMAeRgj" + } + } + } + } + }, + "silo-finance": { + "schema": "lending", + "base": "silo-finance", + "protocol": "silo-finance", + "project": "silo", + "deployments": { + "silo-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "silo.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "silo-finance-ethereum", + "query-id": "silo-finance-ethereum" + } + } + } + } + }, + "synthetix": { + "schema": "lending", + "base": "synthetix", + "protocol": "synthetix", + "project": "synthetix", + "deployments": { + "synthetix-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "synth-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "synthetix-ethereum", + "query-id": "synthetix-ethereum" + } + } + }, + "synthetix-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "2.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "synth-opt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "synthetix-optimism", + "query-id": "synthetix-optimism" + } + } + } + } + }, + "morpho-aave-v2": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-aave-v2", + "project": "morpho", + "deployments": { + "morpho-aave-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.aave.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-aave-v2-ethereum", + "query-id": "morpho-aave-v2-ethereum" + }, + "decentralized-network": { + "slug": "morpho-aave-v2-ethereum", + "query-id": "DsznTYxGdsqxWB6a474rSksvB7qWSth5Ff1PcxW28vZy" + } + } + } + } + }, + "morpho-aave-v3": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-aave-v3", + "project": "morpho", + "deployments": { + "morpho-aave-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.aave.v3.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-aave-v3-ethereum", + "query-id": "morpho-aave-v3-ethereum" + }, + "decentralized-network": { + "slug": "morpho-aave-v3-ethereum", + "query-id": "FKe6ANnWmGPE6hajGLoTgPrVF2jYPHiRu2Jwcg9ZmG9A" + } + } + } + } + }, + "morpho-compound": { + "schema": "lending", + "base": "morpho", + "protocol": "morpho-compound", + "project": "morpho", + "deployments": { + "morpho-compound-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.1", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "morpho.compound.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-compound-ethereum", + "query-id": "morpho-compound-ethereum" + }, + "decentralized-network": { + "slug": "morpho-compound-ethereum", + "query-id": "9dTy23tkahyiap1THgwnJuMwxNHVnQM57jFQQiUzjcY6" + } + } + } + } + }, + "morpho-blue": { + "schema": "lending", + "base": "morpho-blue", + "protocol": "morpho-blue", + "project": "morpho", + "deployments": { + "morpho-blue-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "3.2.0", + "subgraph": "1.1.0", + "methodology": "1.1.0" + }, + "files": { + "template": "morpho.blue.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "morpho-blue-ethereum", + "query-id": "morpho-blue-ethereum" + } + } + } + } + }, + "harvest-finance": { + "schema": "yield-aggregator", + "base": "harvest-finance", + "protocol": "harvest-finance", + "project": "harvest", + "deployments": { + "harvest-finance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-ethereum", + "query-id": "harvest-finance-ethereum" + } + } + }, + "harvest-finance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-polygon", + "query-id": "harvest-finance-polygon" + } + } + }, + "harvest-finance-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "harvest.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "harvest-finance-bsc", + "query-id": "harvest-finance-bsc" + } + } + } + } + }, + "ribbon-finance": { + "schema": "yield-aggregator", + "base": "ribbon-finance", + "protocol": "ribbon-finance", + "project": "ribbon", + "deployments": { + "ribbon-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "ribbon.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ribbon-finance-ethereum", + "query-id": "ribbon-finance-ethereum" + }, + "decentralized-network": { + "slug": "ribbon-finance-ethereum", + "query-id": "Crag42fFb8PrXnbTjHe1UG5KjgzoiUJbqwzJxZ1W8XNJ" + } + } + }, + "ribbon-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "ribbon.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ribbon-finance-avalanche", + "query-id": "ribbon-finance-avalanche" + }, + "decentralized-network": { + "slug": "ribbon-finance-avalanche", + "query-id": "FxhN13aCD2H1f9vagrVueGjHwguZ7JkfuDZrMvKthdk5" + } + } + } + } + }, + "yield-yak": { + "schema": "yield-aggregator", + "base": "yield-yak", + "protocol": "yield-yak", + "project": "yield-yak", + "deployments": { + "yield-yak-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yield.yak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yield-yak-avalanche", + "query-id": "yield-yak-avalanche" + } + } + } + } + }, + "stakedao": { + "schema": "yield-aggregator", + "base": "stakedao", + "protocol": "stakedao", + "project": "stakedao", + "deployments": { + "stakedao-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.3.2", + "methodology": "1.0.0" + }, + "files": { + "template": "stakedao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stakedao-ethereum", + "query-id": "stakedao-ethereum" + } + } + } + } + }, + "saddle-finance": { + "schema": "dex-amm", + "base": "saddle-finance", + "protocol": "saddle-finance", + "project": "saddle", + "deployments": { + "saddle-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-arbitrum", + "query-id": "saddle-finance-arbitrum" + }, + "decentralized-network": { + "slug": "saddle-finance-arbitrum", + "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj" + } + } + }, + "saddle-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-ethereum", + "query-id": "saddle-finance-ethereum" + }, + "decentralized-network": { + "slug": "saddle-finance-ethereum", + "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj" + } + } + }, + "saddle-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-fantom", + "query-id": "saddle-finance-fantom" + }, + "decentralized-network": { + "slug": "saddle-finance-fantom", + "query-id": "DToFejYjMRXcCrBrsdP9AZGBqwxpEumNHReRTfAmqgeP" + } + } + }, + "saddle-finance-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.7", + "methodology": "1.0.0" + }, + "files": { + "template": "saddle.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "saddle-finance-optimism", + "query-id": "saddle-finance-optimism" + }, + "decentralized-network": { + "slug": "saddle-finance-optimism", + "query-id": "CFu1DWY9DyiC25WRmGreowMyuvLB27JfNRCa8rKkTDjK" + } + } + } + } + }, + "geist-finance": { + "schema": "lending", + "base": "aave-forks", + "protocol": "geist-finance", + "project": "geist", + "deployments": { + "geist-finance-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "geist.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "geist-finance-fantom", + "query-id": "geist-finance-fantom" + }, + "decentralized-network": { + "slug": "geist-finance-fantom", + "query-id": "45LX32kZPBRNiXaBKDrzbCnidoKv3cMEc8cXt3kvPifz" + } + } + } + } + }, + "spark-lend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "spark-lend", + "project": "makerdao", + "deployments": { + "spark-lend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spark.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "spark-lend-ethereum", + "query-id": "spark-lend-ethereum" + }, + "decentralized-network": { + "slug": "spark-lend-ethereum", + "query-id": "GbKdmBe4ycCYCQLQSjqGg6UHYoYfbyJyq5WrG35pv1si" + } + } + }, + "spark-lend-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.4.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spark.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "spark-lend-gnosis", + "query-id": "spark-lend-gnosis" + }, + "decentralized-network": { + "slug": "spark-lend-gnosis", + "query-id": "Bw4RH37UbbGEhHo4FaWwT1dn9QJzm1XSZCyK1cbr6ZKM" + } + } + } + } + }, + "radiant": { + "schema": "lending", + "base": "aave-forks", + "protocol": "radiant-capital", + "project": "radiant", + "deployments": { + "radiant-capital-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-arbitrum", + "query-id": "radiant-arbitrum" + }, + "decentralized-network": { + "slug": "radiant-capital-arbitrum", + "query-id": "5HTkKJNSm72tUGakwj8yroDGHxc6fBhmLaA5oJepZGL3" + } + } + } + } + }, + "radiant-v2": { + "schema": "lending", + "base": "aave-forks", + "protocol": "radiant-capital-v2", + "project": "radiant", + "deployments": { + "radiant-capital-v2-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-capital-v2-arbitrum", + "query-id": "radiant-capital-v2-arbitrum" + }, + "decentralized-network": { + "slug": "radiant-capital-v2-arbitrum", + "query-id": "2rQAKGJkvkiAXsCjx1n4E3DSgk2b7nCZMtt2BrV5TBgt" + } + } + }, + "radiant-capital-v2-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "3.0.1", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radiant.capital.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radiant-capital-v2-bsc", + "query-id": "radiant-capital-v2-bsc" + }, + "decentralized-network": { + "slug": "radiant-capital-v2-bsc", + "query-id": "cM9BYtdT8aVBX8JEbi9SQjV2Ft8onEh6qwZHxCUyAAh" + } + } + } + } + }, + "uwu-lend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "uwu-lend", + "project": "uwu", + "deployments": { + "uwu-lend-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "2.2.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uwu.lend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uwu-lend-ethereum", + "query-id": "uwu-lend-ethereum" + }, + "decentralized-network": { + "slug": "uwu-lend-ethereum", + "query-id": "CZBD7e8VGvNa6WkBHZAaC688bsZ35UvAM1AuDdVng2aE" + } + } + } + } + }, + "tokemak": { + "schema": "yield-aggregator", + "base": "tokemak", + "protocol": "tokemak", + "project": "tokemak", + "deployments": { + "tokemak-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "tokemak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "tokemak-ethereum", + "query-id": "tokemak-ethereum" + } + } + } + } + }, + "uniswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "uniswap-v3", + "project": "uniswap", + "deployments": { + "uniswap-v3-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-arbitrum", + "query-id": "uniswap-v3-arbitrum" + }, + "decentralized-network": { + "slug": "uniswap-v3-arbitrum", + "query-id": "FQ6JYszEKApsBpAmiHesRsd9Ygc6mzmpNRANeVQFYoVX" + } + } + }, + "uniswap-v3-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-base", + "query-id": "uniswap-v3-base" + }, + "decentralized-network": { + "slug": "uniswap-v3-base", + "query-id": "FUbEPQw1oMghy39fwWBFY5fE6MXPXZQtjncQy2cXdrNS" + } + } + }, + "uniswap-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-bsc", + "query-id": "uniswap-v3-bsc" + }, + "decentralized-network": { + "slug": "uniswap-v3-bsc", + "query-id": "8f1KyiuNYiNGrjagzEVpf6k6KkPG517prtjdrJihgHw" + } + } + }, + "uniswap-v3-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.4.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-celo", + "query-id": "uniswap-v3-celo" + }, + "decentralized-network": { + "slug": "uniswap-v3-celo", + "query-id": "8cLf29KxAedWLVaEqjV8qKomdwwXQxjptBZFrqWNH5u2" + } + } + }, + "uniswap-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.6.2", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-ethereum", + "query-id": "uniswap-v3-ethereum" + }, + "decentralized-network": { + "slug": "uniswap-v3-ethereum", + "query-id": "4cKy6QQMc5tpfdx8yxfYeb9TLZmgLQe44ddW1G7NwkA6" + } + } + }, + "uniswap-v3-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-optimism", + "query-id": "uniswap-v3-optimism" + }, + "decentralized-network": { + "slug": "uniswap-v3-optimism", + "query-id": "EgnS9YE1avupkvCNj9fHnJxppfEmNNywYJtghqiu2pd9" + } + } + }, + "uniswap-v3-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.5.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-polygon", + "query-id": "uniswap-v3-polygon" + }, + "decentralized-network": { + "slug": "uniswap-v3-polygon", + "query-id": "BvYimJ6vCLkk63oWZy7WB5cVDTVVMugUAF35RAUZpQXE" + } + } + } + } + }, + "pancakeswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "pancakeswap-v3", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v3-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-bsc", + "query-id": "pancakeswap-v3-bsc" + }, + "decentralized-network": { + "slug": "pancakeswap-v3-bsc", + "query-id": "A1BC1hzDsK4NTeXBpKQnDBphngpYZAwDUF7dEBfa3jHK" + } + } + }, + "pancakeswap-v3-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.3.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-ethereum", + "query-id": "pancakeswap-v3-ethereum" + }, + "decentralized-network": { + "slug": "pancakeswap-v3-ethereum", + "query-id": "JAGXF8B14mpB8QGKnwhKTs5JxsQZBJQvbDGFcWwL7gbm" + } + } + } + } + }, + "sushiswap-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "sushiswap-v3", + "project": "sushiswap", + "deployments": { + "sushiswap-v3-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-ethereum", + "query-id": "sushiswap-v3-ethereum" + }, + "decentralized-network": { + "slug": "sushiswap-v3-ethereum", + "query-id": "2tGWMrDha4164KkFAfkU3rDCtuxGb4q1emXmFdLLzJ8x" + } + } + }, + "sushiswap-v3-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-arbitrum", + "query-id": "sushiswap-v3-arbitrum" + }, + "decentralized-network": { + "slug": "sushiswap-v3-arbitrum", + "query-id": "3oHCddbQGTi42kPZBwyGzD2JzZR33zK2MwXtxAerNJy2" + } + } + }, + "sushiswap-v3-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-avalanche", + "query-id": "sushiswap-v3-avalanche" + }, + "decentralized-network": { + "slug": "sushiswap-v3-avalanche", + "query-id": "9WGqYsU8h1KVZeKz32663gFrbjVUNhBgmhRavMFqiSZz" + } + } + }, + "sushiswap-v3-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-bsc", + "query-id": "sushiswap-v3-bsc" + } + } + }, + "sushiswap-v3-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-fantom", + "query-id": "sushiswap-v3-fantom" + } + } + }, + "sushiswap-v3-fuse": { + "network": "fuse", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-fuse", + "query-id": "sushiswap-v3-fuse" + } + } + }, + "sushiswap-v3-gnosis": { + "network": "gnosis", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-gnosis", + "query-id": "sushiswap-v3-gnosis" + }, + "decentralized-network": { + "slug": "sushiswap-v3-gnosis", + "query-id": "9LC6MvaFHXyY3dmxM7VCwGNA9dvM6g2AuZxEGCyfvck3" + } + } + }, + "sushiswap-v3-moonriver": { + "network": "moonriver", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-moonriver", + "query-id": "sushiswap-v3-moonriver" + } + } + }, + "sushiswap-v3-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-optimism", + "query-id": "sushiswap-v3-optimism" + } + } + }, + "sushiswap-v3-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "4.0.1", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswapV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-polygon", + "query-id": "sushiswap-v3-polygon" + } + } + } + } + }, + "uniswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "uniswap-v3-swap", + "project": "uniswap", + "deployments": { + "uniswap-v3-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-swap-base", + "query-id": "uniswap-v3-swap-base" + } + } + }, + "uniswap-v3-swap-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v3-swap-optimism", + "query-id": "uniswap-v3-swap-optimism" + } + } + } + } + }, + "pancakeswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "pancakeswap-v3-swap", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v3-swap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-swap-bsc", + "query-id": "pancakeswap-v3-swap-bsc" + } + } + }, + "pancakeswap-v3-swap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v3-swap-ethereum", + "query-id": "pancakeswap-v3-swap-ethereum" + } + } + } + } + }, + "sushiswap-v3-swap": { + "schema": "dex-amm", + "base": "uniswap-v3-forks-swap", + "protocol": "sushiswap-v3-swap", + "project": "sushiswap", + "deployments": { + "sushiswap-v3-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "4.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.v3.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-v3-swap-base", + "query-id": "sushiswap-v3-swap-base" + } + } + } + } + }, + "osmosis-dex": { + "schema": "dex-amm", + "base": "osmosis-dex", + "protocol": "osmosis-dex", + "project": "osmosis", + "deployments": { + "osmosis-dex-osmosis": { + "network": "osmosis", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "osmosis.dex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "osmosis-dex-osmosis", + "query-id": "osmosis-dex-osmosis" + } + } + } + } + }, + "qidao": { + "schema": "lending", + "base": "qidao", + "protocol": "qidao", + "project": "qidao", + "deployments": { + "qidao-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-arbitrum", + "query-id": "qidao-arbitrum" + }, + "decentralized-network": { + "slug": "qidao-arbitrum", + "query-id": "Duw2tSACo9uRGFctAGsCc9pF7ZGMyqpjkAHPwm49dZe6" + } + } + }, + "qidao-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-avalanche", + "query-id": "qidao-avalanche" + }, + "decentralized-network": { + "slug": "qidao-avalanche", + "query-id": "98GG74FxxsG25Ltd8qvJ9BRfFmQWyN1AkS92MZBG1BsR" + } + } + }, + "qidao-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-base", + "query-id": "qidao-base" + }, + "decentralized-network": { + "slug": "qidao-base", + "query-id": "9NHJ9k31qaGCYXppm9isJTiEoiB6v3tJDnR6SrQrxcjw" + } + } + }, + "qidao-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-bsc", + "query-id": "qidao-bsc" + }, + "decentralized-network": { + "slug": "qidao-bsc", + "query-id": "4DcztqYL7UG5bjdisWWvnj3m4NtK5J3bs89scihAkicr" + } + } + }, + "qidao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-ethereum", + "query-id": "qidao-ethereum" + }, + "decentralized-network": { + "slug": "qidao-ethereum", + "query-id": "BmQSQaXsivq866kUobQSbyxycjk3D7CiaczKgu3P9ifB" + } + } + }, + "qidao-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-fantom", + "query-id": "qidao-fantom" + }, + "decentralized-network": { + "slug": "qidao-fantom", + "query-id": "hf51jYbZ9uESiuBabfxf6fRdc22xtmNWX9c3SRrct2q" + } + } + }, + "qidao-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-polygon", + "query-id": "qidao-polygon" + }, + "decentralized-network": { + "slug": "qidao-polygon", + "query-id": "5UxEcMvYW4vVYP81tkPQMAvJv1e4m1xU8BJkDXBnpc6x" + } + } + }, + "qidao-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-moonriver", + "query-id": "qidao-moonriver" + }, + "decentralized-network": { + "slug": "qidao-moonriver", + "query-id": "HzDP5zXKyjnEJP9TnFirk3qA24SUp4AfzKUBSRcBekgz" + } + } + }, + "qidao-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.4", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-optimism", + "query-id": "qidao-optimism" + }, + "decentralized-network": { + "slug": "qidao-optimism", + "query-id": "4JbWxzxBNCpAaVz72Gt2UthgiwcWZQLKDBhmSE7wKY2K" + } + } + }, + "qidao-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.5", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-gnosis", + "query-id": "qidao-gnosis" + }, + "decentralized-network": { + "slug": "qidao-gnosis", + "query-id": "7vJEsy8pJmRQZQh5kTXNz68SRHXBS859hMq3o5uWF1Ac" + } + } + }, + "qidao-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.1" + }, + "files": { + "template": "qidao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "qidao-harmony", + "query-id": "qidao-harmony" + }, + "decentralized-network": { + "slug": "qidao-harmony", + "query-id": "DCEQvXCiqtpMybQLL4YAgdCzqHzRH6wFFnCDnnLBBuvf" + } + } + } + } + }, + "rari-vaults": { + "schema": "yield-aggregator", + "base": "rari-vaults", + "protocol": "rari-vaults", + "project": "rari-capital", + "deployments": { + "rari-vaults-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.4.3", + "methodology": "1.0.0" + }, + "files": { + "template": "rari-vaults.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rari-vaults-ethereum", + "query-id": "rari-vaults-ethereum" + }, + "decentralized-network": { + "slug": "rari-vaults-ethereum", + "query-id": "Dy1yVPfbS27HTrqEq3nLGFGi3TMYxPzSfY7Zxxj5ZJhf" + } + } + } + } + }, + "apeswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "apeswap", + "project": "apeswap", + "deployments": { + "apeswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "apeswap.bsc.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "apeswap-bsc", + "query-id": "apeswap-bsc" + }, + "decentralized-network": { + "slug": "apeswap-bsc", + "query-id": "4u1aTvzBMjBdm7aK7uQmjffhoPc6Ceu3w2nTfq6vUQnb" + } + } + }, + "apeswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "apeswap.matic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "apeswap-polygon", + "query-id": "apeswap-polygon" + }, + "decentralized-network": { + "slug": "apeswap-polygon", + "query-id": "2x478mWv6rECUcJR4VxNxRnuMuRsY22Jxy7xxXJu4Q7F" + } + } + } + } + }, + "mm-finance": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "mm-finance", + "project": "mm", + "deployments": { + "mm-finance-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "mm.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mm-finance-polygon", + "query-id": "mm-finance-polygon" + }, + "decentralized-network": { + "slug": "mm-finance-polygon", + "query-id": "7B7R7aie7erfqUijkH2HNQcZ8bK6DpuXJaB5myt6nrs7" + } + } + }, + "mm-finance-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.6", + "methodology": "1.0.0" + }, + "files": { + "template": "mm.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "cronos-portal": { + "slug": "mm-finance", + "query-id": "mm-finance" + } + } + } + } + }, + "quickswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "quickswap", + "project": "quickswap", + "deployments": { + "quickswap-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "quickswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "quickswap-polygon", + "query-id": "quickswap-polygon" + } + } + } + } + }, + "quickswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "quickswap-swap", + "project": "quickswap", + "deployments": { + "quickswap-swap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "quickswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "quickswap-swap-polygon", + "query-id": "quickswap-swap-polygon" + } + } + } + } + }, + "solarbeam": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "solarbeam", + "project": "solarbeam", + "deployments": { + "solarbeam-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "solarbeam.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "solarbeam-moonriver", + "query-id": "solarbeam-moonriver" + }, + "decentralized-network": { + "slug": "solarbeam-moonriver", + "query-id": "EoN2oon5KNH6XL1xSQCRsLHFPSZ2xLJD9DApizNtfGWo" + } + } + } + } + }, + "spiritswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "spiritswap", + "project": "spiritswap", + "deployments": { + "spiritswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.10", + "methodology": "1.0.0" + }, + "files": { + "template": "spiritswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiritswap-fantom", + "query-id": "spiritswap-fantom" + }, + "decentralized-network": { + "slug": "spiritswap-fantom", + "query-id": "ARnDoat2Zyft9miSW8Md6V32nd5YUfngMCDCaNgqLqXv" + } + } + } + } + }, + "spookyswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "spookyswap", + "project": "spookyswap", + "deployments": { + "spookyswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "spookyswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spookyswap-fantom", + "query-id": "spookyswap-fantom" + } + } + } + } + }, + "spookyswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "spookyswap-swap", + "project": "spookyswap", + "deployments": { + "spookyswap-swap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spookyswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spookyswap-swap-fantom", + "query-id": "spookyswap-swap-fantom" + } + } + } + } + }, + "sushiswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "sushiswap", + "project": "sushiswap", + "deployments": { + "sushiswap-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-arbitrum", + "query-id": "sushiswap-arbitrum" + }, + "decentralized-network": { + "slug": "sushiswap-arbitrum", + "query-id": "9tSS5FaePZnjmnXnSKCCqKVLAqA6eGg6jA2oRojsXUbP" + } + } + }, + "sushiswap-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-avalanche", + "query-id": "sushiswap-avalanche" + }, + "decentralized-network": { + "slug": "sushiswap-avalanche", + "query-id": "4KgG6aek9cEp8MXQZKWCmeJWj5Y77mK9tPRAD1kDQa8Q" + } + } + }, + "sushiswap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-bsc", + "query-id": "sushiswap-bsc" + }, + "decentralized-network": { + "slug": "sushiswap-bsc", + "query-id": "7QyoZFgo1bYvTD7bmdBxsjFLjmeDLgBT3nC3H8y6yuKZ" + } + } + }, + "sushiswap-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-celo", + "query-id": "sushiswap-celo" + }, + "decentralized-network": { + "slug": "sushiswap-celo", + "query-id": "5H97eNhy9fVHcqRXZtCV2UxHG2DbzcFA7yth1TaVZ45x" + } + } + }, + "sushiswap-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-fantom", + "query-id": "sushiswap-fantom" + }, + "decentralized-network": { + "slug": "sushiswap-fantom", + "query-id": "9wj3CmJFtoe7J25h4t39ioQHXexGe2rbsLfBgLefU7mN" + } + } + }, + "sushiswap-fuse": { + "network": "fuse", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-fuse", + "query-id": "sushiswap-fuse" + }, + "decentralized-network": { + "slug": "sushiswap-fuse", + "query-id": "7MhgrLAB5B4D6PLDjF9Stx7fzS54MA3d5oi9dT3fHxbz" + } + } + }, + "sushiswap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.2", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.mainnet.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-ethereum", + "query-id": "sushiswap-ethereum" + }, + "decentralized-network": { + "slug": "sushiswap-ethereum", + "query-id": "77jZ9KWeyi3CJ96zkkj5s1CojKPHt6XJKjLFzsDCd8Fd" + } + } + }, + "sushiswap-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.2.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-harmony", + "query-id": "sushiswap-harmony" + }, + "decentralized-network": { + "slug": "sushiswap-harmony", + "query-id": "96NBskquxSxSDV8W42g3nmzECziCvhftSXFFpbY4geaC" + } + } + }, + "sushiswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.1", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-polygon", + "query-id": "sushiswap-polygon" + }, + "decentralized-network": { + "slug": "sushiswap-polygon", + "query-id": "B3Jt84tHJJjanE4W1YijyksTwtm7jqK8KcG5dcoc1ZNF" + } + } + }, + "sushiswap-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-moonbeam", + "query-id": "sushiswap-moonbeam" + }, + "decentralized-network": { + "slug": "sushiswap-moonbeam", + "query-id": "8oFzyJBeHoojoe23u3YYNruTZsqgn91q44U8hrFocbtp" + } + } + }, + "sushiswap-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-moonriver", + "query-id": "sushiswap-moonriver" + }, + "decentralized-network": { + "slug": "sushiswap-moonriver", + "query-id": "EuYBux3ZPq1v3Uipo837WDq6WrK4AB3LGD6w78edRHib" + } + } + }, + "sushiswap-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.15", + "methodology": "1.0.0" + }, + "files": { + "template": "sushiswap.alt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "sushiswap-gnosis", + "query-id": "sushiswap-gnosis" + }, + "decentralized-network": { + "slug": "sushiswap-gnosis", + "query-id": "GvgkY82DTAkYqRShBbPQMjF1WJyUcknXre3QPWiXrPnS" + } + } + } + } + }, + "trader-joe": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "trader-joe", + "project": "trader-joe", + "deployments": { + "trader-joe-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "trader.joe.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "trader-joe-avalanche", + "query-id": "trader-joe-avalanche" + }, + "decentralized-network": { + "slug": "trader-joe-avalanche", + "query-id": "H2VGe2tYavUEosSjomHwxbvCKy3LaNaW8Kjw2KhhHs1K" + } + } + } + } + }, + "trisolaris": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "trisolaris", + "project": "trisolaris", + "deployments": { + "trisolaris-aurora": { + "network": "aurora", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.9", + "methodology": "1.0.0" + }, + "files": { + "template": "trisolaris.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "trisolaris-aurora", + "query-id": "trisolaris-aurora" + } + } + } + } + }, + "ubeswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "ubeswap", + "project": "ubeswap", + "deployments": { + "ubeswap-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.16", + "methodology": "1.0.0" + }, + "files": { + "template": "ubeswap-template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "ubeswap-celo", + "query-id": "ubeswap-celo" + }, + "decentralized-network": { + "slug": "ubeswap-celo", + "query-id": "9WiZHUk2d3rM4sEQ4NSz6ihFRc2zWmPj7yk8w51dNdhT" + } + } + } + } + }, + "uniswap-v2": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "uniswap-v2", + "project": "uniswap", + "deployments": { + "uniswap-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.12", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v2-ethereum", + "query-id": "uniswap-v2-ethereum" + } + } + } + } + }, + "baseswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "baseswap", + "project": "baseswap", + "deployments": { + "baseswap-base": { + "network": "base", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "baseswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "baseswap-base", + "query-id": "baseswap-base" + } + } + } + } + }, + "uniswap-v2-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "uniswap-v2-swap", + "project": "uniswap", + "deployments": { + "uniswap-v2-swap-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap.v2.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "uniswap-v2-swap-ethereum", + "query-id": "uniswap-v2-swap-ethereum" + }, + "decentralized-network": { + "slug": "uniswap-v2-swap-ethereum", + "query-id": "3onEbd9MLfXTTWAfP91yqsKr7C68VCT2ZiF7EoQiQAFj" + } + } + } + } + }, + "substream-uniswap-v2": { + "schema": "dex-amm", + "base": "substreams", + "protocol": "uniswap-v2", + "project": "uniswap", + "deployments": { + "substream-uniswap-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.3.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "NA" + }, + "options": { + "prepare:yaml": false, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "substream-uniswap-v2-ethereum", + "query-id": "substream-uniswap-v2-ethereum" + }, + "decentralized-network": { + "slug": "substream-uniswap-v2-ethereum", + "query-id": "J2oP9UNBjsnuDDW1fAoHKskyrNLFNBB2badQU6UvEtJp" + } + } + } + } + }, + "pancakeswap-v2-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "pancakeswap-v2-swap", + "project": "pancakeswap", + "deployments": { + "pancakeswap-v2-swap-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "files": { + "template": "pancakeswap.v2.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "pancakeswap-v2-swap-bsc", + "query-id": "pancakeswap-v2-swap-bsc" + } + } + } + } + }, + "baseswap-swap": { + "schema": "dex-amm", + "base": "uniswap-forks-swap", + "protocol": "baseswap-swap", + "project": "baseswap", + "deployments": { + "baseswap-swap-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "baseswap.swap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "baseswap-swap-base", + "query-id": "baseswap-swap-base" + } + } + } + } + }, + "vvs-finance": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "vvs-finance", + "project": "vvs", + "deployments": { + "vvs-finance-cronos": { + "network": "cronos", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.14", + "methodology": "1.0.0" + }, + "files": { + "template": "vvs.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "cronos-portal": { + "slug": "vvs-finance", + "query-id": "vvs-finance" + } + } + } + } + }, + "honeyswap": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "honeyswap", + "project": "honeyswap", + "deployments": { + "honeyswap-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.1" + }, + "files": { + "template": "honeyswap.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "honeyswap-gnosis", + "query-id": "honeyswap-gnosis" + }, + "decentralized-network": { + "slug": "honeyswap-gnosis", + "query-id": "33aQTj7abtAR5zGcG9JBd1fd1sodgKDjoTsKuA8QrUW7" + } + } + }, + "honeyswap-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.10", + "methodology": "1.0.1" + }, + "files": { + "template": "honeyswap.matic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "honeyswap-polygon", + "query-id": "honeyswap-polygon" + }, + "decentralized-network": { + "slug": "honeyswap-polygon", + "query-id": "7YaQPHXFrPCwbt2MUPQ5N5PgmgMch14Ab5cZVYxvtPgW" + } + } + } + } + }, + "velodrome-finance-v1": { + "schema": "dex-amm", + "base": "velodrome-finance", + "protocol": "velodrome-finance-v1", + "project": "velodrome", + "deployments": { + "velodrome-finance-v1-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "velodrome.finance.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "velodrome-optimism", + "query-id": "velodrome-optimism" + }, + "decentralized-network": { + "slug": "velodrome-optimism", + "query-id": "7tA4PY1VmbycJeoVtn2mjQK4NbozgwTuZgrxDTxzEDL1" + } + } + } + } + }, + "velodrome-finance-v2": { + "schema": "dex-amm", + "base": "velodrome-finance", + "protocol": "velodrome-finance-v2", + "project": "velodrome", + "deployments": { + "velodrome-finance-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "velodrome.finance.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "velodrome-v2-optimism", + "query-id": "velodrome-v2-optimism" + }, + "decentralized-network": { + "slug": "velodrome-v2-optimism", + "query-id": "A4Y1A82YhSLTn998BVVELC8eWzhi992k4ZitByvssxqA" + } + } + } + } + }, + "yearn-v2": { + "schema": "yield-aggregator", + "base": "yearn-v2", + "protocol": "yearn-v2", + "project": "yearn", + "deployments": { + "yearn-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-arbitrum", + "query-id": "yearn-v2-arbitrum" + }, + "decentralized-network": { + "slug": "yearn-v2-arbitrum", + "query-id": "G3JZhmKKHC4mydRzD6kSz5fCWve5WDYYCyTFSJyv3SD5" + } + } + }, + "yearn-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-ethereum", + "query-id": "yearn-v2-ethereum" + }, + "decentralized-network": { + "slug": "yearn-v2-ethereum", + "query-id": "FDLuaz69DbMADuBjJDEcLnTuPnjhZqNbFVrkNiBLGkEg" + } + } + }, + "yearn-v2-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.4", + "methodology": "1.0.0" + }, + "files": { + "template": "yearn.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "yearn-v2-fantom", + "query-id": "yearn-v2-fantom" + } + } + } + } + }, + "maker-governance": { + "schema": "governance", + "base": "maker-governance", + "protocol": "maker-governance", + "project": "makerdao", + "deployments": { + "maker-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "maker-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "maker-governance", + "query-id": "maker-governance" + }, + "decentralized-network": { + "slug": "maker-governance", + "query-id": "FXpCdSzUbRFzovJLW8hrwFXA2E3Bj915w99TtTSMm88p" + } + } + } + } + }, + "aave-governance": { + "schema": "governance", + "base": "aave-governance", + "protocol": "aave-governance", + "project": "aave", + "deployments": { + "aave-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aave-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "aave-governance", + "query-id": "aave-governance" + }, + "decentralized-network": { + "slug": "aave-governance", + "query-id": "8EBbn3tNayccBZrnW9ae6Q4NLHfVEcozvkB3YAp5Qatr" + } + } + } + } + }, + "dydx-governance": { + "schema": "governance", + "base": "aave-governance", + "protocol": "dydx-governance", + "project": "dydx", + "deployments": { + "dydx-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dydx-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "dydx-governance", + "query-id": "dydx-governance" + }, + "decentralized-network": { + "slug": "dydx-governance", + "query-id": "FFK9Fa8fdBrAugNVFqRZVAtrej7FjsQNq1s9LVBhF4FX" + } + } + } + } + }, + "angle-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "angle-governance", + "project": "angle", + "deployments": { + "angle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "angle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "angle-governance", + "query-id": "angle-governance" + }, + "decentralized-network": { + "slug": "angle-governance", + "query-id": "94D1g2jHHqKUS5uhbEPHWyRgfp4bYeZPn5Cr5R3zvoYH" + } + } + } + } + }, + "code4rena-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "code4rena-governance", + "project": "code4rena", + "deployments": { + "code4rena-governance-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "code4rena-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "code4rena-governance", + "query-id": "code4rena-governance" + } + } + } + } + }, + "ens-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "ens-governance", + "project": "ens", + "deployments": { + "ens-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ens-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ens-governance", + "query-id": "ens-governance" + }, + "decentralized-network": { + "slug": "ens-governance", + "query-id": "GyijYxW9yiSRcEd5u2gfquSvneQKi5QuvU3WZgFyfFSn" + } + } + } + } + }, + "euler-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "euler-governance", + "project": "euler", + "deployments": { + "euler-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "euler-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "euler-governance", + "query-id": "euler-governance" + }, + "decentralized-network": { + "slug": "euler-governance", + "query-id": "F94CS4mephx6noem4KsXxeGDSufCGUH5fXrqUX5ZiFk2" + } + } + } + } + }, + "fei-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "fei-governance", + "project": "fei", + "deployments": { + "fei-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "fei-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "fei-governance", + "query-id": "fei-governance" + } + } + } + } + }, + "hop-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "hop-governance", + "project": "hop", + "deployments": { + "hop-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hop-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hop-governance", + "query-id": "hop-governance" + }, + "decentralized-network": { + "slug": "hop-governance", + "query-id": "9RFPnB3zNjtc7x9kowTyBU2YVGUFSJRe27EBJWLMVgy6" + } + } + } + } + }, + "silo-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "silo-governance", + "project": "silo", + "deployments": { + "silo-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "silo-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "silo-governance", + "query-id": "silo-governance" + }, + "decentralized-network": { + "slug": "silo-governance", + "query-id": "8qztgeMTJrq2kQHK7LzmbmDUpuBvDc6eFASDqN8SJBM5" + } + } + } + } + }, + "truefi-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "truefi-governance", + "project": "truefi", + "deployments": { + "truefi-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "truefi-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "truefi-governance", + "query-id": "truefi-governance" + }, + "decentralized-network": { + "slug": "truefi-governance", + "query-id": "DbD7U3k8trdQUC2KqC2Fu2WcS42QUZHr2YXJzZXjH719" + } + } + } + } + }, + "unlock-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "unlock-governance", + "project": "unlock", + "deployments": { + "unlock-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "unlock-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "unlock-governance", + "query-id": "unlock-governance" + }, + "decentralized-network": { + "slug": "unlock-governance-ethereum", + "query-id": "7ziHxbouaMXhSzxf5nfTXLYYASajU9bTCcxWoTKEAkBe" + } + } + } + } + }, + "rarible-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "rarible-governance", + "project": "rarible", + "deployments": { + "rarible-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "rarible-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "rarible-governance", + "query-id": "rarible-governance" + }, + "decentralized-network": { + "slug": "rarible-governance", + "query-id": "2oGCcncW9v7AAExqpZ9T1W1GecSjGVmi7XGet3P9JiNn" + } + } + } + } + }, + "optimism-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "optimism-governance", + "project": "optimism", + "deployments": { + "optimism-governance-optimism": { + "network": "optimism", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "optimism-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "optimism-governance", + "query-id": "optimism-governance" + } + } + } + } + }, + "ousd-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "ousd-governance", + "project": "ousd", + "deployments": { + "ousd-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ousd-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ousd-governance", + "query-id": "ousd-governance" + }, + "decentralized-network": { + "slug": "ousd-governance", + "query-id": "BwcFTZJskUwk6WXKteMAEqn6CQFWsPsqq8A8YGcqnWkK" + } + } + } + } + }, + "threshold-governance": { + "schema": "governance", + "base": "openzeppelin-governor", + "protocol": "threshold-governance", + "project": "threshold", + "deployments": { + "threshold-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "threshold-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "threshold-governance", + "query-id": "threshold-governance" + }, + "decentralized-network": { + "slug": "threshold-governance", + "query-id": "Bk9fLLKttYoM4fE1cXXCq61owGqFtX1RsS8kEtDnDELC" + } + } + } + } + }, + "ampleforth-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "ampleforth-governance", + "project": "ampleforth", + "deployments": { + "ampleforth-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ampleforth-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ampleforth-governance", + "query-id": "ampleforth-governance" + }, + "decentralized-network": { + "slug": "ampleforth-governance", + "query-id": "B7zUhfTTV7mi2QZgUL661D714NGqeLtk6h3q3Mf2xNNa" + } + } + } + } + }, + "compound-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "compound-governance", + "project": "compound", + "deployments": { + "compound-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-governance", + "query-id": "compound-governance" + }, + "decentralized-network": { + "slug": "compound-governance", + "query-id": "7nuSuPhUgKSg5uKRh8g5jyjZWE8DnvQw1mQtvDWpxrnh" + } + } + } + } + }, + "compound-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "compound-governance-v1", + "project": "compound", + "deployments": { + "compound-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "compound-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "compound-governance-v1", + "query-id": "compound-governance-v1" + } + } + } + } + }, + "cryptex-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "cryptex-governance", + "project": "cryptex", + "deployments": { + "cryptex-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cryptex-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cryptex-governance", + "query-id": "cryptex-governance" + }, + "decentralized-network": { + "slug": "cryptex-governance", + "query-id": "AnAnCpeyy2ZbP2BLZw9u7VjGtVtRorvYuGU3vME1na7F" + } + } + } + } + }, + "gitcoin-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "gitcoin-governance", + "project": "gitcoin", + "deployments": { + "gitcoin-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gitcoin-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "gitcoin-governance", + "query-id": "gitcoin-governance" + }, + "decentralized-network": { + "slug": "gitcoin-governance", + "query-id": "By35hUZiWiHNzRsdDnxFU9T47YUNZwPjfhwD1iBbNGQL" + } + } + } + } + }, + "hifi-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "hifi-governance", + "project": "hifi", + "deployments": { + "hifi-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hifi-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hifi-governance", + "query-id": "hifi-governance" + }, + "decentralized-network": { + "slug": "hifi-governance", + "query-id": "ANAXtqRM9cUySpQZ8xuaFTdu1oFCj4HYaRXXiChTihAM" + } + } + } + } + }, + "idle-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "idle-governance", + "project": "idle", + "deployments": { + "idle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "idle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "idle-governance", + "query-id": "idle-governance" + } + } + } + } + }, + "idle-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "idle-governance-v1", + "project": "idle", + "deployments": { + "idle-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "idle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "idle-governance-v1", + "query-id": "idle-governance-v1" + } + } + } + } + }, + "indexed-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "indexed-governance", + "project": "indexed", + "deployments": { + "indexed-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "indexed-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "indexed-governance", + "query-id": "indexed-governance" + } + } + } + } + }, + "lilnouns-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "lilnouns-governance", + "project": "lilnouns", + "deployments": { + "lilnouns-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lilnouns-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lilnouns-governance", + "query-id": "lilnouns-governance" + } + } + } + } + }, + "nouns-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "nouns-governance", + "project": "nouns", + "deployments": { + "nouns-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "nouns-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "nouns-governance", + "query-id": "nouns-governance" + } + } + } + } + }, + "ooki-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "ooki-governance", + "project": "ooki", + "deployments": { + "ooki-governance-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ooki-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ooki-governance", + "query-id": "ooki-governance" + } + } + } + } + }, + "pooltogether-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "pooltogether-governance", + "project": "pooltogether", + "deployments": { + "pooltogether-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "pooltogether-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "pooltogether-governance", + "query-id": "pooltogether-governance" + }, + "decentralized-network": { + "slug": "pooltogether-governance", + "query-id": "8rW1keThqpvtoBz7V2iNbo3wqcPCJZTBGuc3frGKbyi2" + } + } + } + } + }, + "radicle-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "radicle-governance", + "project": "radicle", + "deployments": { + "radicle-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "radicle-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "radicle-governance", + "query-id": "radicle-governance" + }, + "decentralized-network": { + "slug": "radicle-governance", + "query-id": "8jQvvEWJffzA48kxnPhuG7dqv4MWwPatVKKbxzr66xiN" + } + } + } + } + }, + "reflexer-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "reflexer-governance", + "project": "reflexer", + "deployments": { + "reflexer-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "reflexer-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "reflexer-governance", + "query-id": "reflexer-governance" + }, + "decentralized-network": { + "slug": "reflexer-governance", + "query-id": "wWdwntxsEd21qDdhkzDn9ycNs5kvYamkndwv3GwLfPp" + } + } + } + } + }, + "uniswap-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance", + "project": "uniswap", + "deployments": { + "uniswap-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance", + "query-id": "uniswap-governance" + }, + "decentralized-network": { + "slug": "uniswap-governance", + "query-id": "7WXaWRE2GbBpmokFAnQfugpVsC61D9dfR6fHgjQFqpq5" + } + } + } + } + }, + "uniswap-governance-v1": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance-v1", + "project": "uniswap", + "deployments": { + "uniswap-governance-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance-v1", + "query-id": "uniswap-governance-v1" + } + } + } + } + }, + "uniswap-governance-v2": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "uniswap-governance-v2", + "project": "uniswap", + "deployments": { + "uniswap-governance-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "uniswap-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "uniswap-governance-v2", + "query-id": "uniswap-governance-v2" + } + } + } + } + }, + "unslashed-governance": { + "schema": "governance", + "base": "governor-alpha-bravo", + "protocol": "unslashed-governance", + "project": "unslashed", + "deployments": { + "unslashed-governance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "unslashed-governance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "unslashed-governance", + "query-id": "unslashed-governance" + } + } + } + } + }, + "vesper-finance": { + "schema": "yield-aggregator", + "base": "vesper-finance", + "protocol": "vesper-finance", + "project": "vesper", + "deployments": { + "vesper-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "vesper.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vesper-ethereum", + "query-id": "vesper-ethereum" + }, + "decentralized-network": { + "slug": "vesper-ethereum", + "query-id": "GQdCg4oR8tFB4tH8svyL1PfgDABKnRXz4GjwFYH68pPG" + } + } + } + } + }, + "badgerdao": { + "schema": "yield-aggregator", + "base": "badgerdao", + "protocol": "badgerdao", + "project": "badger", + "deployments": { + "badgerdao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "files": { + "template": "badgerdao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "badgerdao-ethereum", + "query-id": "badgerdao-ethereum" + }, + "decentralized-network": { + "slug": "badgerdao-ethereum", + "query-id": "BchjnXAXXV5coiCBMQH4A8yCHXEFX9S88JFF6G3mfem4" + } + } + } + } + }, + "platypus-finance": { + "schema": "dex-amm", + "base": "platypus-finance", + "protocol": "platypus-finance", + "project": "platypus", + "deployments": { + "platypus-finance-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.3.3", + "methodology": "1.0.0" + }, + "files": { + "template": "platypus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "platypus-finance-avalanche", + "query-id": "platypus-finance-avalanche" + }, + "decentralized-network": { + "slug": "platypus-finance-avalanche", + "query-id": "B35cLTayreXTML6fXPTrFNSYx7mKyDuuV51LjVxWwWjp" + } + } + } + } + }, + "erc20": { + "schema": "erc20", + "base": "erc20", + "protocol": "erc20", + "project": "erc20", + "deployments": { + "erc20-holders-2017": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2017", + "query-id": "erc20-holders-2017" + } + } + }, + "erc20-holders-2018": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2018", + "query-id": "erc20-holders-2018" + } + } + }, + "erc20-holders-2019": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2019", + "query-id": "erc20-holders-2019" + } + } + }, + "erc20-holders-2020": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2020", + "query-id": "erc20-holders-2020" + } + } + }, + "erc20-holders-2021": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2021", + "query-id": "erc20-holders-2021" + } + } + }, + "erc20-holders-2022": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "erc20.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "erc20-holders-2022", + "query-id": "erc20-holders-2022" + } + } + } + } + }, + "opensea-v1": { + "schema": "nft-marketplace", + "base": "opensea", + "protocol": "opensea-v1", + "project": "opensea", + "deployments": { + "opensea-v1-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "opensea.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-v1-ethereum", + "query-id": "opensea-v1-ethereum" + }, + "decentralized-network": { + "slug": "opensea-v1-ethereum", + "query-id": "GSjXo5Vd1EPaMGRJBYe6HoBKv7WSq3miCrRRZJbTCHkT" + } + } + } + } + }, + "opensea-v2": { + "schema": "nft-marketplace", + "base": "opensea", + "protocol": "opensea-v2", + "project": "opensea", + "deployments": { + "opensea-v2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "opensea.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-v2-ethereum", + "query-id": "opensea-v2-ethereum" + }, + "decentralized-network": { + "slug": "opensea-v2-ethereum", + "query-id": "ECtdoov16DUmk5qbhFx4PVVN7vidiNDwzFNsui6FoHEo" + } + } + } + } + }, + "seaport": { + "schema": "nft-marketplace", + "base": "seaport", + "protocol": "seaport", + "project": "opensea", + "deployments": { + "opensea-seaport-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "seaport.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "opensea-seaport-ethereum", + "query-id": "opensea-seaport-ethereum" + }, + "decentralized-network": { + "slug": "opensea-seaport-ethereum", + "query-id": "2GmLsgYGWoFoouZzKjp8biYDkfmeLTkEY3VDQyZqSJHA" + } + } + } + } + }, + "x2y2": { + "schema": "nft-marketplace", + "base": "x2y2", + "protocol": "x2y2", + "project": "x2y2", + "deployments": { + "x2y2-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "x2y2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "x2y2-ethereum", + "query-id": "x2y2-ethereum" + }, + "decentralized-network": { + "slug": "x2y2-ethereum", + "query-id": "3cMswgcjkpLmuF99ViQRZfCPRyCsnimqQsR9z6mY5e2i" + } + } + } + } + }, + "looksrare": { + "schema": "nft-marketplace", + "base": "looksrare", + "protocol": "looksrare", + "project": "looksrare", + "deployments": { + "looksrare-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "files": { + "template": "looksrare.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "looksrare-ethereum", + "query-id": "looksrare-ethereum" + }, + "decentralized-network": { + "slug": "looksrare-ethereum", + "query-id": "FsT2DES8UdhfDkXCtE56h5WCDrrSXrtJiSMgNWvSdyYL" + } + } + } + } + }, + "tornado-cash": { + "schema": "generic", + "base": "tornado-cash", + "protocol": "tornado-cash", + "project": "tornado-cash", + "deployments": { + "tornado-cash-classic-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.4", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "tornado-cash-classic-ethereum", + "query-id": "tornado-cash-classic-ethereum" + }, + "decentralized-network": { + "slug": "tornado-cash-classic-ethereum", + "query-id": "346UaR2Lgxg8yJ2Vq2r8wid1pWaYQNH6N1GmzGCJkHRV" + } + }, + "files": { + "template": "tornado-cash.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "tornado-cash-classic-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "tornado-cash-classic-bsc", + "query-id": "tornado-cash-classic-bsc" + }, + "decentralized-network": { + "slug": "tornado-cash-classic-bsc", + "query-id": "3wAcWMmwNSv9CVfT4HFFWAvawCq621JPKfg1tniwdW7a" + } + }, + "files": { + "template": "tornado-cash.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "the-graph": { + "schema": "generic", + "base": "the-graph", + "protocol": "the-graph", + "project": "the-graph", + "deployments": { + "the-graph-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "the-graph-arbitrum", + "query-id": "the-graph-arbitrum" + }, + "decentralized-network": { + "slug": "the-graph-arbitrum", + "query-id": "EExUE3FayKraaTteewjxaUpZW4M33j4bsD6pgxNCHnGd" + } + }, + "files": { + "template": "theGraphTemplate.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "the-graph-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "the-graph-ethereum", + "query-id": "the-graph-ethereum" + }, + "decentralized-network": { + "slug": "the-graph-ethereum", + "query-id": "AQHJdvUMkPfSxi6Q2LxXYjWXjGvfCST8DFFYE4VUKtU6" + } + }, + "files": { + "template": "theGraphTemplate.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "aura-finance": { + "schema": "yield-aggregator", + "base": "aura-finance", + "protocol": "aura-finance", + "project": "aura", + "deployments": { + "aura-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.0", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "aura-finance-ethereum", + "query-id": "aura-finance-ethereum" + }, + "decentralized-network": { + "slug": "aura-finance-ethereum", + "query-id": "EcNHwEGXq3KW1vCbHHj1iwvtf62ae5kxzEQhKtRqPygt" + } + }, + "files": { + "template": "aura-finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "pangolin": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "pangolin", + "project": "pangolin", + "deployments": { + "pangolin-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "pangolin-avalanche", + "query-id": "pangolin-avalanche" + }, + "decentralized-network": { + "slug": "pangolin-avalanche", + "query-id": "6f3YqP75bLuLZAv7Cm1BohFot17kT3Svekg6giuvaTmg" + } + }, + "files": { + "template": "pangolin.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "rocket-pool": { + "schema": "generic", + "base": "rocket-pool", + "protocol": "rocket-pool", + "project": "rocket-pool", + "deployments": { + "rocket-pool-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.4.0", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "rocket-pool-ethereum", + "query-id": "rocket-pool-ethereum" + }, + "decentralized-network": { + "slug": "rocket-pool-ethereum", + "query-id": "Dtj2HicXKpoUjNB7ffdBkMwt3L9Sz3cbENd67AdHu6Vb" + } + }, + "files": { + "template": "rocket-pool.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "cryptopunks": { + "schema": "nft-marketplace", + "base": "cryptopunks", + "protocol": "cryptopunks", + "project": "cryptopunks", + "deployments": { + "cryptopunks-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "cryptopunks.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cryptopunks-ethereum", + "query-id": "cryptopunks-ethereum" + }, + "decentralized-network": { + "slug": "cryptopunks-ethereum", + "query-id": "HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK" + } + } + } + } + }, + "multichain": { + "schema": "bridge", + "base": "multichain", + "protocol": "multichain", + "project": "multichain", + "deployments": { + "multichain-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-arbitrum", + "query-id": "multichain-arbitrum" + }, + "decentralized-network": { + "slug": "multichain-arbitrum", + "query-id": "579DZmKbpRcdLVBiLyhLEvRQBQ54BA72yDqtSaVSijRs" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-avalanche", + "query-id": "multichain-avalanche" + }, + "decentralized-network": { + "slug": "multichain-avalanche", + "query-id": "28ds2UuXzULQ9XLKFncX1pVL6xTENwKw9VKb7xRXC6mX" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-bsc", + "query-id": "multichain-bsc" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-celo", + "query-id": "multichain-celo" + }, + "decentralized-network": { + "slug": "multichain-celo", + "query-id": "F6Rz64x6iem1VuUNUvzBzH1zzBBZfCA7cpZ91mLySXQY" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-ethereum", + "query-id": "multichain-ethereum" + }, + "decentralized-network": { + "slug": "multichain-ethereum", + "query-id": "GRPErV1E73JGNGGsF2tK4fuuqpvBWpfRBSED8567BAD2" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-fantom", + "query-id": "multichain-fantom" + }, + "decentralized-network": { + "slug": "multichain-fantom", + "query-id": "B6xbS79Nza7zNjSXu1Bsq2ofpFLhDEW1mpAkECKdQXQc" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-gnosis", + "query-id": "multichain-gnosis" + }, + "decentralized-network": { + "slug": "multichain-gnosis", + "query-id": "E3FsKA2dpjv94tPgMKmyPEa63mUQ611XRrbsgAtzqrCn" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-optimism", + "query-id": "multichain-optimism" + }, + "decentralized-network": { + "slug": "multichain-optimism", + "query-id": "FZkvvW6rZJxJk1E3LqhVWHRAb8oWoWZAX563Y94C6GaF" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "multichain-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.0.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "multichain-polygon", + "query-id": "multichain-polygon" + }, + "decentralized-network": { + "slug": "multichain-polygon", + "query-id": "AKgq2JRAoRnBE14iDAMN8bqDwwyufpy3AqXuZRKvyZVR" + } + }, + "files": { + "template": "multichain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "stargate": { + "schema": "bridge", + "base": "stargate", + "protocol": "stargate", + "project": "stargate", + "deployments": { + "stargate-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-ethereum", + "query-id": "stargate-ethereum" + }, + "decentralized-network": { + "slug": "stargate-ethereum", + "query-id": "G1pPbbMjwCnFiyMherq8wqfMusZDriLMqvGBHLr2wS34" + } + } + }, + "stargate-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-avalanche", + "query-id": "stargate-avalanche" + }, + "decentralized-network": { + "slug": "stargate-avalanche", + "query-id": "6XypMkQUovcohhVC2XeWgdXeDsBcnL9ynKdLXpXggoHd" + } + } + }, + "stargate-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-bsc", + "query-id": "stargate-bsc" + }, + "decentralized-network": { + "slug": "stargate-bsc", + "query-id": "6sRx6JNkjz66id39jCK3GMiVnPVuyuv2ntwQVpDzmjRF" + } + } + }, + "stargate-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-arbitrum", + "query-id": "stargate-arbitrum" + }, + "decentralized-network": { + "slug": "stargate-arbitrum", + "query-id": "DWo7jrtpTtUM1buqiCUg7j7XUF568qNPBv7FwwDceuxm" + } + } + }, + "stargate-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-polygon", + "query-id": "stargate-polygon" + }, + "decentralized-network": { + "slug": "stargate-polygon", + "query-id": "SitmxEcPXXwo5cFK8Y2FSMZNZNQ4gXcGdWBDqo3A7K6" + } + } + }, + "stargate-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-optimism", + "query-id": "stargate-optimism" + }, + "decentralized-network": { + "slug": "stargate-optimism", + "query-id": "7NAF7ZtNtJiXkfCFkTSAyFbfLLfUFa55UgK5woxPxZ46" + } + } + }, + "stargate-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-fantom", + "query-id": "stargate-fantom" + }, + "decentralized-network": { + "slug": "stargate-fantom", + "query-id": "2pG7kUAfPhtGyy1StFLhFu8pwTR5kDsCJN9KZjWn9Lnk" + } + } + }, + "stargate-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "files": { + "template": "stargate.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stargate-base", + "query-id": "stargate-base" + }, + "decentralized-network": { + "slug": "stargate-base", + "query-id": "4amk8rvTHgxSobsFKsr5jheHsDzLcwyqc8vHhNC1xhGt" + } + } + } + } + }, + "orbit": { + "schema": "bridge", + "base": "orbit", + "protocol": "orbit", + "project": "orbit", + "deployments": { + "orbit-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-ethereum", + "query-id": "orbit-ethereum" + }, + "decentralized-network": { + "slug": "orbit-ethereum", + "query-id": "DpGRvQhDPH3EXRuCjMM7RednJz25Ucm2oYp56Vb4k74F" + } + } + }, + "orbit-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-bsc", + "query-id": "orbit-bsc" + }, + "decentralized-network": { + "slug": "orbit-bsc", + "query-id": "8XNHKT5X8DgsdL6hKe6tK5FnkBRR4TtS2YH23db5D6VH" + } + } + }, + "orbit-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-celo", + "query-id": "orbit-celo" + }, + "decentralized-network": { + "slug": "orbit-celo", + "query-id": "DdGECh8tM63FEsT96AjxfhxkE5wTBeBPdnh3qkUYpcvY" + } + } + }, + "orbit-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "orbit.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "orbit-polygon", + "query-id": "orbit-polygon" + }, + "decentralized-network": { + "slug": "orbit-polygon", + "query-id": "FQVKZkxeeqdnGU4a1Qwm5SVu8FxtQVPshzpLBAhMH1V9" + } + } + } + } + }, + "polygon-bridge": { + "schema": "bridge", + "base": "polygon-bridge", + "protocol": "polygon-bridge", + "project": "polygon", + "deployments": { + "polygon-bridge-ethereum": { + "network": "ethereum", + "status": "dev", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "polygon-bridge-ethereum", + "query-id": "polygon-bridge-ethereum" + } + }, + "files": { + "template": "polygon.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "polygon-bridge-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "polygon-bridge-polygon", + "query-id": "polygon-bridge-polygon" + } + }, + "files": { + "template": "polygon.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "across-v2": { + "schema": "bridge", + "base": "across-v2", + "protocol": "across-v2", + "project": "across", + "deployments": { + "across-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-ethereum", + "query-id": "across-v2-ethereum" + }, + "decentralized-network": { + "slug": "across-v2-ethereum", + "query-id": "34kdiaZVpPsStQdsh5xFhrZdsZvZYJGfhJ7SVGWY2Y8g" + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-optimism", + "query-id": "across-v2-optimism" + }, + "decentralized-network": { + "slug": "across-v2-optimism", + "query-id": "GY9s64KVsRkW4Q8pCBKQePyDdcUV1TV1ArWFzvMv2qVb" + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-boba": { + "network": "boba", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-boba", + "query-id": "across-v2-boba" + }, + "decentralized-network": { + "slug": "across-v2-boba", + "query-id": "4SbLL5ZptwGU9Eor3SaoV3UZw12KPiZRKkwBEbKDenjP" + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-arbitrum", + "query-id": "across-v2-arbitrum" + }, + "decentralized-network": { + "slug": "across-v2-arbitrum", + "query-id": "3rg6ZtwNUMpBrM1uSUtNqcbc6tGfyY2WLheDGSc5qMzX" + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "across-v2-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "across-v2-polygon", + "query-id": "across-v2-polygon" + }, + "decentralized-network": { + "slug": "across-v2-polygon", + "query-id": "8ywQVEAGn6wAGdYa4ofniy52CMsYMHyK6CbBrL4ZE7ks" + } + }, + "files": { + "template": "across.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "hop-protocol": { + "schema": "bridge", + "base": "hop-protocol", + "protocol": "hop-protocol", + "project": "hop", + "deployments": { + "hop-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-ethereum", + "query-id": "hop-protocol-ethereum" + }, + "decentralized-network": { + "slug": "hop-protocol-ethereum", + "query-id": "7YKiuzrmUxTpSN5DddDVFm9FDjQ5387dnEivHHdX9pAc" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-arbitrum", + "query-id": "hop-protocol-arbitrum" + }, + "decentralized-network": { + "slug": "hop-protocol-arbitrum", + "query-id": "4xY1CAbwQA7oq3a78CX8mgKFvMoZzPsv21A92Hm7rEvv" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-optimism", + "query-id": "hop-protocol-optimism" + }, + "decentralized-network": { + "slug": "hop-protocol-optimism", + "query-id": "KoMGmd2d1VMukusmf98SdWCSKH5ZP5UEUDHKrKpY74D" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-xdai": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-xdai", + "query-id": "hop-protocol-xdai" + }, + "decentralized-network": { + "slug": "hop-protocol-gnosis", + "query-id": "DA1WTRx4pbGQdTm1YqRz3MCLiap4cdgK62Q6Bjy99m1y" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-polygon", + "query-id": "hop-protocol-polygon" + }, + "decentralized-network": { + "slug": "hop-protocol-polygon", + "query-id": "iLsL5mqiwjQhdGs3XfYBdLhaKdE4yDR73iTg2PSRr1E" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "hop-protocol-polygon-zkevm": { + "network": "polygon-zkevm", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.3", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "hop-protocol-polygon-zkevm", + "query-id": "hop-protocol-polygon-zkevm" + }, + "decentralized-network": { + "slug": "hop-protocol-polygon-zkevm", + "query-id": "EkkvCmBiEPiJ5LkaSPxpuAmMouSUN5FZrdrKu7nBY5p9" + } + }, + "files": { + "template": "hop-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "portal": { + "schema": "bridge", + "base": "portal", + "protocol": "portal", + "project": "portal", + "deployments": { + "portal-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-ethereum", + "query-id": "portal-ethereum" + }, + "decentralized-network": { + "slug": "portal-ethereum", + "query-id": "HxduZZ9fy1shXbo7EAG9W73geBAxzKjVNXgMkxeTJkpX" + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-fantom", + "query-id": "portal-fantom" + }, + "decentralized-network": { + "slug": "portal-fantom", + "query-id": "3wKUbySRqqBe6bXGWm3aDr9g8fuUoxKMqcdhTGwBGyjG" + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-bsc", + "query-id": "portal-bsc" + }, + "decentralized-network": { + "slug": "portal-bsc", + "query-id": "FCd8kxMGFkk3AGEHeYRngeHvBsuTpQo7XBLu6XoyDctr" + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-polygon", + "query-id": "portal-polygon" + }, + "decentralized-network": { + "slug": "portal-polygon", + "query-id": "4V9sMa8P8vKAccUtR8jP28mBfvtUMip4tVvMBSDC7h3V" + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "portal-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "portal-avalanche", + "query-id": "portal-avalanche" + }, + "decentralized-network": { + "slug": "portal-avalanche", + "query-id": "BV3hShBwZkZM7RL9XPGqZ9JyJcE2vrWqXwFQYTVquH3Z" + } + }, + "files": { + "template": "portal.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "optimism-bridge-v2": { + "schema": "bridge", + "base": "optimism-bridge-v2", + "protocol": "optimism-bridge-v2", + "project": "optimism", + "deployments": { + "optimism-bridge-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "optimism-bridge-v2-ethereum", + "query-id": "optimism-bridge-v2-ethereum" + }, + "decentralized-network": { + "slug": "optimism-bridge-v2-ethereum", + "query-id": "DCKLUdmvmaX4eNSAouXjxt8yShp28dFKGD763Tb2KibH" + } + }, + "files": { + "template": "optimism.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true + } + }, + "optimism-bridge-v2-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.1.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "optimism-bridge-v2-optimism", + "query-id": "optimism-bridge-v2-optimism" + }, + "decentralized-network": { + "slug": "optimism-bridge-v2-optimism", + "query-id": "4aUWDFLz4sVYKZDw4JDJLk8vjify1Rqij7UGFozNxA8k" + } + }, + "files": { + "template": "optimism.bridge.template.yaml" + }, + "options": { + "prepare:yaml": true + } + } + } + }, + "cbridge": { + "schema": "bridge", + "base": "cbridge", + "protocol": "cbridge", + "project": "celer-network", + "deployments": { + "cbridge-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-ethereum", + "query-id": "cbridge-ethereum" + }, + "decentralized-network": { + "slug": "cbridge-ethereum", + "query-id": "3C9qpsGFHrAnXkmPoeRbMjH9gyTuQskzB29VrrV8NbAN" + } + } + }, + "cbridge-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-arbitrum", + "query-id": "cbridge-arbitrum" + }, + "decentralized-network": { + "slug": "cbridge-arbitrum", + "query-id": "FGucK6FiGDyjwA1VDymrCQXgSTdZH7sCrP8HbnwVFatY" + } + } + }, + "cbridge-aurora": { + "network": "aurora", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-aurora", + "query-id": "cbridge-aurora" + }, + "decentralized-network": { + "slug": "cbridge-aurora", + "query-id": "5uW7hwPPaHVEY7qqx5S9CV156YE7Dvjt2AAPiJ4mn12h" + } + } + }, + "cbridge-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-avalanche", + "query-id": "cbridge-avalanche" + }, + "decentralized-network": { + "slug": "cbridge-avalanche", + "query-id": "2usVF8JKwgVesvXVkLj2KG6ourAPEVG7GV6j1MtTwhVa" + } + } + }, + "cbridge-boba": { + "network": "boba", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-boba", + "query-id": "cbridge-boba" + }, + "decentralized-network": { + "slug": "cbridge-boba", + "query-id": "AZd3VzvnYoxBKAWjbZB4snZgow9SnyTTxaxad3YPxbvh" + } + } + }, + "cbridge-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-bsc", + "query-id": "cbridge-bsc" + }, + "decentralized-network": { + "slug": "cbridge-bsc", + "query-id": "9ryiazBA4UJu1g2rbunQ42wqxvhdZP648p2jiBMjcoZc" + } + } + }, + "cbridge-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-celo", + "query-id": "cbridge-celo" + }, + "decentralized-network": { + "slug": "cbridge-celo", + "query-id": "Exzi1255D9QkAzLhcS1qrVXVDMdkQvQ6wxRDjpi9uQz6" + } + } + }, + "cbridge-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-fantom", + "query-id": "cbridge-fantom" + }, + "decentralized-network": { + "slug": "cbridge-fantom", + "query-id": "Ce9MWULyvFUXRqN7LgehQVy3XBGhxk3qtFJhgznHYY3x" + } + } + }, + "cbridge-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-gnosis", + "query-id": "cbridge-gnosis" + }, + "decentralized-network": { + "slug": "cbridge-gnosis", + "query-id": "FdoU8yttG4HUfoYSsP2Qit1UvvVCaZeUDPnMB4nzguNU" + } + } + }, + "cbridge-harmony": { + "network": "harmony", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-harmony", + "query-id": "cbridge-harmony" + }, + "decentralized-network": { + "slug": "cbridge-harmony", + "query-id": "8gXopvmmYABDCCrWuafAkYuRB4bpJ7XcbgGmN8AcMJDg" + } + } + }, + "cbridge-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-moonbeam", + "query-id": "cbridge-moonbeam" + }, + "decentralized-network": { + "slug": "cbridge-moonbeam", + "query-id": "6F1ia9A6Vmanbzk2T3EAAev5Q9TKyF1oxu6JiUKbPdnL" + } + } + }, + "cbridge-moonriver": { + "network": "moonriver", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-moonriver", + "query-id": "cbridge-moonriver" + }, + "decentralized-network": { + "slug": "cbridge-moonriver", + "query-id": "FuFD3UqnCWhQoarNsvdY8AW5exnKXxiizJRXVakvniHX" + } + } + }, + "cbridge-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-optimism", + "query-id": "cbridge-optimism" + }, + "decentralized-network": { + "slug": "cbridge-optimism", + "query-id": "GEy4r8C2cMku1TTfjzC751teQZ4dvVxXiW1F6K4fue2K" + } + } + }, + "cbridge-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cbridge.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cbridge-polygon", + "query-id": "cbridge-polygon" + }, + "decentralized-network": { + "slug": "cbridge-polygon", + "query-id": "8rR3yC5ZPMoUauudfQC4iLJxqf5nCRjZRmYne8tEGrV9" + } + } + } + } + }, + "gmx": { + "schema": "derivatives-perpfutures", + "base": "gmx-forks", + "protocol": "gmx", + "project": "gmx", + "deployments": { + "gmx-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gmx-arbitrum", + "query-id": "gmx-arbitrum" + }, + "decentralized-network": { + "slug": "gmx-arbitrum", + "query-id": "DiR5cWwB3pwXXQWWdus7fDLR2mnFRQLiBFsVmHAH9VAs" + } + }, + "files": { + "template": "gmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "gmx-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.2.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gmx-avalanche", + "query-id": "gmx-avalanche" + }, + "decentralized-network": { + "slug": "gmx-avalanche", + "query-id": "6pXgnXcL6mkXBjKX7NyHN7tCudv2JGFnXZ8wf8WbjPXv" + } + }, + "files": { + "template": "gmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "opyn-gamma": { + "schema": "derivatives-options", + "base": "opyn-gamma", + "protocol": "opyn-gamma", + "project": "opyn", + "deployments": { + "opyn-gamma-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-ethereum", + "query-id": "opyn-gamma-ethereum" + }, + "decentralized-network": { + "slug": "opyn-gamma-ethereum", + "query-id": "3zUv74ekxpiy92MQ2MwemR8fJhjvgyBFaGzQLkYHmaUy" + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-avalanche", + "query-id": "opyn-gamma-avalanche" + }, + "decentralized-network": { + "slug": "opyn-gamma-avalanche", + "query-id": "3eaTJDJ1Y867jkDMY1iEJJLRZTSREfGZjusgmucptWJE" + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-arbitrum", + "query-id": "opyn-gamma-arbitrum" + }, + "decentralized-network": { + "slug": "opyn-gamma-arbitrum", + "query-id": "BC766cXkcBxAwQ6LAYnQytdHJLpJX1C1bbrMFhLCHx7C" + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "opyn-gamma-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.2", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "opyn-gamma-polygon", + "query-id": "opyn-gamma-polygon" + }, + "decentralized-network": { + "slug": "opyn-gamma-polygon", + "query-id": "6WbUbvCBtjhKyf9ddZEfVReHNHHunzspGBp3hFsy1c8P" + } + }, + "files": { + "template": "opyn.gamma.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "dopex": { + "schema": "derivatives-options", + "base": "dopex", + "protocol": "dopex", + "project": "dopex", + "deployments": { + "dopex-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "dopex-arbitrum", + "query-id": "dopex-arbitrum" + }, + "decentralized-network": { + "slug": "dopex-arbitrum", + "query-id": "6C7okGPnmQw4eahgvkjzKGqHyXsZBLSWz7BBEyyfe6vB" + } + }, + "files": { + "template": "dopex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + }, + "dopex-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "dopex-polygon", + "query-id": "dopex-polygon" + }, + "decentralized-network": { + "slug": "dopex-polygon", + "query-id": "nTecf2j4MGgqgJrKTGmvVyWn169py1H9fgvaiN29MVu" + } + }, + "files": { + "template": "dopex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "gains-trade": { + "schema": "derivatives-perpfutures", + "base": "gains-trade", + "protocol": "gains-trade", + "project": "gains-network", + "deployments": { + "gains-trade-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gains-trade-arbitrum", + "query-id": "gains-trade-arbitrum" + }, + "decentralized-network": { + "slug": "gains-trade-arbitrum", + "query-id": "DuPBYBj3nfP3sFiHwkRfTATmA4iSqoPvxBaRXWiwpELk" + } + }, + "files": { + "template": "gains.trade.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "gains-trade-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "gains-trade-polygon", + "query-id": "gains-trade-polygon" + }, + "decentralized-network": { + "slug": "gains-trade-polygon", + "query-id": "4d1zcsK9f1T2wzZTGZHaLKswbhmKTRWu1yeyX94htoMW" + } + }, + "files": { + "template": "gains.trade.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "vela-exchange": { + "schema": "derivatives-perpfutures", + "base": "vela-exchange", + "protocol": "vela-exchange", + "project": "vela-exchange", + "deployments": { + "vela-exchange-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "vela-exchange-arbitrum", + "query-id": "vela-exchange-arbitrum" + } + }, + "files": { + "template": "vela.exchange.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "synfutures-v2": { + "schema": "derivatives-perpfutures", + "base": "synfutures-v2", + "protocol": "synfutures-v2", + "project": "synfutures-v2", + "deployments": { + "synfutures-v2-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "synfutures-v2-polygon", + "query-id": "synfutures-v2-polygon" + } + }, + "files": { + "template": "synfutures.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + } + } + } + }, + "mux-protocol": { + "schema": "derivatives-perpfutures", + "base": "mux-protocol", + "protocol": "mux-protocol", + "project": "mux-protocol", + "deployments": { + "mux-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-arbitrum", + "query-id": "mux-protocol-arbitrum" + }, + "decentralized-network": { + "slug": "mux-protocol-arbitrum", + "query-id": "AMh1u4wCbz8Jybs4Nf7uGBdU9dz2C8mJkH1Aocz6HXUf" + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-avalanche", + "query-id": "mux-protocol-avalanche" + }, + "decentralized-network": { + "slug": "mux-protocol-avalanche", + "query-id": "97XbzzGmRpUvHwdZyArbyrZHFnmWU15tC381epA1Fp7H" + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-bsc", + "query-id": "mux-protocol-bsc" + }, + "decentralized-network": { + "slug": "mux-protocol-bsc", + "query-id": "3zRKcHbGqvMe6BG6fiLiaKx3y41ytzjw4jetbh5Q2fx1" + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-fantom", + "query-id": "mux-protocol-fantom" + }, + "decentralized-network": { + "slug": "mux-protocol-fantom", + "query-id": "46iwTwh5F6yAuKHF9iwFccu9wsYEaXwQCwnj2EjcEgBk" + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "mux-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "mux-protocol-optimism", + "query-id": "mux-protocol-optimism" + }, + "decentralized-network": { + "slug": "mux-protocol-optimism", + "query-id": "7hUM4US9DPz6JqLD6ySqwFmLq4XiAF7cEZLmEesQnYgR" + } + }, + "files": { + "template": "mux.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "kwenta": { + "schema": "derivatives-perpfutures", + "base": "kwenta", + "protocol": "kwenta", + "project": "kwenta", + "deployments": { + "kwenta-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "kwenta-optimism", + "query-id": "kwenta-optimism" + }, + "decentralized-network": { + "slug": "kwenta-optimism", + "query-id": "5sbJJTTJQQ4kYuVYNBVw9sX8C5juRpVJNLHg7uFugw2e" + } + }, + "files": { + "template": "kwenta.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "level-finance": { + "schema": "derivatives-perpfutures", + "base": "level-finance", + "protocol": "level-finance", + "project": "level-finance", + "deployments": { + "level-finance-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "level-finance-bsc", + "query-id": "level-finance-bsc" + }, + "decentralized-network": { + "slug": "level-finance-bsc", + "query-id": "97TRgysfrSPH7sumNXSasdjhKBnDwig2JKE7PwB4W2J8" + } + }, + "files": { + "template": "level.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + }, + "level-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.4", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "services": { + "hosted-service": { + "slug": "level-finance-arbitrum", + "query-id": "level-finance-arbitrum" + }, + "decentralized-network": { + "slug": "level-finance-arbitrum", + "query-id": "9KPc6WMUXg6mqQ9KbCeosJrgmsZyH97vpFPKwJHkVkui" + } + }, + "files": { + "template": "level.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + } + } + } + }, + "axelar": { + "schema": "bridge", + "base": "axelar", + "protocol": "axelar", + "project": "axelar", + "deployments": { + "axelar-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-ethereum", + "query-id": "axelar-ethereum" + }, + "decentralized-network": { + "slug": "axelar-ethereum", + "query-id": "8u1rrGZY3gjXAAVJidygbpKeHzitrMSQV1RoLAkyd1AA" + } + } + }, + "axelar-arbitrum": { + "network": "arbitrum", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-arbitrum", + "query-id": "axelar-arbitrum" + } + } + }, + "axelar-avalanche": { + "network": "avalanche", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.2", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-avalanche", + "query-id": "axelar-avalanche" + } + } + }, + "axelar-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-bsc", + "query-id": "axelar-bsc" + } + } + }, + "axelar-celo": { + "network": "celo", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-celo", + "query-id": "axelar-celo" + } + } + }, + "axelar-fantom": { + "network": "fantom", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-fantom", + "query-id": "axelar-fantom" + } + } + }, + "axelar-moonbeam": { + "network": "moonbeam", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-moonbeam", + "query-id": "axelar-moonbeam" + } + } + }, + "axelar-polygon": { + "network": "polygon", + "status": "dev", + "versions": { + "schema": "1.2.0", + "subgraph": "1.0.1", + "methodology": "1.0.1" + }, + "files": { + "template": "axelar.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "axelar-polygon", + "query-id": "axelar-polygon" + } + } + } + } + }, + "camelot-v2": { + "schema": "dex-amm", + "base": "uniswap-forks", + "protocol": "camelot-v2", + "project": "camelot", + "deployments": { + "camelot-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "camelot.v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "camelot-v2-arbitrum", + "query-id": "camelot-v2-arbitrum" + }, + "decentralized-network": { + "slug": "camelot-v2-arbitrum", + "query-id": "E6J42xXvRQGsqcMEoWRkdeJjUTsWdcHL8khuFMY6CDAM" + } + } + } + } + }, + "thena-fusion": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "thena-fusion", + "project": "thena", + "deployments": { + "thena-fusion-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "3.0.4", + "subgraph": "1.0.1", + "methodology": "1.0.0" + }, + "files": { + "template": "thena.fusion.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "thena-fusion-bsc", + "query-id": "thena-fusion-bsc" + } + } + } + } + }, + "thena-v1": { + "schema": "dex-amm", + "base": "solidly-forks", + "protocol": "thena-v1", + "project": "thena", + "deployments": { + "thena-v1-bsc": { + "network": "bsc", + "status": "dev", + "versions": { + "schema": "1.3.2", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "thena.v1.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "thena-v1-bsc", + "query-id": "thena-v1-bsc" + } + } + } + } + }, + "eigenlayer": { + "schema": "generic", + "base": "eigenlayer", + "protocol": "eigenlayer", + "project": "eigenlayer", + "deployments": { + "eigenlayer-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.3.0", + "methodology": "1.0.0" + }, + "files": { + "template": "eigenlayer.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "eigenlayer-ethereum", + "query-id": "eigenlayer-ethereum" + }, + "decentralized-network": { + "slug": "eigenlayer-ethereum", + "query-id": "68g9WSC4QTUJmMpuSbgLNENrcYha4mPmXhWGCoupM7kB" + } + } + } + } + }, + "friend-tech": { + "schema": "generic", + "base": "friend-tech", + "protocol": "friend-tech", + "project": "friend-tech", + "deployments": { + "friend-tech-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.1.0", + "methodology": "1.0.0" + }, + "files": { + "template": "friend.tech.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "friend-tech-base", + "query-id": "friend-tech-base" + }, + "decentralized-network": { + "slug": "friend-tech-base", + "query-id": "8fjDwMF5JPXYEg3tU45ttTsnp3mdTQd5efhkHhHGHCKj" + } + } + } + } + }, + "stader": { + "schema": "generic", + "base": "stader", + "protocol": "stader", + "project": "stader", + "deployments": { + "stader-ethereum": { + "network": "mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stader.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stader-ethereum", + "query-id": "stader-ethereum" + }, + "decentralized-network": { + "slug": "stader-ethereum", + "query-id": "2RLAUqUMvGGFygtuJfmTyeo62zFSJswDZSRMTcu28fSa" + } + } + } + } + }, + "etherfi": { + "schema": "generic", + "base": "etherfi", + "protocol": "etherfi", + "project": "etherfi", + "deployments": { + "etherfi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "etherfi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "etherfi-ethereum", + "query-id": "etherfi-ethereum" + }, + "decentralized-network": { + "slug": "etherfi-ethereum", + "query-id": "GPwCNqJ5aroTtkk48Y57pBjFHVkeYmMzmBpE1a7WF7Hc" + } + } + } + } + }, + "frax-ether-staking": { + "schema": "generic", + "base": "frax-ether-staking", + "protocol": "frax-ether-staking", + "project": "frax-ether-staking", + "deployments": { + "frax-ether-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-ethereum", + "query-id": "frax-ether-staking-ethereum" + }, + "decentralized-network": { + "slug": "frax-ether-staking-ethereum", + "query-id": "FeKHrGeNxVctN6EeAhba2Kv78xNxuEhbRKNECLfVH8z2" + } + } + }, + "frax-ether-staking-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-arbitrum", + "query-id": "frax-ether-staking-arbitrum" + }, + "decentralized-network": { + "slug": "frax-ether-staking-arbitrum", + "query-id": "FSafXUhkuwqARZNNe82isspkjQJcPK2PrSjQLvNXuakU" + } + } + }, + "frax-ether-staking-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-bsc", + "query-id": "frax-ether-staking-bsc" + }, + "decentralized-network": { + "slug": "frax-ether-staking-bsc", + "query-id": "A113zHKpiXzugLyKDVknAxjQ6qFSPQwfiGK7rjiuqbcq" + } + } + }, + "frax-ether-staking-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-fantom", + "query-id": "frax-ether-staking-fantom" + }, + "decentralized-network": { + "slug": "frax-ether-staking-fantom", + "query-id": "Ba52AgUJfCmWQpBJEwRvygC45iGr9uqnrehpymN2Xmx4" + } + } + }, + "frax-ether-staking-moonbeam": { + "network": "moonbeam", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-moonbeam", + "query-id": "frax-ether-staking-moonbeam" + }, + "decentralized-network": { + "slug": "frax-ether-staking-moonbeam", + "query-id": "FhaAErF9146bnqJsQD34zPHNC11quKTuk9HBA7RdGrjz" + } + } + }, + "frax-ether-staking-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-optimism", + "query-id": "frax-ether-staking-optimism" + }, + "decentralized-network": { + "slug": "frax-ether-staking-optimism", + "query-id": "G9nDvQw6S7LkzNxj7oGFZUsahe3ebpAtEww716kWkfZd" + } + } + }, + "frax-ether-staking-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "frax.ether.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "frax-ether-staking-polygon", + "query-id": "frax-ether-staking-polygon" + }, + "decentralized-network": { + "slug": "frax-ether-staking-polygon", + "query-id": "FMkrjPgSyGm2UBFrMqpJVwWgGHLek8U39W1M4R9TfP1T" + } + } + } + } + }, + "mantle-staked-eth": { + "schema": "generic", + "base": "mantle-staked-eth", + "protocol": "mantle-staked-eth", + "project": "mantle-staked-eth", + "deployments": { + "mantle-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mantle-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mantle-staked-eth-ethereum", + "query-id": "mantle-staked-eth-ethereum" + }, + "decentralized-network": { + "slug": "mantle-staked-eth-ethereum", + "query-id": "VVKZagj4XUyamqXysVBniarN8HMz87DnwkTChuXH18Z" + } + } + } + } + }, + "swell-liquid-staking": { + "schema": "generic", + "base": "swell-liquid-staking", + "protocol": "swell-liquid-staking", + "project": "swell-liquid-staking", + "deployments": { + "swell-liquid-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "swell.liquid.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "swell-liquid-staking-ethereum", + "query-id": "swell-liquid-staking-ethereum" + }, + "decentralized-network": { + "slug": "swell-liquid-staking-ethereum", + "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S" + } + } + } + } + }, + "puffer-finance": { + "schema": "generic", + "base": "puffer-finance", + "protocol": "puffer-finance", + "project": "puffer-finance", + "deployments": { + "puffer-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "puffer.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "puffer-finance-ethereum", + "query-id": "puffer-finance-ethereum" + }, + "decentralized-network": { + "slug": "puffer-finance-ethereum", + "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S" + } + } + } + } + }, + "karak": { + "schema": "generic", + "base": "karak", + "protocol": "karak", + "project": "karak", + "deployments": { + "karak-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-ethereum", + "query-id": "karak-ethereum" + }, + "decentralized-network": { + "slug": "karak-ethereum", + "query-id": "2vzPTkDT2DddrRoXtg25AGK55nviKXeJiG21Cu56nurg" + } + } + }, + "karak-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-arbitrum", + "query-id": "karak-arbitrum" + }, + "decentralized-network": { + "slug": "karak-arbitrum", + "query-id": "7kCkjx6GK67WZrVo54UcLWZ7kBx65TogBW1CD316XZgn" + } + } + }, + "karak-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "karak.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "karak-bsc", + "query-id": "karak-bsc" + }, + "decentralized-network": { + "slug": "karak-bsc", + "query-id": "8YGDQQgExT7zLJioLRQdcSQko1qgiCjfwVg7TBV6eR7W" + } + } + } + } + }, + "renzo": { + "schema": "generic", + "base": "renzo", + "protocol": "renzo", + "project": "renzo", + "deployments": { + "renzo-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-ethereum", + "query-id": "renzo-ethereum" + }, + "decentralized-network": { + "slug": "renzo-ethereum", + "query-id": "91jPrEeA5BPzDHmjKjVwmgDvGEQpAwh5yusTbHCQiQbM" + } + } + }, + "renzo-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-arbitrum", + "query-id": "renzo-arbitrum" + }, + "decentralized-network": { + "slug": "renzo-arbitrum", + "query-id": "5P79EkkSDxiXxWgiYcpsvML7Q3MSu64sHi8LF2xVggQz" + } + } + }, + "renzo-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-base", + "query-id": "renzo-base" + }, + "decentralized-network": { + "slug": "renzo-base", + "query-id": "Atj9RDj7hzmUd6a3PTzpPCpjJPzqMbvPLdxMfF2BFy5B" + } + } + }, + "renzo-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-blast", + "query-id": "renzo-blast" + }, + "decentralized-network": { + "slug": "renzo-blast", + "query-id": "HXWd4suSQ4TztRznBCi1dWdBKrHvkDPZBA2hy5nng1eL" + } + } + }, + "renzo-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-bsc", + "query-id": "renzo-bsc" + }, + "decentralized-network": { + "slug": "renzo-bsc", + "query-id": "JD3KpTX2bdwVMtZvX3HmPKSGQsVYP8FRkUJs51vZBJPR" + } + } + }, + "renzo-mode": { + "network": "mode-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "renzo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "renzo-mode", + "query-id": "renzo-mode" + }, + "decentralized-network": { + "slug": "renzo-mode", + "query-id": "AUcw3uDfWmRQDHKgnQ6C7P2139scRwvzMfrJovSGbACW" + } + } + } + } + }, + "ring-few": { + "schema": "generic", + "base": "ring-few", + "protocol": "ring-few", + "project": "ring-few", + "deployments": { + "ring-few-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ring.few.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "ring-few-blast", + "query-id": "ring-few-blast" + }, + "decentralized-network": { + "slug": "ring-few-blast", + "query-id": "FfTNTmfsJAz1gUqnc3RxGEqyaeMTRdaS4C5bYHAHbzsC" + } + } + } + } + }, + "cygnus-finance": { + "schema": "generic", + "base": "cygnus-finance", + "protocol": "cygnus-finance", + "project": "cygnus-finance", + "deployments": { + "cygnus-finance-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "cygnus.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "cygnus-finance-base", + "query-id": "cygnus-finance-base" + }, + "decentralized-network": { + "slug": "cygnus-finance-base", + "query-id": "ELqNv3KbLggc6kN6uoeKvrbfBpbkQbAorZo3FABZJb6A" + } + } + } + } + }, + "symbiotic": { + "schema": "generic", + "base": "symbiotic", + "protocol": "symbiotic", + "project": "symbiotic", + "deployments": { + "symbiotic-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "symbiotic.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "symbiotic-ethereum", + "query-id": "symbiotic-ethereum" + }, + "decentralized-network": { + "slug": "symbiotic-ethereum", + "query-id": "2Bp6ibq6y7LLUoZRi4AfPmDNLrMcM6pKJCbusMPCAvzr" + } + } + } + } + }, + "hyperlock-finance": { + "schema": "generic", + "base": "hyperlock-finance", + "protocol": "hyperlock-finance", + "project": "hyperlock-finance", + "deployments": { + "hyperlock-finance-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hyperlock.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "hyperlock-finance-blast", + "query-id": "hyperlock-finance-blast" + }, + "decentralized-network": { + "slug": "hyperlock-finance-blast", + "query-id": "tXk1UdCXjJkyvBRXvc5KvqGGZVSpdsdPoYrTAemT1kV" + } + } + } + } + }, + "amphor": { + "schema": "generic", + "base": "amphor", + "protocol": "amphor", + "project": "amphor", + "deployments": { + "amphor-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "amphor.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "amphor-ethereum", + "query-id": "amphor-ethereum" + }, + "decentralized-network": { + "slug": "amphor-ethereum", + "query-id": "RkDsVce2tRzGWbNAeZJrRy7nLAmMWtxQ6ixerhhw581" + } + } + } + } + }, + "zircuit-staking": { + "schema": "generic", + "base": "zircuit-staking", + "protocol": "zircuit-staking", + "project": "zircuit-staking", + "deployments": { + "zircuit-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "zircuit.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "zircuit-staking-ethereum", + "query-id": "zircuit-staking-ethereum" + }, + "decentralized-network": { + "slug": "zircuit-staking-ethereum", + "query-id": "AFZyi8H8ASMA3JzBf4d2eG3Ajxtx7mbD1H5G4Bpjn4ZD" + } + } + } + } + }, + "lybra-finance": { + "schema": "generic", + "base": "lybra-finance", + "protocol": "lybra-finance", + "project": "lybra-finance", + "deployments": { + "lybra-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "lybra.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "lybra-finance-ethereum", + "query-id": "lybra-finance-ethereum" + }, + "decentralized-network": { + "slug": "lybra-finance-ethereum", + "query-id": "2fNZY1J6FzuoHnx8ZTuhiEiM5AhzU3JiC7vp4UqaktSj" + } + } + } + } + }, + "stream-finance": { + "schema": "generic", + "base": "stream-finance", + "protocol": "stream-finance", + "project": "stream-finance", + "deployments": { + "stream-finance-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stream.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "stream-finance-ethereum", + "query-id": "stream-finance-ethereum" + }, + "decentralized-network": { + "slug": "stream-finance-ethereum", + "query-id": "7wzhzJbytdHNsE12B3ascjZKhP8LvoVtuhXqZ97gz2Dr" + } + } + } + } + }, + "umami-finance": { + "schema": "generic", + "base": "umami-finance", + "protocol": "umami-finance", + "project": "umami-finance", + "deployments": { + "umami-finance-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "umami.finance.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "umami-finance-arbitrum", + "query-id": "umami-finance-arbitrum" + }, + "decentralized-network": { + "slug": "umami-finance-arbitrum", + "query-id": "3nfuRKwAnT5xEBtKT9cKhdCp517TDvEqhgY1eDKAtuZi" + } + } + } + } + }, + "kelp-dao": { + "schema": "generic", + "base": "kelp-dao", + "protocol": "kelp-dao", + "project": "kelp-dao", + "deployments": { + "kelp-dao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kelp.dao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "kelp-dao-ethereum", + "query-id": "kelp-dao-ethereum" + }, + "decentralized-network": { + "slug": "kelp-dao-ethereum", + "query-id": "BKAuuey1mAQimbeKHWHQTLkFHeSn4Z9cfSJcHBaYhrV2" + } + } + } + } + }, + "chainlink-staking": { + "schema": "generic", + "base": "chainlink-staking", + "protocol": "chainlink-staking", + "project": "chainlink-staking", + "deployments": { + "chainlink-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "chainlink.staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "chainlink-staking-ethereum", + "query-id": "chainlink-staking-ethereum" + }, + "decentralized-network": { + "slug": "chainlink-staking-ethereum", + "query-id": "CEvNvcykaphaHuipRNsP5fd2LE75QLsFtLnofTcf6JZX" + } + } + } + } + }, + "liquid-collective": { + "schema": "generic", + "base": "liquid-collective", + "protocol": "liquid-collective", + "project": "liquid-collective", + "deployments": { + "liquid-collective-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "liquid.collective.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "liquid-collective-ethereum", + "query-id": "liquid-collective-ethereum" + }, + "decentralized-network": { + "slug": "liquid-collective-ethereum", + "query-id": "4kRPyZuhGgAcjYuVgbR79qm5WQ3TvXeaqVHRHx6MV5U7" + } + } + } + } + }, + "binance-staked-eth": { + "schema": "generic", + "base": "binance-staked-eth", + "protocol": "binance-staked-eth", + "project": "binance-staked-eth", + "deployments": { + "binance-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "binance-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "binance-staked-eth-ethereum", + "query-id": "binance-staked-eth-ethereum" + }, + "decentralized-network": { + "slug": "binance-staked-eth-ethereum", + "query-id": "EdxuQc4V8zGV9f34KZJhUNmBrfdPWMmbjVTzjUsyJZgd" + } + } + }, + "binance-staked-eth-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "binance-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "binance-staked-eth-bsc", + "query-id": "binance-staked-eth-bsc" + }, + "decentralized-network": { + "slug": "binance-staked-eth-bsc", + "query-id": "Hfb8J7aNfT8cjgDTYMjWt5Mb7yRtS1CJC4UQeWEfWNsU" + } + } + } + } + }, + "concentrator": { + "schema": "generic", + "base": "concentrator", + "protocol": "concentrator", + "project": "concentrator", + "deployments": { + "concentrator-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "concentrator.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "concentrator-ethereum", + "query-id": "concentrator-ethereum" + }, + "decentralized-network": { + "slug": "concentrator-ethereum", + "query-id": "FigcbmZouBnKctj6zqsvp1LhHiV1pZdVQ6ABrA27w3Lk" + } + } + } + } + }, + "vaultka": { + "schema": "generic", + "base": "vaultka", + "protocol": "vaultka", + "project": "vaultka", + "deployments": { + "vaultka-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "vaultka.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "vaultka-arbitrum", + "query-id": "vaultka-arbitrum" + }, + "decentralized-network": { + "slug": "vaultka-arbitrum", + "query-id": "GerYgkkJgdtE5LoxqiqXrxJzjDrLWixEd7D3aqfDQBxe" + } + } + } + } + }, + "benqi-staked-avax": { + "schema": "generic", + "base": "benqi-staked-avax", + "protocol": "benqi-staked-avax", + "project": "benqi-staked-avax", + "deployments": { + "benqi-staked-avax-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "benqi-staked-avax.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "benqi-staked-avax-avalanche", + "query-id": "benqi-staked-avax-avalanche" + }, + "decentralized-network": { + "slug": "benqi-staked-avax-avalanche", + "query-id": "6vSK9N1NGT65mRgMtNfoxwPkaMJoJBQJA2Z5G1fKEKCu" + } + } + } + } + }, + "stakestone": { + "schema": "generic", + "base": "stakestone", + "protocol": "stakestone", + "project": "stakestone", + "deployments": { + "stakestone-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "2.1.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakestone.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakestone-ethereum", + "query-id": "stakestone-ethereum" + }, + "decentralized-network": { + "slug": "stakestone-ethereum", + "query-id": "Dks14vz78EJf4i5SomNUBcpoLRbFKrAD8imtMdUC37bg" + } + } + } + } + }, + "llama-airforce": { + "schema": "generic", + "base": "llama-airforce", + "protocol": "llama-airforce", + "project": "llama-airforce", + "deployments": { + "llama-airforce-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "llama.airforce.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "llama-airforce-ethereum", + "query-id": "llama-airforce-ethereum" + }, + "decentralized-network": { + "slug": "llama-airforce-ethereum", + "query-id": "C2EGJcZhx44BMaT9hJ2K2zjPGdYmrnuK7MusKEXaEPPH" + } + } + } + } + }, + "mellow-lrt": { + "schema": "generic", + "base": "mellow-lrt", + "protocol": "mellow-lrt", + "project": "mellow-lrt", + "deployments": { + "mellow-lrt-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mellow.lrt.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "mellow-lrt-ethereum", + "query-id": "mellow-lrt-ethereum" + }, + "decentralized-network": { + "slug": "mellow-lrt-ethereum", + "query-id": "B5asn3DbqssJhSevYyQQUPVrtoXqfnQBqNvp1En52wCY" + } + } + } + } + }, + "eigenpie": { + "schema": "generic", + "base": "eigenpie", + "protocol": "eigenpie", + "project": "eigenpie", + "deployments": { + "eigenpie-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "eigenpie.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "eigenpie-ethereum", + "query-id": "eigenpie-ethereum" + }, + "decentralized-network": { + "slug": "eigenpie-ethereum", + "query-id": "BbkLSUBpyJv8UiCyMyQBGpngz8qfdhx4LJBqFdHqiwhH" + } + } + } + } + }, + "prime-staked-eth": { + "schema": "generic", + "base": "prime-staked-eth", + "protocol": "prime-staked-eth", + "project": "prime-staked-eth", + "deployments": { + "prime-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "prime.staked.eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "prime-staked-eth-ethereum", + "query-id": "prime-staked-eth-ethereum" + }, + "decentralized-network": { + "slug": "prime-staked-eth-ethereum", + "query-id": "222GCE8sewRURAfh7meRbkyNE9NNG2HqfVfYmfFg9MkR" + } + } + } + } + }, + "coinbase-wrapped-staked-eth": { + "schema": "generic", + "base": "coinbase-wrapped-staked-eth", + "protocol": "coinbase-wrapped-staked-eth", + "project": "coinbase-wrapped-staked-eth", + "deployments": { + "coinbase-wrapped-staked-eth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "coinbase-wrapped-staked-eth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "coinbase-wsteth-ethereum", + "query-id": "coinbase-wsteth-ethereum" + }, + "decentralized-network": { + "slug": "coinbase-wsteth-ethereum", + "query-id": "4bPFmTTqoKZcQL8DXj8jBbo86pm4RisAQeuGhZKkvA9X" + } + } + } + } + }, + "slisbnb": { + "schema": "generic", + "base": "slisbnb", + "protocol": "slisbnb", + "project": "slisbnb", + "deployments": { + "slisbnb-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "slisbnb.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "slisbnb-bsc", + "query-id": "slisbnb-bsc" + }, + "decentralized-network": { + "slug": "slisbnb-bsc", + "query-id": "7Ptuvapgqo21jvcH2dquePfmfpEwENFHERN48pKptZf3" + } + } + } + } + }, + "bedrock-unieth": { + "schema": "generic", + "base": "bedrock-unieth", + "protocol": "bedrock-unieth", + "project": "bedrock-unieth", + "deployments": { + "bedrock-unieth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bedrock.unieth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "bedrock-unieth-ethereum", + "query-id": "bedrock-unieth-ethereum" + }, + "decentralized-network": { + "slug": "bedrock-unieth-ethereum", + "query-id": "69xran7p1VnLJoLrC7g5jeGTWsEkMD5kNqhYaEPbAzx6" + } + } + } + } + }, + "origin-ether": { + "schema": "generic", + "base": "origin-ether", + "protocol": "origin-ether", + "project": "origin-ether", + "deployments": { + "origin-ether-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "origin.ether.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "origin-ether-ethereum", + "query-id": "origin-ether-ethereum" + }, + "decentralized-network": { + "slug": "origin-ether-ethereum", + "query-id": "EYpKTVtNYaVN3LfDi1BCQBxhhUq53BTWcbExDt53cH75" + } + } + } + } + }, + "node-dao": { + "schema": "generic", + "base": "node-dao", + "protocol": "node-dao", + "project": "node-dao", + "deployments": { + "node-dao-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "node.dao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "node-dao-ethereum", + "query-id": "node-dao-ethereum" + }, + "decentralized-network": { + "slug": "node-dao-ethereum", + "query-id": "FfhhdxuMRwc7R2dBZd4MH4NZKRwZm5rqEFzY4XDoEq6x" + } + } + } + } + }, + "dinero-pxeth": { + "schema": "generic", + "base": "dinero-pxeth", + "protocol": "dinero-pxeth", + "project": "dinero-pxeth", + "deployments": { + "dinero-pxeth-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "dinero-pxeth.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "dinero-pxeth-ethereum", + "query-id": "dinero-pxeth-ethereum" + }, + "decentralized-network": { + "slug": "dinero-pxeth-ethereum", + "query-id": "4WV13q7iDBhFyqprdbFX5eb2h29Qh6c7aVuCjUHX8148" + } + } + } + } + }, + "stake-link-liquid": { + "schema": "generic", + "base": "stake-link-liquid", + "protocol": "stake-link-liquid", + "project": "stake-link-liquid", + "deployments": { + "stake-link-liquid-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stake-link-liquid.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stake-link-liquid-ethereum", + "query-id": "stake-link-liquid-ethereum" + }, + "decentralized-network": { + "slug": "stake-link-liquid-ethereum", + "query-id": "AV8BsSRc9oC4dr6yN7wPi4PyXsBnW3oHqbvoKfbEr1XW" + } + } + } + } + }, + "gogopool": { + "schema": "generic", + "base": "gogopool", + "protocol": "gogopool", + "project": "gogopool", + "deployments": { + "gogopool-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gogopool.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gogopool-avalanche", + "query-id": "gogopool-avalanche" + }, + "decentralized-network": { + "slug": "gogopool-avalanche", + "query-id": "4fD8jH8YUR4HSyQZArgyX5RVvgPLoG6H1stzUeHSNBne" + } + } + } + } + }, + "gaurda-staking": { + "schema": "generic", + "base": "gaurda-staking", + "protocol": "gaurda-staking", + "project": "gaurda-staking", + "deployments": { + "gaurda-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gaurda-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gaurda-staking-ethereum", + "query-id": "gaurda-staking-ethereum" + }, + "decentralized-network": { + "slug": "gaurda-staking-ethereum", + "query-id": "7Ax8MpZkfR5CnQFKRxUEGG8TuyrW5UwxohXC8opnqZ7j" + } + } + } + } + }, + "tenderize-v2": { + "schema": "generic", + "base": "tenderize-v2", + "protocol": "tenderize-v2", + "project": "tenderize-v2", + "deployments": { + "tenderize-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tenderize-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tenderize-v2-ethereum", + "query-id": "tenderize-v2-ethereum" + }, + "decentralized-network": { + "slug": "tenderize-v2-ethereum", + "query-id": "7dyhXtGrSebgffTAduYLzbdef1EQwDWEULnVogeTDmfG" + } + } + }, + "tenderize-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tenderize-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tenderize-v2-arbitrum", + "query-id": "tenderize-v2-arbitrum" + }, + "decentralized-network": { + "slug": "tenderize-v2-arbitrum", + "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP" + } + } + } + } + }, + "tensorplex": { + "schema": "generic", + "base": "tensorplex", + "protocol": "tensorplex", + "project": "tensorplex", + "deployments": { + "tensorplex-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tensorplex.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tensorplex-ethereum", + "query-id": "tensorplex-ethereum" + }, + "decentralized-network": { + "slug": "tensorplex-ethereum", + "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP" + } + } + } + } + }, + "paxos-gold": { + "schema": "generic", + "base": "paxos-gold", + "protocol": "paxos-gold", + "project": "paxos-gold", + "deployments": { + "paxos-gold-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "paxos-gold.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "paxos-gold-ethereum", + "query-id": "paxos-gold-ethereum" + }, + "decentralized-network": { + "slug": "paxos-gold-ethereum", + "query-id": "3GYHnRz961CsPut6udWqaVdDJN7imKZWjBqfyzaAbPri" + } + } + } + } + }, + "tether-gold": { + "schema": "generic", + "base": "tether-gold", + "protocol": "tether-gold", + "project": "tether-gold", + "deployments": { + "tether-gold-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "tether-gold.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "tether-gold-ethereum", + "query-id": "tether-gold-ethereum" + }, + "decentralized-network": { + "slug": "tether-gold-ethereum", + "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3" + } + } + } + } + }, + "aurus": { + "schema": "generic", + "base": "aurus", + "protocol": "aurus", + "project": "aurus", + "deployments": { + "aurus-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aurus.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aurus-ethereum", + "query-id": "aurus-ethereum" + }, + "decentralized-network": { + "slug": "aurus-ethereum", + "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3" + } + } + } + } + }, + "klimadao": { + "schema": "generic", + "base": "klimadao", + "protocol": "klimadao", + "project": "klimadao", + "deployments": { + "klimadao-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "klimadao.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "klimadao-polygon", + "query-id": "klimadao-polygon" + }, + "decentralized-network": { + "slug": "klimadao-polygon", + "query-id": "6SasXXKVoVSFEJqEGQqUQMEL2nufjaapbNuzE7tDCuu8" + } + } + } + } + }, + "matrixdock": { + "schema": "generic", + "base": "matrixdock", + "protocol": "matrixdock", + "project": "matrixdock", + "deployments": { + "matrixdock-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "matrixdock.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "matrixdock-ethereum", + "query-id": "matrixdock-ethereum" + }, + "decentralized-network": { + "slug": "matrixdock-ethereum", + "query-id": "CAKvXVz7dzbF5HH4MVWXi1ozhCm1omWpmYk4n2s56tjJ" + } + } + } + } + }, + "powh3d": { + "schema": "generic", + "base": "powh3d", + "protocol": "powh3d", + "project": "powh3d", + "deployments": { + "powh3d-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "powh3d.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "powh3d-ethereum", + "query-id": "powh3d-ethereum" + }, + "decentralized-network": { + "slug": "powh3d-ethereum", + "query-id": "83e1tomqiwGsM2LehC4MpUUxCQKvRNk92dk6AL21oit4" + } + } + } + } + }, + "nexus-mutual": { + "schema": "generic", + "base": "nexus-mutual", + "protocol": "nexus-mutual", + "project": "nexus-mutual", + "deployments": { + "nexus-mutual-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "nexus-mutual.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "nexus-mutual-ethereum", + "query-id": "nexus-mutual-ethereum" + }, + "decentralized-network": { + "slug": "nexus-mutual-ethereum", + "query-id": "FMtuHz5h9uDsTo6Z4ZXg4zgCBrsHPqFhbSBiTjgZV1AQ" + } + } + } + } + }, + "yieldyak-staked-avax": { + "schema": "generic", + "base": "yieldyak-staked-avax", + "protocol": "yieldyak-staked-avax", + "project": "yieldyak-staked-avax", + "deployments": { + "yieldyak-staked-avax-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldyak-staked-avax.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldyak-staked-avax-avalanche", + "query-id": "yieldyak-staked-avax-avalanche" + }, + "decentralized-network": { + "slug": "yieldyak-staked-avax-avalanche", + "query-id": "DFD6o4jyHAXnrEHNZv45JHEJJAwq9atyyCoJ2oq8spc1" + } + } + } + } + }, + "blackwing": { + "schema": "generic", + "base": "blackwing", + "protocol": "blackwing", + "project": "blackwing", + "deployments": { + "blackwing-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-ethereum", + "query-id": "blackwing-ethereum" + }, + "decentralized-network": { + "slug": "blackwing-ethereum", + "query-id": "G3scLRUbu9bGGs1JwPU4yUw3JKDBi1YYVee2rwU39MeP" + } + } + }, + "blackwing-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-arbitrum", + "query-id": "blackwing-arbitrum" + }, + "decentralized-network": { + "slug": "blackwing-arbitrum", + "query-id": "BbgxhvZhDAW2HjDLFdUucHjYYLFmVHivitbyyK21MNer" + } + } + }, + "blackwing-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "blackwing.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "blackwing-bsc", + "query-id": "blackwing-bsc" + }, + "decentralized-network": { + "slug": "blackwing-bsc", + "query-id": "9PZ1rE37Krm2AtwRPaDovCqjMuAYjLAgSJZruowofv16" + } + } + } + } + }, + "creth2": { + "schema": "generic", + "base": "creth2", + "protocol": "creth2", + "project": "creth2", + "deployments": { + "creth2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "creth2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "creth2-ethereum", + "query-id": "creth2-ethereum" + }, + "decentralized-network": { + "slug": "cream-eth-2-ethereum", + "query-id": "8aXEEhktu4zb1qv388ZgP1GggJUY1btKVoqm1S1mGHmY" + } + } + } + } + }, + "stcelo": { + "schema": "generic", + "base": "stcelo", + "protocol": "stcelo", + "project": "stcelo", + "deployments": { + "stcelo-celo": { + "network": "celo", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stcelo.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stcelo-celo", + "query-id": "stcelo-celo" + }, + "decentralized-network": { + "slug": "staked-celo-celo", + "query-id": "DrXwENbuEpbJ7EHZqdEjYqeoPGSYWC35oVWuZ6LyaW3j" + } + } + } + } + }, + "hord-fi": { + "schema": "generic", + "base": "hord-fi", + "protocol": "hord-fi", + "project": "hord-fi", + "deployments": { + "hord-fi-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "hord-fi.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "hord-fi-ethereum", + "query-id": "hord-fi-ethereum" + }, + "decentralized-network": { + "slug": "hord-fi-ethereum", + "query-id": "En1soX984KfBh45TBcEVH7B2AaPxCoHAo4vEwJ2sfnx4" + } + } + } + } + }, + "anzen-v2": { + "schema": "generic", + "base": "anzen-v2", + "protocol": "anzen-v2", + "project": "anzen-v2", + "deployments": { + "anzen-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-ethereum", + "query-id": "anzen-v2-ethereum" + }, + "decentralized-network": { + "slug": "anzen-v2-ethereum", + "query-id": "FWbueBconwHjZpu7AJRAV6fx8n8dGnZ3uDkCtMgByuwu" + } + } + }, + "anzen-v2-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-base", + "query-id": "anzen-v2-base" + }, + "decentralized-network": { + "slug": "anzen-v2-base", + "query-id": "CbQHFSCr7XjAAQ1mUmNHSS2AQGrzxst5z3igTUsZMyhN" + } + } + }, + "anzen-v2-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-arbitrum", + "query-id": "anzen-v2-arbitrum" + }, + "decentralized-network": { + "slug": "anzen-v2-arbitrum", + "query-id": "6sArjf9NeQYBKABesaYjXnKP1r6iNuD4VudCDNrHrsR5" + } + } + }, + "anzen-v2-blast": { + "network": "blast-mainnet", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "anzen-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "anzen-v2-blast", + "query-id": "anzen-v2-blast" + }, + "decentralized-network": { + "slug": "anzen-v2-blast", + "query-id": "4mqq4fNs2rfnSUfv97efYiLK4ZviJsyiqBVxVmEFjibo" + } + } + } + } + }, + "mev-protocol": { + "schema": "generic", + "base": "mev-protocol", + "protocol": "mev-protocol", + "project": "mev-protocol", + "deployments": { + "mev-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mev-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mev-protocol-ethereum", + "query-id": "mev-protocol-ethereum" + }, + "decentralized-network": { + "slug": "mev-protocol-ethereum", + "query-id": "357GA1eUz5JZzi8GKT5jZmvt3qpNBUqWmffqFWBQi7Cg" + } + } + } + } + }, + "geode": { + "schema": "generic", + "base": "geode", + "protocol": "geode", + "project": "geode", + "deployments": { + "geode-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "geode.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "geode-avalanche", + "query-id": "geode-avalanche" + }, + "decentralized-network": { + "slug": "geode-avalanche", + "query-id": "Fzef5CZEkTbGuL4n852JBKDtYT9jYJ5TfVDZGnSaPCsw" + } + } + } + } + }, + "beethovenx-sftmx": { + "schema": "generic", + "base": "beethovenx-sftmx", + "protocol": "beethovenx-sftmx", + "project": "beethovenx-sftmx", + "deployments": { + "beethovenx-sftmx-fantom": { + "network": "fantom", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "beethovenx-sftmx.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "beethovenx-sftmx-fantom", + "query-id": "beethovenx-sftmx-fantom" + }, + "decentralized-network": { + "slug": "beethovenx-sftmx-fantom", + "query-id": "4XjrnBJegUimJGGop2Nxfqj1H45TGwhXSGR7GvzG9keT" + } + } + } + } + }, + "stakewise-v2": { + "schema": "generic", + "base": "stakewise-v2", + "protocol": "stakewise-v2", + "project": "stakewise-v2", + "deployments": { + "stakewise-v2-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakewise-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakewise-v2-ethereum", + "query-id": "stakewise-v2-ethereum" + }, + "decentralized-network": { + "slug": "stakewise-v2-ethereum", + "query-id": "2vmnaGa7TjrKP9Q6ncbV5WvFvEJMvAHgMAQaMpFnTmpS" + } + } + }, + "stakewise-v2-gnosis": { + "network": "gnosis", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "stakewise-v2.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "stakewise-v2-gnosis", + "query-id": "stakewise-v2-gnosis" + }, + "decentralized-network": { + "slug": "stakewise-v2-gnosis", + "query-id": "3RMneHsDkc3e9J2HeqNezZ2hssGm8Kmuknsy5kiqEtfv" + } + } + } + } + }, + "suzaku": { + "schema": "generic", + "base": "suzaku", + "protocol": "suzaku", + "project": "suzaku", + "deployments": { + "suzaku-avalanche": { + "network": "avalanche", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "suzaku.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "suzaku-avalanche", + "query-id": "suzaku-avalanche" + }, + "decentralized-network": { + "slug": "suzaku-avalanche", + "query-id": "ChnR9QwW6tzKt2hbuHLmHqeB1Sk35UzR1XDbxYBA3cvW" + } + } + } + } + }, + "deq": { + "schema": "generic", + "base": "deq", + "protocol": "deq", + "project": "deq", + "deployments": { + "deq-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "deq.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "deq-ethereum", + "query-id": "deq-ethereum" + }, + "decentralized-network": { + "slug": "deq-fi-ethereum", + "query-id": "D1b2w9gpsw5ta9kitgg1x5it7vjuYBSQSxGPzUJCE6LT" + } + } + } + } + }, + "aspida": { + "schema": "generic", + "base": "aspida", + "protocol": "aspida", + "project": "aspida", + "deployments": { + "aspida-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aspida.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aspida-ethereum", + "query-id": "aspida-ethereum" + }, + "decentralized-network": { + "slug": "aspida-ethereum", + "query-id": "BC9v6SDtvEhrruVW8mfX6ydWWH9CDEM8UCmZvJ4QSHiN" + } + } + } + } + }, + "yieldnest": { + "schema": "generic", + "base": "yieldnest", + "protocol": "yieldnest", + "project": "yieldnest", + "deployments": { + "yieldnest-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldnest.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldnest-ethereum", + "query-id": "yieldnest-ethereum" + }, + "decentralized-network": { + "slug": "yieldnest-ethereum", + "query-id": "EHG4qyPLWv4fhXHxa7hiqsaVoWFEiaDvB7pe3CzN6jL6" + } + } + }, + "yieldnest-bsc": { + "network": "bsc", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "yieldnest.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "yieldnest-bsc", + "query-id": "yieldnest-bsc" + }, + "decentralized-network": { + "slug": "yieldnest-bsc", + "query-id": "BH5pBHMxeNBzvsCnZuzJxi4kjrbyAsF5CyREGaV99gqR" + } + } + } + } + }, + "inception": { + "schema": "generic", + "base": "inception", + "protocol": "inception", + "project": "inception", + "deployments": { + "inception-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "inception.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "inception-ethereum", + "query-id": "inception-ethereum" + }, + "decentralized-network": { + "slug": "inception-ethereum", + "query-id": "8BKHkTqYumCog3xwVfhPL99pRbddk5xdL3P1k5xkSbgM" + } + } + } + } + }, + "aqua-patina": { + "schema": "generic", + "base": "aqua-patina", + "protocol": "aqua-patina", + "project": "aqua-patina", + "deployments": { + "aqua-patina-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "aqua-patina.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "aqua-patina-ethereum", + "query-id": "aqua-patina-ethereum" + }, + "decentralized-network": { + "slug": "aqua-patina-ethereum", + "query-id": "4FBKKFiCv9bk3ggBamDtEuL9gNtE7Wuef4AYpASYpgGX" + } + } + } + } + }, + "affine-restaking": { + "schema": "generic", + "base": "affine-restaking", + "protocol": "affine-restaking", + "project": "affine-restaking", + "deployments": { + "affine-restaking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "affine-restaking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "affine-restaking-ethereum", + "query-id": "affine-restaking-ethereum" + }, + "decentralized-network": { + "slug": "affine-restaking-ethereum", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" + } + } + }, + "affine-restaking-linea": { + "network": "linea", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "affine-restaking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "affine-restaking-linea", + "query-id": "affine-restaking-linea" + }, + "decentralized-network": { + "slug": "affine-restaking-linea", + "query-id": "FK525H2L7hunrwYytG8vEN3qBUqbZE4AHXVRWKWpLnJV" + } + } + } + } + }, + "kernel-protocol": { + "schema": "generic", + "base": "kernel-protocol", + "protocol": "kernel-protocol", + "project": "kernel-protocol", + "deployments": { + "kernel-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "kernel-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "kernel-protocol-ethereum", + "query-id": "kernel-protocol-ethereum" + }, + "decentralized-network": { + "slug": "kernel-protocol-ethereum", + "query-id": "BPPmqYgnXQoUfZYhVhtCT4btU81BwrrEwPBeR9rotSJD" + } + } + } + } + }, + "mountain-protocol": { + "schema": "generic", + "base": "mountain-protocol", + "protocol": "mountain-protocol", + "project": "mountain-protocol", + "deployments": { + "mountain-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-ethereum", + "query-id": "mountain-protocol-ethereum" + }, + "decentralized-network": { + "slug": "mountain-protocol-ethereum", + "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp" + } + } + }, + "mountain-protocol-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-arbitrum", + "query-id": "mountain-protocol-arbitrum" + }, + "decentralized-network": { + "slug": "mountain-protocol-arbitrum", + "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp" + } + } + }, + "mountain-protocol-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-base", + "query-id": "mountain-protocol-base" + }, + "decentralized-network": { + "slug": "mountain-protocol-base", + "query-id": "j3sSJTsVHhmBBktg63cPKxYqchRVhLKdJrJVAoWfLUn" + } + } + }, + "mountain-protocol-optimism": { + "network": "optimism", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-optimism", + "query-id": "mountain-protocol-optimism" + }, + "decentralized-network": { + "slug": "mountain-protocol-optimism", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" + } + } + }, + "mountain-protocol-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "mountain-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "mountain-protocol-polygon", + "query-id": "mountain-protocol-polygon" + }, + "decentralized-network": { + "slug": "mountain-protocol-polygon", + "query-id": "Gs7wJLxSNywuKdNYKA3Y1SdDDcUYJxd5kr6RAKqVTKvW" + } + } + } + } + }, + "flat-money": { + "schema": "generic", + "base": "flat-money", + "protocol": "flat-money", + "project": "flat-money", + "deployments": { + "flat-money-base": { + "network": "base", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "flat-money.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "flat-money-base", + "query-id": "flat-money-base" + }, + "decentralized-network": { + "slug": "flat-money-base", + "query-id": "G7ap2BncLoDoWj2U7Ak8oB1TBFyQbEYPT51d6fDnPkVb" + } + } + } + } + }, + "usual": { + "schema": "generic", + "base": "usual", + "protocol": "usual", + "project": "usual", + "deployments": { + "usual-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "usual.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "usual-ethereum", + "query-id": "usual-ethereum" + }, + "decentralized-network": { + "slug": "usual-ethereum", + "query-id": "6wn8aUC32emwyKpDd2pStwCwqcWvXYHPuhkcN3RyQsBZ" + } + } + } + } + }, + "spiko": { + "schema": "generic", + "base": "spiko", + "protocol": "spiko", + "project": "spiko", + "deployments": { + "spiko-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spiko.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiko-ethereum", + "query-id": "spiko-ethereum" + }, + "decentralized-network": { + "slug": "spiko-ethereum", + "query-id": "GMmo43Rn5SZRJUawpifZ2C3g8tet8kwv8qVsrAyQabxq" + } + } + }, + "spiko-polygon": { + "network": "polygon", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "spiko.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "spiko-polygon", + "query-id": "spiko-polygon" + }, + "decentralized-network": { + "slug": "spiko-polygon", + "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY" + } + } + } + } + }, + "gudchain": { + "schema": "generic", + "base": "gudchain", + "protocol": "gudchain", + "project": "gudchain", + "deployments": { + "gudchain-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "gudchain.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "gudchain-ethereum", + "query-id": "gudchain-ethereum" + }, + "decentralized-network": { + "slug": "gudchain-ethereum", + "query-id": "G7BnX3TE7hvyggLTUvynnmVYqnCWrQHAvFCADqKWxHBh" + } + } + } + } + }, + "superseed": { + "schema": "generic", + "base": "superseed", + "protocol": "superseed", + "project": "superseed", + "deployments": { + "superseed-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "superseed.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "superseed-ethereum", + "query-id": "superseed-ethereum" + }, + "decentralized-network": { + "slug": "superseed-ethereum", + "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY" + } + } + } + } + }, + "bracket-escrow-staking": { + "schema": "generic", + "base": "bracket-escrow-staking", + "protocol": "bracket-escrow-staking", + "project": "bracket-escrow-staking", + "deployments": { + "bracket-escrow-staking-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bracket-escrow-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bracket-escrow-staking-ethereum", + "query-id": "bracket-escrow-staking-ethereum" + }, + "decentralized-network": { + "slug": "bracket-escrow-staking-ethereum", + "query-id": "E8Vc24QPWdT2pW14erM8M3vXTWMZon4DUJ8vqSbngcZt" + } + } + }, + "bracket-escrow-staking-arbitrum": { + "network": "arbitrum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bracket-escrow-staking.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bracket-escrow-staking-arbitrum", + "query-id": "bracket-escrow-staking-arbitrum" + }, + "decentralized-network": { + "slug": "bracket-escrow-staking-arbitrum", + "query-id": "9kVpuw3Cgf6NQckem8SXH7TQGXsJ8Hb8Zm6mQF7eaiyd" + } + } + } + } + }, + "ora-protocol": { + "schema": "generic", + "base": "ora-protocol", + "protocol": "ora-protocol", + "project": "ora-protocol", + "deployments": { + "ora-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "ora-protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "ora-protocol-ethereum", + "query-id": "ora-protocol-ethereum" + }, + "decentralized-network": { + "slug": "ora-protocol-ethereum", + "query-id": "J1h9wtEcAfi32mTbNq4zQASGZJyidvEGXzi7HV8GxveF" + } + } + } + } + }, + "iguanadex-v3": { + "schema": "dex-amm", + "base": "uniswap-v3-forks", + "protocol": "iguanadex-v3", + "project": "iguanadex", + "deployments": { + "iguanadex-v3-etherlink-mainnet": { + "network": "etherlink-mainnet", + "status": "prod", + "versions": { + "schema": "4.0.1", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "iguanadexV3Template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "iguanadex-v3-etherlink-mainnet", + "query-id": "iguanadex-v3-etherlink-mainnet" + }, + "decentralized-network": { + "slug": "iguanadex-v3-etherlink-mainnet", + "query-id": "DNp3H73UxzbLMbK9sTr3MC2oLwF27aa6ptM7aYzsgxmt" + } + } + } + } + }, + "superlend": { + "schema": "lending", + "base": "aave-forks", + "protocol": "superlend", + "project": "superlend", + "deployments": { + "superlend-etherlink-mainnet": { + "network": "etherlink-mainnet", + "status": "prod", + "versions": { + "schema": "3.1.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "superlend.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "superlend-etherlink-mainnet", + "query-id": "superlend-etherlink-mainnet" + }, + "decentralized-network": { + "slug": "superlend-etherlink-mainnet", + "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" + } + } + } + } + }, + "bob-fusion": { + "schema": "generic", + "base": "bob-fusion", + "protocol": "bob-fusion", + "project": "bob-fusion", + "deployments": { + "bob-fusion-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "bob-fusion.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": true + }, + "services": { + "hosted-service": { + "slug": "bob-fusion-ethereum", + "query-id": "bob-fusion-ethereum" + }, + "decentralized-network": { + "slug": "bob-fusion-ethereum", + "query-id": "FJCXWb8Z4n59Hkv9XsadRDyWcQE2GUh5GzJ1sPagU1r3" + } + } + } + } + }, + "fx-protocol": { + "schema": "generic", + "base": "fx-protocol", + "protocol": "fx-protocol", + "project": "fx-protocol", + "deployments": { + "fx-protocol-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "fx.protocol.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "fx-protocol-ethereum", + "query-id": "fx-protocol-ethereum" + }, + "decentralized-network": { + "slug": "fx-protocol-ethereum", + "query-id": "todo" + } + } + } + } + }, + "m0-power": { + "schema": "generic", + "base": "m0-power", + "protocol": "m0-power", + "project": "m0-power", + "deployments": { + "m0-power-ethereum": { + "network": "ethereum", + "status": "prod", + "versions": { + "schema": "3.0.0", + "subgraph": "1.0.0", + "methodology": "1.0.0" + }, + "files": { + "template": "m0.power.template.yaml" + }, + "options": { + "prepare:yaml": true, + "prepare:constants": false + }, + "services": { + "hosted-service": { + "slug": "m0-power-ethereum", + "query-id": "m0-power-ethereum" + }, + "decentralized-network": { + "slug": "m0-power-ethereum", + "query-id": "TODO" + } + } + } + } + } +} diff --git a/dashboard/src/deployments/DeploymentsPage.tsx b/dashboard/src/deployments/DeploymentsPage.tsx index dbbb3a0408..dd6ca8ef8e 100644 --- a/dashboard/src/deployments/DeploymentsPage.tsx +++ b/dashboard/src/deployments/DeploymentsPage.tsx @@ -106,7 +106,7 @@ function DeploymentsPage({ navigate(`subgraph?endpoint=${val}&tab=protocol`); } }} - placeholder="Subgraph query name ie. messari/balancer-v2-ethereum" + placeholder="Enter subgraph QM hash e.g. QmXMJ2Hnhhoz6bGFNtTBjnf7kAk9CNCQG7r4R5b7fyVjD7" > Load Subgraph @@ -128,27 +128,6 @@ function DeploymentsPage({ > {showSubgraphCountTable ? "Hide" : "Show"} Subgraph Count Table - navigate("protocols-list")} - > - Protocols To Develop - - navigate("version-comparison")} - > - Version Comparison - { // Sections to move to the bottom - const bottomSections = ['bridge', 'erc20', 'erc721']; - + const bottomSections = ["bridge", "erc20", "erc721"]; + // If a is a bottom section and b is not, move a down - if (bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && - !bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase())) + if ( + bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && + !bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase()) + ) return 1; - + // If b is a bottom section and a is not, move b down - if (!bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && - bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase())) + if ( + !bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && + bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase()) + ) return -1; - + // If both are bottom sections, sort them alphabetically among themselves - if (bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && - bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase())) { + if ( + bottomSections.includes(schemaMapping[a[0]] || a[0].toLowerCase()) && + bottomSections.includes(schemaMapping[b[0]] || b[0].toLowerCase()) + ) { // Order within bottom sections: erc20, erc721, bridge const aIndex = bottomSections.indexOf(schemaMapping[a[0]] || a[0].toLowerCase()); const bIndex = bottomSections.indexOf(schemaMapping[b[0]] || b[0].toLowerCase()); return aIndex - bIndex; } - + // For all other schemas, keep alphabetical order return a[0].localeCompare(b[0]); }) @@ -404,14 +420,14 @@ function DeploymentsTable({ protocolsToQuery, issuesMapping, getData, decenDepos additionalStyles = { minHeight: "510px", overflow: "hidden" }; } return ( - @@ -442,19 +458,7 @@ function DeploymentsTable({ protocolsToQuery, issuesMapping, getData, decenDepos
- {schemaMapping[schemaType] ? ( - <> - {executeDownloadCSV} - - setDeposSelected({ ...deposSelected, [schemaMapping[schemaType]]: x }) - } - label="Deployment Selection" - /> - - ) : null} + {schemaMapping[schemaType] ? <>{executeDownloadCSV} : null} {tableHead} {tableRows} diff --git a/dashboard/src/deployments/ProtocolSection.tsx b/dashboard/src/deployments/ProtocolSection.tsx index d26b7539a2..13619f3916 100644 --- a/dashboard/src/deployments/ProtocolSection.tsx +++ b/dashboard/src/deployments/ProtocolSection.tsx @@ -17,47 +17,62 @@ interface ProtocolSection { } // Utility function to format large numbers with K, M, B notation -export const formatLargeNumber = (num: number | string | undefined): { formattedValue: string, fullValue: string } => { - if (num === undefined || num === null) { +export const formatLargeNumber = (num: number | string | undefined): { formattedValue: string; fullValue: string } => { + if (num === undefined || num === null || num === "N/A") { return { formattedValue: "N/A", fullValue: "N/A" }; } - + + // Handle value of 0 to display as "N/A" + if (num === 0 || num === "0" || num === "0.00" || num === "0.00%" || num === 0.0) { + return { formattedValue: "N/A", fullValue: "N/A" }; + } + // Convert string to number if needed - const numValue = typeof num === 'string' ? parseFloat(num) : num; - + const numValue = typeof num === "string" ? parseFloat(num) : num; + + // Handle NaN or very small numbers as "N/A" + if (isNaN(numValue) || numValue === 0) { + return { formattedValue: "N/A", fullValue: "N/A" }; + } + // Format the full value with commas for tooltip - const fullValue = typeof numValue === 'number' ? numValue.toLocaleString() : String(num); - + const fullValue = typeof numValue === "number" ? numValue.toLocaleString() : String(num); + // Early return for small numbers or non-numbers - if (typeof numValue !== 'number' || isNaN(numValue)) { + if (typeof numValue !== "number" || isNaN(numValue)) { return { formattedValue: String(num), fullValue }; } - + // Format with abbreviations based on magnitude if (numValue >= 1_000_000_000) { - return { - formattedValue: (numValue / 1_000_000_000).toFixed(1) + 'B', - fullValue + return { + formattedValue: (numValue / 1_000_000_000).toFixed(1) + "B", + fullValue, }; } else if (numValue >= 1_000_000) { - return { - formattedValue: (numValue / 1_000_000).toFixed(1) + 'M', - fullValue + return { + formattedValue: (numValue / 1_000_000).toFixed(1) + "M", + fullValue, }; } else if (numValue >= 1_000) { - return { - formattedValue: (numValue / 1_000).toFixed(1) + 'K', - fullValue + return { + formattedValue: (numValue / 1_000).toFixed(1) + "K", + fullValue, }; } - + return { formattedValue: fullValue, fullValue }; }; // Component to display a number with formatting and tooltip export const FormattedNumber = ({ value }: { value: number | string | undefined }) => { + // If value is "N/A" or undefined, display "N/A" + if (value === "N/A" || value === undefined) { + return N/A; + } + const { formattedValue, fullValue } = formatLargeNumber(value); - + return ( {formattedValue} @@ -70,11 +85,11 @@ const safeDisplayMetric = (value: any, defaultValue: string = "N/A"): string => if (value === undefined || value === null) { return defaultValue; } - - if (typeof value === 'number') { + + if (typeof value === "number") { return value.toLocaleString(); } - + return String(value); }; @@ -83,11 +98,11 @@ const getSafeMetric = (depoObject: any, property: string, defaultValue: string = if (!depoObject || depoObject[property] === undefined || depoObject[property] === null) { return defaultValue; } - - if (typeof depoObject[property] === 'number') { + + if (typeof depoObject[property] === "number") { return depoObject[property].toLocaleString(); } - + return String(depoObject[property]); }; @@ -101,7 +116,7 @@ function ProtocolSection({ validationSupported, }: ProtocolSection) { // NOTE: We now ONLY show decentralized network deployments as the hosted service is being deprecated - + const navigate = useNavigate(); const [showDeposDropDown, toggleShowDeposDropDown] = useState(false); @@ -113,19 +128,17 @@ function ProtocolSection({ const subNameUpper = subgraphName.toUpperCase(); // Filter to only show networks with decentralizedNetworkId - const decentralizedNetworks = protocol.networks.filter((depo: any) => - !!depo?.decentralizedNetworkId - ); - + const decentralizedNetworks = protocol.networks.filter((depo: any) => !!depo?.decentralizedNetworkId); + // If no networks have decentralizedNetworkId, don't render this protocol if (decentralizedNetworks.length === 0) { return null; } - + let hasDecentralizedDepo = decentralizedNetworks.length > 0; let prodStatusIcon = "https://images.emojiterra.com/twitter/v13.1/512px/2705.png"; let prodStatusHover = "Subgraph is frozen"; - + decentralizedNetworks.forEach((depo: any) => { if (Array.isArray(issuesTitles)) { const openRepoIssue = issuesTitles.find((x: any) => { @@ -157,24 +170,31 @@ function ProtocolSection({ } return x; }); - + schemaCell = ( -
+
{schemaVersOnProtocol.map((version: string, index: number) => ( - + {version} ))} @@ -184,7 +204,7 @@ function ProtocolSection({ } catch (err: any) { console.error(err.message); } - + const depoRowsOnProtocol = decentralizedNetworks.map((depo: any) => { let chainLabel = depo.chain; if (decentralizedNetworks.filter((x: any) => x.chain === depo.chain).length > 1) { @@ -200,9 +220,10 @@ function ProtocolSection({ let highlightColor = "#3f51b5"; const depoObject = depo.decentralizedIndexStatus; let synced = depoObject ? depoObject["synced"] : false; - let indexedPercentage = depoObject && typeof depoObject["indexed-percentage"] === "number" - ? formatIntToFixed2(depoObject["indexed-percentage"]) - : "0.00"; + let indexedPercentage = + depoObject && typeof depoObject["indexed-percentage"] === "number" + ? formatIntToFixed2(depoObject["indexed-percentage"]) + : "0.00"; if (synced && Number(indexedPercentage) > 99) { highlightColor = "#58BC82"; @@ -216,17 +237,17 @@ function ProtocolSection({ if (decenSubgraphKey) { decenSubgraphId = decenDeposToSubgraphIds[decenSubgraphKey]?.id; } - + // Get the deployment ID from the decentralized network service // This retrieves the actual deployment ID from the API response - const deploymentId = depo.decentralizedIndexStatus && - depo.decentralizedIndexStatus["deployment-id"] ? - depo.decentralizedIndexStatus["deployment-id"] : - depo.decentralizedNetworkId || ""; - + const deploymentId = + depo.decentralizedIndexStatus && depo.decentralizedIndexStatus["deployment-id"] + ? depo.decentralizedIndexStatus["deployment-id"] + : depo.decentralizedNetworkId || ""; + // Use the deployment ID directly as the endpoint URL let endpointURL = deploymentId; - + // Keep a reference to the old URL construction for logging/debugging purposes /* let oldEndpointURL = @@ -276,41 +297,19 @@ function ProtocolSection({ decenRow = ( { - if (event.ctrlKey) { - if (!validationSupported) { - window.open( - process.env.REACT_APP_GRAPH_EXPLORER_URL! + "/subgraphs/" + depo.decentralizedNetworkId, - "_blank" - ); - return; - } - if (depoObject["is-healthy"]) { - window.open(`${window.location.href}subgraph?endpoint=${endpointURL}&tab=protocol`, "_blank"); - } else { - window.open( - process.env.REACT_APP_OKGRAPH_BASE_URL! + "/?q=" + deploymentId, - "_blank", - ); - } - } else { - if (!validationSupported) { - window.location.href = process.env.REACT_APP_GRAPH_EXPLORER_URL! + "/subgraphs/" + depo.decentralizedNetworkId; - return; - } - if (depoObject["is-healthy"]) { - navigate(`/subgraph?endpoint=${endpointURL}&tab=protocol`); - } else { - window.location.href = - process.env.REACT_APP_OKGRAPH_BASE_URL! + "/?q=" + deploymentId; - } + // Only redirect to The Graph Explorer, not to internal pages + if (!validationSupported || event.ctrlKey) { + window.open( + process.env.REACT_APP_GRAPH_EXPLORER_URL! + "/subgraphs/" + depo.decentralizedNetworkId, + "_blank", + ); } - return; }} key={subgraphName + depo.decentralizedNetworkId + "DepInDevRow-DECEN"} - sx={{ - height: "10px", - width: "100%", - backgroundColor: "rgba(22,24,29,0.9)", + sx={{ + height: "10px", + width: "100%", + backgroundColor: "rgba(22,24,29,0.9)", cursor: "pointer", position: "relative", "&::before": { @@ -320,14 +319,16 @@ function ProtocolSection({ top: 0, bottom: 0, width: "4px", - backgroundColor: depoObject && !depoObject["is-healthy"] - ? "#B8301C" // Red for unhealthy - : depoObject && depoObject["synced"] && - typeof depoObject["indexed-percentage"] === "number" && - Number(formatIntToFixed2(depoObject["indexed-percentage"])) > 99 - ? "#58BC82" // Green for synced - : "#EFCB68", // Yellow/orange for in-progress - } + backgroundColor: + depoObject && !depoObject["is-healthy"] + ? "#B8301C" // Red for unhealthy + : depoObject && + depoObject["synced"] && + typeof depoObject["indexed-percentage"] === "number" && + Number(formatIntToFixed2(depoObject["indexed-percentage"])) > 99 + ? "#58BC82" // Green for synced + : "#EFCB68", // Yellow/orange for in-progress + }, }} > @@ -424,8 +425,13 @@ function ProtocolSection({ textAlign: "right", }} > - {depo.decentralizedIndexStatus && typeof depo.decentralizedIndexStatus["indexed-percentage"] === "number" - ? formatIntToFixed2(depo.decentralizedIndexStatus["indexed-percentage"]) + "%" + {depo.decentralizedIndexStatus && + typeof depo.decentralizedIndexStatus["indexed-percentage"] !== "undefined" && + depo.decentralizedIndexStatus["indexed-percentage"] !== "N/A" && + depo.decentralizedIndexStatus["indexed-percentage"] !== 0 && + depo.decentralizedIndexStatus["indexed-percentage"] !== "0" && + parseFloat(depo.decentralizedIndexStatus["indexed-percentage"]) !== 0 + ? formatIntToFixed2(depo.decentralizedIndexStatus["indexed-percentage"]) + "%" : "N/A"} - {depo.decentralizedIndexStatus ? - : "N/A"} + - {depo.decentralizedIndexStatus ? - : "N/A"} + - {depo.decentralizedIndexStatus ? - : "N/A"} + {depo?.versions?.subgraph ? ( - + {depo?.versions?.subgraph} - ) : "N/A"} + ) : ( + "N/A" + )} @@ -512,8 +525,16 @@ function ProtocolSection({ }} > - {depo.decentralizedIndexStatus ? - : "N/A"} + @@ -533,14 +554,22 @@ function ProtocolSection({ toggleShowDeposDropDown(!showDeposDropDown); }} key={subgraphName + "DepInDevRow"} - sx={{ - cursor: "pointer", - height: "10px", - width: "100%", - backgroundColor: "rgba(22,24,29,0.9)" + sx={{ + cursor: "pointer", + height: "10px", + width: "100%", + backgroundColor: "rgba(22,24,29,0.9)", }} > - + @@ -561,37 +590,19 @@ function ProtocolSection({ {decentralizedNetworks.map((x: { [x: string]: any }) => { - let borderColor = "#EFCB68"; - let indexedPercentage = formatIntToFixed2(0); - - const depoObject = x.decentralizedIndexStatus; - if (depoObject) { - let synced = depoObject["synced"]; - indexedPercentage = typeof depoObject["indexed-percentage"] === "number" - ? formatIntToFixed2(depoObject["indexed-percentage"]) - : "0.00"; - - if (!depoObject["is-healthy"]) { - borderColor = "#B8301C"; - } else { - if (synced && Number(indexedPercentage) > 99) { - borderColor = "#58BC82"; - indexedPercentage = formatIntToFixed2(100); - } - } - } - return ( - + ); })} @@ -626,26 +637,33 @@ function ProtocolSection({ {protocol?.subgraphVersions?.length > 0 ? ( -
+
{protocol?.subgraphVersions.map((version: string, index: number) => ( - + {version} ))}
- ) : "N/A"} + ) : ( + "N/A" + )} @@ -669,24 +687,31 @@ function ProtocolSection({ } return x; }); - + schemaCell = ( -
+
{schemaVersOnProtocol.map((version: string, index: number) => ( - + {version} ))} @@ -726,14 +751,16 @@ function ProtocolSection({ toggleShowDeposDropDown(!showDeposDropDown); }} key={subgraphName + "DepInDevRow"} - sx={{ - cursor: "pointer", - height: "10px", - width: "100%", - backgroundColor: "rgba(22,24,29,0.9)" + sx={{ + cursor: "pointer", + height: "10px", + width: "100%", + backgroundColor: "rgba(22,24,29,0.9)", }} > - + @@ -756,37 +783,19 @@ function ProtocolSection({ <> {decentralizedNetworks.map((x: { [x: string]: any }) => { - let borderColor = "#EFCB68"; - let indexedPercentage = formatIntToFixed2(0); - - const depoObject = x.decentralizedIndexStatus; - if (depoObject) { - let synced = depoObject["synced"]; - indexedPercentage = typeof depoObject["indexed-percentage"] === "number" - ? formatIntToFixed2(depoObject["indexed-percentage"]) - : "0.00"; - - if (!depoObject["is-healthy"]) { - borderColor = "#B8301C"; - } else { - if (synced && Number(indexedPercentage) > 99) { - borderColor = "#58BC82"; - indexedPercentage = formatIntToFixed2(100); - } - } - } - return ( - + ); })} @@ -823,26 +832,33 @@ function ProtocolSection({ {protocol?.subgraphVersions?.length > 0 ? ( -
+
{protocol?.subgraphVersions.map((version: string, index: number) => ( - + {version} ))}
- ) : "N/A"} + ) : ( + "N/A" + )} @@ -853,4 +869,3 @@ function ProtocolSection({ } export default ProtocolSection; - diff --git a/dashboard/src/deployments/VersionComparison.tsx b/dashboard/src/deployments/VersionComparison.tsx index cdec6d2b07..98198f735c 100644 --- a/dashboard/src/deployments/VersionComparison.tsx +++ b/dashboard/src/deployments/VersionComparison.tsx @@ -190,7 +190,7 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps return ( {depo} @@ -199,11 +199,6 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps {type} - (window.location.href = versionPending - ? "/subgraph?endpoint=" + slugToQueryString[depo] + "&tab=protocol&version=pending" - : "#") - } sx={{ padding: "0", paddingRight: "6px", @@ -214,11 +209,6 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps {versionPending} - (window.location.href = versionDecen - ? "/subgraph?endpoint=" + slugToQueryString[depo + " (Decentralized)"] + "&tab=protocol" - : "#") - } sx={{ padding: "0", paddingRight: "6px", @@ -229,11 +219,6 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps {versionDecen} - (window.location.href = versionHostedService - ? "/subgraph?endpoint=" + slugToQueryString[depo] + "&tab=protocol" - : "#") - } sx={{ padding: "0", paddingRight: "6px", @@ -251,11 +236,8 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps } else if (subgraphVersionMapping[depo]) { failedQueryRows.push( - (window.location.href = process.env.REACT_APP_OKGRAPH_BASE_URL! + "/?q=" + slugToQueryString[depo]) - } key={depo + "RowComp"} - sx={{ height: "10px", width: "100%", backgroundColor: "rgba(22,24,29,0.9)", cursor: "pointer" }} + sx={{ height: "10px", width: "100%", backgroundColor: "rgba(22,24,29,0.9)" }} > {depo} @@ -319,4 +301,3 @@ function VersionComparison({ protocolsToQuery, getData }: VersionComparisonProps } export default VersionComparison; - diff --git a/dashboard/src/scripts/prepare-deployment-data.js b/dashboard/src/scripts/prepare-deployment-data.js new file mode 100644 index 0000000000..4f679f30b4 --- /dev/null +++ b/dashboard/src/scripts/prepare-deployment-data.js @@ -0,0 +1,142 @@ +const fs = require("fs"); +const path = require("path"); +const https = require("https"); + +// GitHub raw URL for deployment.json +const GITHUB_DEPLOYMENT_URL = "https://raw.githubusercontent.com/messari/subgraphs/master/deployment/deployment.json"; + +// Output path +const DEST_PATH = path.resolve(__dirname, "../deployment-formatted.json"); + +// Function to download the deployment.json from GitHub +function downloadDeploymentJson() { + return new Promise((resolve, reject) => { + console.log("Downloading deployment.json from GitHub..."); + https + .get(GITHUB_DEPLOYMENT_URL, (response) => { + if (response.statusCode !== 200) { + reject(new Error(`Failed to download: ${response.statusCode}`)); + return; + } + + let data = ""; + response.on("data", (chunk) => { + data += chunk; + }); + + response.on("end", () => { + try { + const parsedData = JSON.parse(data); + console.log("Successfully downloaded deployment.json from GitHub"); + resolve(parsedData); + } catch (e) { + reject(new Error("Failed to parse downloaded JSON")); + } + }); + }) + .on("error", (err) => { + reject(err); + }); + }); +} + +// Process the deployment data +async function processDeploymentData() { + try { + // Always download from GitHub + const deploymentData = await downloadDeploymentJson(); + + console.log(`Processing ${Object.keys(deploymentData).length} protocols...`); + + // Transform the data to match the API response format + Object.keys(deploymentData).forEach((protocolName) => { + const protocol = deploymentData[protocolName]; + + if (protocol.deployments) { + Object.keys(protocol.deployments).forEach((deploymentKey) => { + const deployment = protocol.deployments[deploymentKey]; + + // Ensure services object exists + if (!deployment.services) { + deployment.services = {}; + } + + // Ensure hosted-service exists if needed + if (!deployment.services["hosted-service"]) { + deployment.services["hosted-service"] = { + slug: deploymentKey, + "query-id": deploymentKey, + health: [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + synced: false, + "indexed-percentage": "N/A", + "has-been-enhanced": true, + }, + ], + }; + } else if (deployment.services["hosted-service"] && !deployment.services["hosted-service"].health) { + deployment.services["hosted-service"].health = [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + synced: false, + "indexed-percentage": "N/A", + "has-been-enhanced": true, + }, + ]; + } + + // Ensure decentralized-network exists if needed + if (!deployment.services["decentralized-network"]) { + deployment.services["decentralized-network"] = { + slug: deploymentKey, + "query-id": "todo", + health: [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + synced: false, + "indexed-percentage": "N/A", + "has-been-enhanced": true, + }, + ], + }; + } else if ( + deployment.services["decentralized-network"] && + !deployment.services["decentralized-network"].health + ) { + deployment.services["decentralized-network"].health = [ + { + "start-block": "N/A", + "latest-block": "N/A", + "chain-head-block": "N/A", + "entity-count": "N/A", + synced: false, + "indexed-percentage": "N/A", + "has-been-enhanced": true, + }, + ]; + } + }); + } + }); + + // Write the transformed data to the destination file + fs.writeFileSync(DEST_PATH, JSON.stringify(deploymentData, null, 2)); + console.log("Successfully wrote formatted deployment data to:", DEST_PATH); + } catch (error) { + console.error("Error processing deployment data:", error); + process.exit(1); + } +} + +// Run the main function +processDeploymentData(); diff --git a/dashboard/src/utils/index.ts b/dashboard/src/utils/index.ts index 213193fbad..9d2f129439 100644 --- a/dashboard/src/utils/index.ts +++ b/dashboard/src/utils/index.ts @@ -406,7 +406,7 @@ export function upperCaseFirstOfString(str: string) { } /** - * Enhances deployment health metrics by properly extracting data from the + * Enhances deployment health metrics by properly extracting data from the * deployment object. This ensures the health metrics like "Indexed %", * "Start Block", "Current Block", and "Chain Head" are correctly displayed. * @param deploymentData Deployment data from the Messari Status API @@ -419,81 +419,111 @@ export function enhanceHealthMetrics(deploymentData: any) { const hostedService = deploymentData.services["hosted-service"]; const decentralizedNetwork = deploymentData.services["decentralized-network"]; - + // Process hosted service health data - if (hostedService && Array.isArray(hostedService.health) && hostedService.health.length > 0) { - for (let i = 0; i < hostedService.health.length; i++) { - const healthData = hostedService.health[i]; - - if (!healthData) { - continue; - } - - // Ensure these fields exist with default values if they don't - // Convert to numbers where appropriate - healthData["start-block"] = safeNumberConversion(healthData["start-block"], 0); - healthData["latest-block"] = safeNumberConversion(healthData["latest-block"], 0); - healthData["chain-head-block"] = safeNumberConversion(healthData["chain-head-block"], 0); - healthData["entity-count"] = safeNumberConversion(healthData["entity-count"], 0); - - if (healthData["synced"] === undefined || healthData["synced"] === null) { - healthData["synced"] = false; - } - - // Calculate indexed percentage - const startBlock = healthData["start-block"]; - const latestBlock = healthData["latest-block"]; - const chainHeadBlock = healthData["chain-head-block"]; - - if (chainHeadBlock > startBlock) { - const indexedPercentage = ((latestBlock - startBlock) / (chainHeadBlock - startBlock)) * 100; - healthData["indexed-percentage"] = indexedPercentage > 99.5 ? 100 : indexedPercentage; - } else { - healthData["indexed-percentage"] = 0; + if (hostedService) { + // If health is null, create an empty array for compatibility + if (hostedService.health === null) { + hostedService.health = []; + // Add a single mock health entry with default values + hostedService.health.push({ + "start-block": 0, + "latest-block": 0, + "chain-head-block": 0, + "entity-count": 0, + synced: false, + "indexed-percentage": 0, + "has-been-enhanced": true, + }); + } else if (Array.isArray(hostedService.health) && hostedService.health.length > 0) { + for (let i = 0; i < hostedService.health.length; i++) { + const healthData = hostedService.health[i]; + + if (!healthData) { + continue; + } + + // Ensure these fields exist with default values if they don't + // Convert to numbers where appropriate + healthData["start-block"] = safeNumberConversion(healthData["start-block"], 0); + healthData["latest-block"] = safeNumberConversion(healthData["latest-block"], 0); + healthData["chain-head-block"] = safeNumberConversion(healthData["chain-head-block"], 0); + healthData["entity-count"] = safeNumberConversion(healthData["entity-count"], 0); + + if (healthData["synced"] === undefined || healthData["synced"] === null) { + healthData["synced"] = false; + } + + // Calculate indexed percentage + const startBlock = healthData["start-block"]; + const latestBlock = healthData["latest-block"]; + const chainHeadBlock = healthData["chain-head-block"]; + + if (chainHeadBlock > startBlock) { + const indexedPercentage = ((latestBlock - startBlock) / (chainHeadBlock - startBlock)) * 100; + healthData["indexed-percentage"] = indexedPercentage > 99.5 ? 100 : indexedPercentage; + } else { + healthData["indexed-percentage"] = 0; + } + + // Set a flag to indicate that this health data has been enhanced + healthData["has-been-enhanced"] = true; } - - // Set a flag to indicate that this health data has been enhanced - healthData["has-been-enhanced"] = true; } } - + // Process decentralized network health data - if (decentralizedNetwork && Array.isArray(decentralizedNetwork.health) && decentralizedNetwork.health.length > 0) { - for (let i = 0; i < decentralizedNetwork.health.length; i++) { - const healthData = decentralizedNetwork.health[i]; - - if (!healthData) { - continue; - } - - // Ensure these fields exist with default values if they don't - // Convert to numbers where appropriate - healthData["start-block"] = safeNumberConversion(healthData["start-block"], 0); - healthData["latest-block"] = safeNumberConversion(healthData["latest-block"], 0); - healthData["chain-head-block"] = safeNumberConversion(healthData["chain-head-block"], 0); - healthData["entity-count"] = safeNumberConversion(healthData["entity-count"], 0); - - if (healthData["synced"] === undefined || healthData["synced"] === null) { - healthData["synced"] = false; - } - - // Calculate indexed percentage - const startBlock = healthData["start-block"]; - const latestBlock = healthData["latest-block"]; - const chainHeadBlock = healthData["chain-head-block"]; - - if (chainHeadBlock > startBlock) { - const indexedPercentage = ((latestBlock - startBlock) / (chainHeadBlock - startBlock)) * 100; - healthData["indexed-percentage"] = indexedPercentage > 99.5 ? 100 : indexedPercentage; - } else { - healthData["indexed-percentage"] = 0; + if (decentralizedNetwork) { + // If health is null, create an empty array for compatibility + if (decentralizedNetwork.health === null) { + decentralizedNetwork.health = []; + // Add a single mock health entry with default values + decentralizedNetwork.health.push({ + "start-block": 0, + "latest-block": 0, + "chain-head-block": 0, + "entity-count": 0, + synced: false, + "indexed-percentage": 0, + "has-been-enhanced": true, + }); + } else if (Array.isArray(decentralizedNetwork.health) && decentralizedNetwork.health.length > 0) { + for (let i = 0; i < decentralizedNetwork.health.length; i++) { + const healthData = decentralizedNetwork.health[i]; + + if (!healthData) { + continue; + } + + // Ensure these fields exist with default values if they don't + // Convert to numbers where appropriate + healthData["start-block"] = safeNumberConversion(healthData["start-block"], 0); + healthData["latest-block"] = safeNumberConversion(healthData["latest-block"], 0); + healthData["chain-head-block"] = safeNumberConversion(healthData["chain-head-block"], 0); + healthData["entity-count"] = safeNumberConversion(healthData["entity-count"], 0); + + if (healthData["synced"] === undefined || healthData["synced"] === null) { + healthData["synced"] = false; + } + + // Calculate indexed percentage + const startBlock = healthData["start-block"]; + const latestBlock = healthData["latest-block"]; + const chainHeadBlock = healthData["chain-head-block"]; + + if (chainHeadBlock > startBlock) { + const indexedPercentage = ((latestBlock - startBlock) / (chainHeadBlock - startBlock)) * 100; + healthData["indexed-percentage"] = indexedPercentage > 99.5 ? 100 : indexedPercentage; + } else { + healthData["indexed-percentage"] = 0; + } + + // Set a flag to indicate that this health data has been enhanced + healthData["has-been-enhanced"] = true; } - - // Set a flag to indicate that this health data has been enhanced - healthData["has-been-enhanced"] = true; } } - + return deploymentData; } @@ -507,11 +537,11 @@ function safeNumberConversion(value: any, defaultValue: number): number { if (value === undefined || value === null) { return defaultValue; } - - if (typeof value === 'number') { + + if (typeof value === "number") { return value; } - + const parsed = Number(value); return !isNaN(parsed) ? parsed : defaultValue; } From 08eac9392aa6459a12301e46d2758a95e5cfb206 Mon Sep 17 00:00:00 2001 From: Chris Steege Date: Mon, 24 Mar 2025 13:18:58 -0400 Subject: [PATCH 2/2] rm formatted deployment.json --- dashboard/src/App.tsx | 55 +- dashboard/src/deployment-formatted.json | 25104 ---------------- dashboard/src/deployment.json | 14144 --------- .../src/scripts/prepare-deployment-data.js | 142 - dashboard/src/utils/index.ts | 57 + 5 files changed, 101 insertions(+), 39401 deletions(-) delete mode 100644 dashboard/src/deployment-formatted.json delete mode 100644 dashboard/src/deployment.json delete mode 100644 dashboard/src/scripts/prepare-deployment-data.js diff --git a/dashboard/src/App.tsx b/dashboard/src/App.tsx index 956a627b63..87f5b7ea7e 100644 --- a/dashboard/src/App.tsx +++ b/dashboard/src/App.tsx @@ -7,7 +7,7 @@ import { DashboardHeader } from "./common/headerComponents/DashboardHeader"; import { dashboardVersion, DashboardVersion } from "./common/DashboardVersion"; import { Route, Routes } from "react-router"; import { useEffect, useMemo, useState } from "react"; -import { NewClient, schemaMapping, enhanceHealthMetrics } from "./utils"; +import { NewClient, schemaMapping, enhanceHealthMetrics, processDeploymentData } from "./utils"; import { useQuery } from "@apollo/client"; import { decentralizedNetworkSubgraphsQuery } from "./queries/decentralizedNetworkSubgraphsQuery"; @@ -15,8 +15,11 @@ function App() { console.log("RUNNING VERSION " + dashboardVersion); const [loading, setLoading] = useState(false); const [protocolsToQuery, setProtocolsToQuery] = useState({}); - const [issuesMapping, setIssuesMapping] = useState({}); + // Add cache timestamp state + const [lastFetchTime, setLastFetchTime] = useState(0); + // Cache expiry time - 15 minutes (in milliseconds) + const CACHE_EXPIRY_TIME = 15 * 60 * 1000; const getGithubRepoIssues = () => { try { @@ -50,25 +53,55 @@ function App() { const getDeployments = () => { if (Object.keys(protocolsToQuery).length === 0) { setLoading(true); + + // Check if cache is still valid (less than 15 minutes old) + const currentTime = Date.now(); + const shouldUseCachedData = currentTime - lastFetchTime < CACHE_EXPIRY_TIME; + + // If we have cached data that's still valid, use it from local storage + if (shouldUseCachedData) { + try { + const cachedData = localStorage.getItem("deploymentData"); + if (cachedData) { + const parsedData = JSON.parse(cachedData); + setProtocolsToQuery(parsedData); + setLoading(false); + console.log("Using cached deployment data"); + return; + } + } catch (error) { + console.error("Error retrieving cached data:", error); + // Continue with fetch if cache retrieval fails + } + } + try { - // TEMP FIX: Using local deployment data while the API is down - // TO REVERT: Replace this import with the original fetch call - import("./deployment-formatted.json") - .then(function (deploymentData) { + // Fetch the raw deployment data directly from GitHub + fetch("https://raw.githubusercontent.com/messari/subgraphs/master/deployment/deployment.json") + .then((response) => response.json()) + .then((deploymentData) => { + // Process the deployment data on the fly + const processedData = processDeploymentData(deploymentData); setLoading(false); - // Use the pre-formatted data that matches the API response format - const json = deploymentData.default || deploymentData; + setProtocolsToQuery(processedData); - setProtocolsToQuery(json); + // Update cache timestamp and store the processed data in localStorage + setLastFetchTime(currentTime); + try { + localStorage.setItem("deploymentData", JSON.stringify(processedData)); + } catch (cacheError) { + console.error("Error caching deployment data:", cacheError); + } }) .catch((err) => { setLoading(false); - console.error("Error loading deployment data:", err); + console.error("Error loading deployment data from GitHub:", err); + // Show empty state instead of trying to fallback to the deleted file setProtocolsToQuery({}); }); } catch (error) { setLoading(false); - console.error(error); + console.error("Error in getDeployments:", error); setProtocolsToQuery({}); } } diff --git a/dashboard/src/deployment-formatted.json b/dashboard/src/deployment-formatted.json deleted file mode 100644 index 3eb38d4d4a..0000000000 --- a/dashboard/src/deployment-formatted.json +++ /dev/null @@ -1,25104 +0,0 @@ -{ - "abracadabra": { - "schema": "lending", - "base": "abracadabra", - "protocol": "abracadabra", - "project": "abracadabra", - "deployments": { - "abracadabra-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-arbitrum", - "query-id": "abracadabra-money-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "abracadabra-money-arbitrum", - "query-id": "3m97d2dJ2pXwPFuiHrm8T37V9TCoAHBpMqRwdguyUZXF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "abracadabra-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-avalanche", - "query-id": "abracadabra-money-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "abracadabra-money-avalanche", - "query-id": "3Gkei7B24o9C2bCoAbQpApZqMStPta7oCAnNhmNv5dab", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "abracadabra-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-bsc", - "query-id": "abracadabra-money-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "abracadabra-money-bsc", - "query-id": "6bFCfHn5Uuv5fH7PxKL12dzWh3zz7fkQ46EnMa7nZUj2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "abracadabra-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-fantom", - "query-id": "abracadabra-money-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "abracadabra-money-fantom", - "query-id": "2nxGrxxPShrm49dEWusJjB5dpmonN16JFzLwDrS1pCyq", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "abracadabra-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-ethereum", - "query-id": "abracadabra-money-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "abracadabra-money-ethereum", - "query-id": "GLAu42kvVs7ixfXcmkAsRiS7Xt1NCpgkKsnz3qiriuvV", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-arc": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-arc", - "project": "aave", - "deployments": { - "aave-arc-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.arc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-arc-ethereum", - "query-id": "aave-arc-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-arc-ethereum", - "query-id": "5hyqnEzjZbwFBU1rk4JBknCeiF2Mj93qBzsyQfpAa3QA", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-amm": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-amm", - "project": "aave", - "deployments": { - "aave-amm-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.amm.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-amm-ethereum", - "query-id": "aave-amm-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-amm-ethereum", - "query-id": "41ooPWnDYKwckqyG1mvg7ZEndy5zMemXinx6uQxscrBS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-rwa": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-rwa", - "project": "aave", - "deployments": { - "aave-rwa-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.rwa.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-rwa-ethereum", - "query-id": "aave-rwa-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-rwa-ethereum", - "query-id": "C8ynQrjVKcmqxb9fWrLvSCBFNf2ChFkxCg7Q8gknJrza", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-v2": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-v2", - "project": "aave", - "deployments": { - "aave-v2-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-avalanche", - "query-id": "aave-v2-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v2-avalanche", - "query-id": "9nh6Ums63wFcoZpmegyPcAFtY3CAzQc3S6cuERALYMqa", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-ethereum", - "query-id": "aave-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v2-ethereum", - "query-id": "C2zniPn45RnLDGzVeGZCx2Sw3GXrbc9gL4ZfL8B8Em2j", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v2-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-polygon", - "query-id": "aave-v2-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v2-polygon", - "query-id": "GrZQJ7sWdTqiNUD8Vh2THaeBM4wGwiF8mFv9FBfyzwxm", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-v3": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-v3", - "project": "aave", - "deployments": { - "aave-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.3", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-arbitrum", - "query-id": "aave-v3-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-arbitrum", - "query-id": "4xyasjQeREe7PxnF6wVdobZvCw5mhoHZq3T7guRpuNPf", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-avalanche", - "query-id": "aave-v3-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-avalanche", - "query-id": "72Cez54APnySAn6h8MswzYkwaL9KjvuuKnKArnPJ8yxb", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-fantom", - "query-id": "aave-v3-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-fantom", - "query-id": "ZcLcVKJNQboeqACXhGuL3WFLBZzf5uUWheNsaFvLph6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-harmony", - "query-id": "aave-v3-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-harmony", - "query-id": "G1BNHqmteZiUwSEacfXG2nzMm13KLNo5xoxv62ErAyQv", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-polygon", - "query-id": "aave-v3-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-polygon", - "query-id": "6yuf1C49aWEscgk5n9D1DekeG1BCk5Z9imJYJT3sVmAT", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-optimism", - "query-id": "aave-v3-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-optimism", - "query-id": "3RWFxWNstn4nP3dXiDfKi9GgBoHx7xzc7APkXs1MLEgi", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-metis": { - "network": "metis", - "status": "dev", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-metis", - "query-id": "aave-v3-metis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-metis", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-ethereum", - "query-id": "aave-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-ethereum", - "query-id": "JCNWRypm7FYwV8fx5HhzZPSFaMxgkPuw4TnR3Gpi81zk", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-base", - "query-id": "aave-v3-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-base", - "query-id": "D7mapexM5ZsQckLJai2FawTKXJ7CqYGKM8PErnS3cJi9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-gnosis", - "query-id": "aave-v3-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-gnosis", - "query-id": "GiNMLDxT1Bdn2dQZxjQLmW24uwpc3geKUBW8RP6oEdg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-bsc", - "query-id": "aave-v3-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-bsc", - "query-id": "43jbGkvSw55sMvYyF6MZieksmJbajMu3hNGF8PN9ucuP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "aave-v3-scroll": { - "network": "scroll", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-scroll", - "query-id": "aave-v3-scroll", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-v3-scroll", - "query-id": "DkvXMxq1skgSe1ehLHWpiUthHU1znnMDK2SUmj9avhEX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "seamless-protocol": { - "schema": "lending", - "base": "aave-forks", - "protocol": "seamless-protocol", - "project": "seamless-protocol", - "deployments": { - "seamless-protocol-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "seamless-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "seamless-protocol-base", - "query-id": "seamless-protocol-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "seamless-protocol-base", - "query-id": "2u4mWUV4xS19ef1MbnxZHWLLMwdPxtVifH46JbonXwXP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "kinza-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "kinza-finance", - "project": "kinza-finance", - "deployments": { - "kinza-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kinza.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "kinza-finance-bsc", - "query-id": "kinza-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "kinza-finance-bsc", - "query-id": "435cubRAqNsFYKzyQHRRiHvR7oJjh828r5Aqe4cZC586", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "seismic": { - "schema": "lending", - "base": "aave-forks", - "protocol": "seismic", - "project": "seismic", - "deployments": { - "seismic-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "seismic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "seismic-blast", - "query-id": "seismic-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "seismic-blast", - "query-id": "d7gMk1zkEyCQuNVeirBYA6keCZv8hTLheCZ4DBCjRfz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "pac-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "pac-finance", - "project": "pac-finance", - "deployments": { - "pac-finance-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pac.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "pac-finance-blast", - "query-id": "pac-finance-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pac-finance-blast", - "query-id": "ERsfyKMQTpTEN6LtyWvFwhDENLf6aAAggbtrNEnFKLpx", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "zerolend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "zerolend", - "project": "zerolend", - "deployments": { - "zerolend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-ethereum", - "query-id": "zerolend-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zerolend-ethereum", - "query-id": "4Zf4doH54RDit9KVsfCp3MkjrP3szhJZwvw2z5PHczx9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "zerolend-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-blast", - "query-id": "zerolend-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zerolend-blast", - "query-id": "6JP9542ArawumBSYczerbWGu6k7uu3hqk6qJnSkrgTM5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "zerolend-zksync-era": { - "network": "zksync-era", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-zksync-era", - "query-id": "zerolend-zksync-era", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zerolend-zksync-era", - "query-id": "3CHaJvCkTMqXa4PRKNshVecE9JqgNFCdsXNyGLZXFeM2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "zerolend-linea": { - "network": "linea", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-linea", - "query-id": "zerolend-linea", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zerolend-linea", - "query-id": "DLzwo1WFaKy7R7MgQWrnBXr19EbGwPRubu9YmsSmRMfC", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "zerolend-xlayer": { - "network": "xlayer-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-xlayer", - "query-id": "zerolend-xlayer", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zerolend-xlayer", - "query-id": "NRh6ScvPKoieeSH7tRiKyXJ97DR9aYraas8eREPQ8e3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "alpaca-finance-lending": { - "schema": "lending", - "base": "alpaca-finance-lending", - "protocol": "alpaca-finance-lending", - "project": "alpaca", - "deployments": { - "alpaca-finance-lending-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "alpaca.finance.lending.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "alpaca-finance-lending-bsc", - "query-id": "alpaca-finance-lending-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "alpaca-finance-lending-bsc", - "query-id": "ED3ayhcLA7h7DCGwbysgcxtfMEcoeYCdMEsdZJeoaUFS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "alpaca-finance-lending-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "alpaca.finance.lending.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "alpaca-finance-lending-fantom", - "query-id": "alpaca-finance-lending-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "alpaca-finance-lending-fantom", - "query-id": "6EfFr7xDpD7LLi1X8Cj9b6ytjFjX3GZYrMrCKomEuCmx", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "arrakis-finance": { - "schema": "yield-aggregator", - "base": "arrakis-finance", - "protocol": "arrakis-finance", - "project": "arrakis", - "deployments": { - "arrakis-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-ethereum", - "query-id": "arrakis-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "arrakis-finance-ethereum", - "query-id": "GnroBYmeLLtKuHNyTNS38hzKki5n4CWaHeaMRqZpU4cr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "arrakis-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-optimism", - "query-id": "arrakis-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "arrakis-finance-optimism", - "query-id": "6yqMWioX8XNx2aMDYJGnvrVQWNrZfgBzY3ee1RmkXh5Z", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "arrakis-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-polygon", - "query-id": "arrakis-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "arrakis-finance-polygon", - "query-id": "9YGjubD69wpCHyMMadVJv9eABKKUMWyBGYkZHVFEeWM8", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "convex-finance": { - "schema": "yield-aggregator", - "base": "convex-finance", - "protocol": "convex-finance", - "project": "convex", - "deployments": { - "convex-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "convex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "convex-finance-ethereum", - "query-id": "convex-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "convex-finance-ethereum", - "query-id": "7rFZ2x6aLQ7EZsNx8F5yenk4xcqwqR3Dynf9rdixCSME", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "balancer-v2": { - "schema": "dex-amm", - "base": "balancer-forks", - "protocol": "balancer-v2", - "project": "balancer", - "deployments": { - "balancer-v2-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-arbitrum", - "query-id": "balancer-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "balancer-v2-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "balancer-v2-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-polygon", - "query-id": "balancer-v2-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "balancer-v2-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "balancer-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-ethereum", - "query-id": "balancer-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "balancer-v2-ethereum", - "query-id": "794H6CNzdGF5YfBK9nPsUgGn7EBbdJSCTjgcKPEPyFnn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "beethoven-x": { - "schema": "dex-amm", - "base": "balancer-forks", - "protocol": "beethoven-x", - "project": "balancer", - "deployments": { - "beethoven-x-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "beethoven.x.fantom.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethoven-x-fantom", - "query-id": "beethoven-x-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beethoven-x-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beethoven-x-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "beethoven.x.optimism.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethoven-x-optimism", - "query-id": "beethoven-x-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beethoven-x-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "beefy-finance": { - "schema": "yield-aggregator", - "base": "beefy-finance", - "protocol": "beefy-finance", - "project": "beefy", - "deployments": { - "beefy-finance-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.arbitrum.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-arbitrum", - "query-id": "beefy-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.avalanche.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-avalanche", - "query-id": "beefy-finance-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-avalanche", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.aurora.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-aurora", - "query-id": "beefy-finance-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-aurora", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-celo": { - "network": "celo", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.celo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-celo", - "query-id": "beefy-finance-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-celo", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.fantom.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-fantom", - "query-id": "beefy-finance-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-fuse": { - "network": "fuse", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-fuse", - "query-id": "beefy-finance-fuse", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-fuse", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-harmony": { - "network": "harmony", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.harmony.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-harmony", - "query-id": "beefy-finance-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-harmony", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.moonbeam.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-moonbeam", - "query-id": "beefy-finance-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-moonbeam", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-moonriver": { - "network": "moonriver", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.moonriver.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-moonriver", - "query-id": "beefy-finance-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-moonriver", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.polygon.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-polygon", - "query-id": "beefy-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.bsc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-bsc", - "query-id": "beefy-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.optimism.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-optimism", - "query-id": "beefy-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "beefy-finance-cronos": { - "network": "cronos", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.cronos.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "cronos-portal": { - "slug": "beefy-finance-cronos", - "query-id": "beefy-finance-cronos" - }, - "hosted-service": { - "slug": "beefy-finance-cronos", - "query-id": "beefy-finance-cronos", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beefy-finance-cronos", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "belt-finance": { - "schema": "yield-aggregator", - "base": "belt-finance", - "protocol": "belt-finance", - "project": "belt", - "deployments": { - "belt-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "belt.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "belt-finance-bsc", - "query-id": "belt-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "belt-finance-bsc", - "query-id": "9jLaSWECnXdmwDG6zGMR39PqwhscHoiLGoX1mLtHLqWd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "bancor-v3": { - "schema": "dex-amm", - "base": "bancor-v3", - "protocol": "bancor-v3", - "project": "bancor", - "deployments": { - "bancor-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.4", - "methodology": "1.0.0" - }, - "files": { - "template": "bancor.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bancor-v3-ethereum", - "query-id": "bancor-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bancor-v3-ethereum", - "query-id": "4Q4eEMDBjYM8JGsvnWCafFB5wCu6XntmsgxsxwYSnMib", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aurigami": { - "schema": "lending", - "base": "compound-forks", - "protocol": "aurigami", - "project": "aurigami", - "deployments": { - "aurigami-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aurigami.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aurigami-aurora", - "query-id": "aurigami-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aurigami-aurora", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "banker-joe": { - "schema": "lending", - "base": "compound-forks", - "protocol": "banker-joe", - "project": "trader-joe", - "deployments": { - "banker-joe-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "banker-joe.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "banker-joe-avalanche", - "query-id": "banker-joe-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "banker-joe-avalanche", - "query-id": "9NjYuG2BFU1BPacNdKymd9eNdfVCaJM6LhsgD8zSQgDK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tectonic": { - "schema": "lending", - "base": "compound-forks", - "protocol": "tectonic", - "project": "tectonic", - "deployments": { - "tectonic-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tectonic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "cronos-portal": { - "slug": "tectonic", - "query-id": "tectonic" - }, - "hosted-service": { - "slug": "tectonic-cronos", - "query-id": "tectonic-cronos", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tectonic-cronos", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "bastion-protocol": { - "schema": "lending", - "base": "compound-forks", - "protocol": "bastion-protocol", - "project": "bastion-protocol", - "deployments": { - "bastion-protocol-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.1" - }, - "files": { - "template": "bastion-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bastion-protocol-aurora", - "query-id": "bastion-protocol-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bastion-protocol-aurora", - "query-id": "BD4rW7Ga5YQ3x68tALbi8vsXNodd6LrvFeaVocdJt3bD", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "benqi": { - "schema": "lending", - "base": "compound-forks", - "protocol": "benqi", - "project": "benqi", - "deployments": { - "benqi-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "benqi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "benqi-avalanche", - "query-id": "benqi-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "benqi-avalanche", - "query-id": "8ZjJGsaKea7WwLJPJNdHXPGsvXDe3iq2231aRjgBPisi", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "arbitrum-one-bridge": { - "schema": "bridge", - "base": "arbitrum-one-bridge", - "protocol": "arbitrum-one-bridge", - "project": "arbitrum-one-bridge", - "deployments": { - "arbitrum-one-bridge-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arbitrum-one-bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arbitrum-one-bridge-ethereum", - "query-id": "arbitrum-one-bridge-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "arbitrum-one-bridge-ethereum", - "query-id": "6XazDBEjAVADSXbiBoXBBVwxTYf4PXRtucxn5vRQFLch", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "arbitrum-one-bridge-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arbitrum-one-bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arbitrum-one-bridge-arbitrum", - "query-id": "arbitrum-one-bridge-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "arbitrum-one-bridge-arbitrum", - "query-id": "2rQHtwHiK2TCB4bQtgLybf8gGHCRVjANPzKTYss7B1n4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "biswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "biswap", - "project": "biswap", - "deployments": { - "biswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.6", - "methodology": "1.0.0" - }, - "files": { - "template": "biswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "biswap-bsc", - "query-id": "biswap-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "biswap-bsc", - "query-id": "EnAR2ancKqJqpCU6cJ8aq9xHquTSWsK2wQWVfdDSwacN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "burrow": { - "schema": "lending", - "base": "burrow", - "protocol": "burrow", - "project": "burrow", - "deployments": { - "burrow-near": { - "network": "near-mainnet", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "burrow.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "burrow-near", - "query-id": "burrow-near", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "burrow-near", - "query-id": "5W5fhZAq6QABBijKo7wqYps7TLzqAqS2mU1C1rhktvtg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "compound-v2": { - "schema": "lending", - "base": "compound-forks", - "protocol": "compound-v2", - "project": "compound", - "deployments": { - "compound-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.9.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v2-ethereum", - "query-id": "compound-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-v2-ethereum", - "query-id": "4TbqVA8p2DoBd5qDbPMwmDZv3CsJjWtxo8nVSqF2tA9a", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "cream-finance": { - "schema": "lending", - "base": "compound-forks", - "protocol": "cream-finance", - "project": "cream", - "deployments": { - "cream-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-arbitrum", - "query-id": "cream-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cream-finance-arbitrum", - "query-id": "GzHkVNf7BBqUjV8Sy6U6xUaWdGheFMdin1cB6sNvfdzs", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cream-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-bsc", - "query-id": "cream-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cream-finance-bsc", - "query-id": "Dd2ak11qC4mS2spUXzJm5v9EtVNJqmBC9rLzbckTwfN1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cream-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-ethereum", - "query-id": "cream-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cream-finance-ethereum", - "query-id": "43NeT7UTACLUkohKBaG7auvkhsj4Kwux9kNTJr6sFdNe", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cream-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-polygon", - "query-id": "cream-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cream-finance-polygon", - "query-id": "CBeERkhQNwPwU3jSWdKHeAtPQh4TFucUyUMcqAJk19ij", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "dforce": { - "schema": "lending", - "base": "compound-forks", - "protocol": "dforce", - "project": "dforce", - "deployments": { - "dforce-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-arbitrum", - "query-id": "dforce-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-arbitrum", - "query-id": "Dpk4Gen22wxQ3Laojf7DR2me8wGzjaHwjsKAsLf2rCFV", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "dforce-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-avalanche", - "query-id": "dforce-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-avalanche", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "dforce-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-bsc", - "query-id": "dforce-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-bsc", - "query-id": "DKu1HqTTi26uLZKAmvDbqyAvcnFAjXEuRJmF35RLpyFg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "dforce-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-ethereum", - "query-id": "dforce-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-ethereum", - "query-id": "6PaB6tKFqrL6YoAELEhFGU6Gc39cEynLbo6ETZMF3sCy", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "dforce-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-optimism", - "query-id": "dforce-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-optimism", - "query-id": "6AmkakXwadWiZ2jN7oJcFreWmKG1nZrT5P8om52upYPd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "dforce-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-polygon", - "query-id": "dforce-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dforce-polygon", - "query-id": "9CFGPWpntYisBp7NpHMrgYzFrBmtVxSw58haGyZ3ewoZ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "iron-bank": { - "schema": "lending", - "base": "compound-forks", - "protocol": "iron-bank", - "project": "iron-bank", - "deployments": { - "iron-bank-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-avalanche", - "query-id": "iron-bank-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "iron-bank-avalanche", - "query-id": "9YiJM9oHy25estSJjB1Z71Hdz5C814R3vDoS2ezpN27C", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "iron-bank-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-ethereum", - "query-id": "iron-bank-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "iron-bank-ethereum", - "query-id": "5YoxED3bbWV9byvn3x3S3ebZ3idrQmQmsJhL5LMyY26v", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "iron-bank-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-fantom", - "query-id": "iron-bank-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "iron-bank-fantom", - "query-id": "4dWx6UZNcLEzgtipy45VkgtptYRqoHdZeCGNKxHAxKWo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "iron-bank-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-optimism", - "query-id": "iron-bank-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "iron-bank-optimism", - "query-id": "4WKePP5QfwrW6Hfd8YKWHuivivmdxPubuP45BryeGo4g", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "moonwell": { - "schema": "lending", - "base": "compound-forks", - "protocol": "moonwell", - "project": "moonwell", - "deployments": { - "moonwell-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-moonbeam", - "query-id": "moonwell-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "moonwell-moonbeam", - "query-id": "DQhrdUHwspQf3hSjDtyfS6uqq9YiKoLF3Ut3U9os2HK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "moonwell-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-moonriver", - "query-id": "moonwell-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "moonwell-moonriver", - "query-id": "8ayELti1UNCNCWuvwSwapjh4mvvCejeXsk4PmsWBmQ82", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "moonwell-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-base", - "query-id": "moonwell-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "moonwell-base", - "query-id": "33ex1ExmYQtwGVwri1AP3oMFPGSce6YbocBP7fWbsBrg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "notional-finance": { - "schema": "lending", - "base": "notional-finance", - "protocol": "notional-finance", - "project": "notional", - "deployments": { - "notional-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.1.0" - }, - "files": { - "template": "notional-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "notional-finance-ethereum", - "query-id": "notional-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "notional-finance-ethereum", - "query-id": "2t4T7bts8ZQCpGcVq9VSzDyPVCQc5Y7TFwZKfmXKeSVx", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "rari-fuse": { - "schema": "lending", - "base": "compound-forks", - "protocol": "rari-fuse", - "project": "rari-capital", - "deployments": { - "rari-fuse-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-fuse-arbitrum", - "query-id": "rari-fuse-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "rari-fuse-arbitrum", - "query-id": "HnV3fhwsWfmQGdD2AeGzqvRVTDBqnMH74jCsDVq1DXYP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "rari-fuse-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-fuse-ethereum", - "query-id": "rari-fuse-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "rari-fuse-ethereum", - "query-id": "kecp6SPMvbB4GTqg9r5PXvztYriexj5F3ZCaATpjmb2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "scream": { - "schema": "lending", - "base": "compound-forks", - "protocol": "scream", - "project": "scream", - "deployments": { - "scream-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "scream.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "scream-fantom", - "query-id": "scream-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "scream-fantom", - "query-id": "Cj3pDoqHgLBntkaXAKMxtJTZr3StxYvVEedTXyJGJoK4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "sonne-finance": { - "schema": "lending", - "base": "compound-forks", - "protocol": "sonne-finance", - "project": "sonne", - "deployments": { - "sonne-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "sonne.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "sonne-finance-optimism", - "query-id": "sonne-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sonne-finance-optimism", - "query-id": "DQqb7FiQ1joLhESkAwvAYiuXhwfz4zf6qHmbt7stnec8", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "venus": { - "schema": "lending", - "base": "compound-forks", - "protocol": "venus", - "project": "venus", - "deployments": { - "venus-protocol-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "venus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "venus-protocol-bsc", - "query-id": "venus-protocol-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "venus-protocol-bsc", - "query-id": "CwswJ7sfENafqgAYU1upn3hQgoEV2CXXRZRJ7XtgJrKG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "compound-v3": { - "schema": "lending", - "base": "compound-v3", - "protocol": "compound-v3", - "project": "compound", - "deployments": { - "compound-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-ethereum", - "query-id": "compound-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-v3-ethereum", - "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "compound-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-polygon", - "query-id": "compound-v3-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-v3-polygon", - "query-id": "5wfoWBpfYv59b99wDxJmyFiKBu9brXESeqJAzw8WP5Cz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "compound-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-arbitrum", - "query-id": "compound-v3-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-v3-arbitrum", - "query-id": "5MjRndNWGhqvNX7chUYLQDnvEgc8DaH8eisEkcJt71SR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "compound-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "query-id": "compound-v3-base", - "slug": "compound-v3-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-v3-base", - "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "curve-finance": { - "schema": "dex-amm", - "base": "curve-finance", - "protocol": "curve-finance", - "project": "curve", - "deployments": { - "curve-finance-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-arbitrum", - "query-id": "curve-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-aurora", - "query-id": "curve-finance-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-aurora", - "query-id": "9zXFpPQHyTmXXygtNPwjBS6d4SMGzv7qMiha4bJ3fbyB", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-avalanche", - "query-id": "curve-finance-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-avalanche", - "query-id": "2Vt8WtdXNZUEeaVtzyEd1dpioJf44nvomzkd4HhubfKS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-ethereum", - "query-id": "curve-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-ethereum", - "query-id": "3fy93eAT56UJsRCEht8iFhfi6wjHWXtZ9dnnbQmvFopF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-fantom", - "query-id": "curve-finance-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-gnosis", - "query-id": "curve-finance-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-gnosis", - "query-id": "J8k2z8MhdhABfVZU5HtyRvzCT85bLLF886V4iDpt53Jr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-harmony", - "query-id": "curve-finance-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-harmony", - "query-id": "6gnHHn7562tDjCrrnSiMiR1H1NndrannPQ7LcYxMgF9t", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-moonbeam", - "query-id": "curve-finance-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-moonbeam", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-optimism", - "query-id": "curve-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-optimism", - "query-id": "CXDZPduZE6nWuWEkSzWkRoJSSJ6CneSqiDxdnhhURShX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "curve-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-polygon", - "query-id": "curve-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "curve-finance-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ellipsis-finance": { - "schema": "dex-amm", - "base": "ellipsis-finance", - "protocol": "ellipsis-finance", - "project": "ellipsis", - "deployments": { - "ellipsis-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ellipsis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ellipsis-finance-bsc", - "query-id": "ellipsis-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ellipsis-finance-bsc", - "query-id": "3oK7vysHSCqXkQ5L3G6S4ifBG3Xr5mjkEEzZKtGEg5x1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "erc721-holders": { - "schema": "erc721", - "base": "erc721-holders", - "protocol": "erc721-holders", - "project": "erc721", - "deployments": { - "erc721-holders-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc721.holders.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "erc721-holders", - "query-id": "erc721-holders", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc721-holders-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "erc721-metadata": { - "schema": "erc721", - "base": "erc721-metadata", - "protocol": "erc721-metadata", - "project": "erc721", - "deployments": { - "erc721-metadata-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc721.metadata.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "erc721-metadata", - "query-id": "erc721-metadata", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc721-metadata-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "euler-finance": { - "schema": "lending", - "base": "euler-finance", - "protocol": "euler-finance", - "project": "euler", - "deployments": { - "euler-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.0", - "methodology": "1.2.3" - }, - "files": { - "template": "euler.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "euler-finance-ethereum", - "query-id": "euler-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "euler-finance-ethereum", - "query-id": "95nyAWFFaiz6gykko3HtBCyhRuP5vZzuKYsZiLxHxLhr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "goldfinch": { - "schema": "lending", - "base": "goldfinch", - "protocol": "goldfinch", - "project": "goldfinch", - "deployments": { - "goldfinch-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.4", - "methodology": "1.0.1" - }, - "files": { - "template": "goldfinch.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "goldfinch-ethereum", - "query-id": "goldfinch-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "goldfinch-ethereum", - "query-id": "GRwpFCPYyQPdz84sCnKemzrNvgFPuKkFLcRLR6jsRxHr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "inverse-finance": { - "schema": "lending", - "base": "inverse-finance", - "protocol": "inverse-finance", - "project": "inverse", - "deployments": { - "inverse-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.6", - "methodology": "1.0.0" - }, - "files": { - "template": "inverse.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "inverse-finance-ethereum", - "query-id": "inverse-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "inverse-finance-ethereum", - "query-id": "EXuutY6qkZbXjYeJZdiDBf2imJswTNdfm8YZCqhAthfW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "lido": { - "schema": "generic", - "base": "lido", - "protocol": "lido", - "project": "lido", - "deployments": { - "lido-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lido.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lido-ethereum", - "query-id": "lido-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "lido-ethereum", - "query-id": "F7qb71hWab6SuRL5sf6LQLTpNahmqMsBnnweYHzLGUyG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "livepeer": { - "schema": "generic", - "base": "livepeer", - "protocol": "livepeer", - "project": "livepeer", - "deployments": { - "livepeer-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "livepeer.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "livepeer-arbitrum", - "query-id": "livepeer-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "livepeer-arbitrum", - "query-id": "6CdJfr35PDj8AMQikiKGjAUPG2vCu5VLYRawDk8cxwrs", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "liquity": { - "schema": "lending", - "base": "liquity", - "protocol": "liquity", - "project": "liquity", - "deployments": { - "liquity-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.0", - "methodology": "1.0.1" - }, - "files": { - "template": "liquity.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "liquity-ethereum", - "query-id": "liquity-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "liquity-ethereum", - "query-id": "2D2dFCLjUt3MfFgTKW8cBxiRQ3Adss7KUtYh2rTcFVY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mummy-finance": { - "schema": "derivatives-perpfutures", - "base": "gmx-forks", - "protocol": "mummy-finance", - "project": "mummy-finance", - "deployments": { - "mummy-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-fantom", - "query-id": "mummy-finance-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mummy-finance-fantom", - "query-id": "FP8YzYVARZ6jEYrciiTEtzrNfug7STzYyUr3fRUjQkEA", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mummy-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-optimism", - "query-id": "mummy-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mummy-finance-optimism", - "query-id": "GvgdFS6dFXCSXwq9PDTdcs5uZzwZYuTrqFjiTRC3jy54", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mummy-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-arbitrum", - "query-id": "mummy-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mummy-finance-arbitrum", - "query-id": "4Po9haSDCDbQ2XtrSXqT8BNB9H6T7EUAmbAorAzHQi9S", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "vesta-finance": { - "schema": "lending", - "base": "vesta-finance", - "protocol": "vesta-finance", - "project": "vesta", - "deployments": { - "vesta-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.1", - "methodology": "1.1.0" - }, - "files": { - "template": "vesta.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vesta-finance-arbitrum", - "query-id": "vesta-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "vesta-finance-arbitrum", - "query-id": "zGuPrsVqtY5ehJDCmweb9ZnBrae3tSQWRux8Mz1M4Gn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "truefi": { - "schema": "lending", - "base": "truefi", - "protocol": "truefi", - "project": "truefi", - "deployments": { - "truefi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.5", - "methodology": "1.0.0" - }, - "files": { - "template": "truefi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "truefi-ethereum", - "query-id": "truefi-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "truefi-ethereum", - "query-id": "39F8fYCvLYmutjqpzEwx3dcEJTtFFVupvBzJqkEzftA7", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gamma-strategies": { - "schema": "yield-aggregator", - "base": "gamma-strategies", - "protocol": "gamma-strategies", - "project": "gamma-strategies", - "deployments": { - "gamma-strategies-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-arbitrum", - "query-id": "gamma-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gamma-strategies-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "gamma-strategies-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-ethereum", - "query-id": "gamma-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gamma-ethereum", - "query-id": "ANz3TpZdY2syZGQvGA85ANNG7KiSWdPmv55kP4H4sRPJ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "gamma-strategies-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-optimism", - "query-id": "gamma-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gamma-strategies-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "gamma-strategies-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-polygon", - "query-id": "gamma-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gamma-polygon", - "query-id": "AyxB5Suv1REgRZPUwbgbbqtpwftvTC46dbiHPuBQuF8y", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "makerdao": { - "schema": "lending", - "base": "makerdao", - "protocol": "makerdao", - "project": "makerdao", - "deployments": { - "makerdao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "makerdao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "makerdao-ethereum", - "query-id": "makerdao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "makerdao-ethereum", - "query-id": "8sE6rTNkPhzZXZC6c8UQy2ghFTu5PPdGauwUBm4t7HZ1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "maple-finance-v1": { - "schema": "lending", - "base": "maple-finance-v1", - "protocol": "maple-finance-v1", - "project": "maple", - "deployments": { - "maple-finance-v1-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.1.0" - }, - "files": { - "template": "maple.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maple-finance-ethereum", - "query-id": "maple-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "maple-finance-ethereum", - "query-id": "J9dtvE11PWNZH74frWyx9QZonyC1Db2UWDMUegmT3zkG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "maple-finance-v2": { - "schema": "lending", - "base": "maple-finance-v2", - "protocol": "maple-finance-v2", - "project": "maple", - "deployments": { - "maple-finance-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "maple.finance.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maple-finance-v2-ethereum", - "query-id": "maple-finance-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "maple-finance-v2-ethereum", - "query-id": "94swSaaFChsQoZzb9Vc7Lo6FWFV6YZUMNSdFVTMAeRgj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "silo-finance": { - "schema": "lending", - "base": "silo-finance", - "protocol": "silo-finance", - "project": "silo", - "deployments": { - "silo-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "silo.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "silo-finance-ethereum", - "query-id": "silo-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "silo-finance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "synthetix": { - "schema": "lending", - "base": "synthetix", - "protocol": "synthetix", - "project": "synthetix", - "deployments": { - "synthetix-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "synth-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "synthetix-ethereum", - "query-id": "synthetix-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "synthetix-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "synthetix-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "synth-opt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "synthetix-optimism", - "query-id": "synthetix-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "synthetix-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "morpho-aave-v2": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-aave-v2", - "project": "morpho", - "deployments": { - "morpho-aave-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-aave-v2-ethereum", - "query-id": "morpho-aave-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "morpho-aave-v2-ethereum", - "query-id": "DsznTYxGdsqxWB6a474rSksvB7qWSth5Ff1PcxW28vZy", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "morpho-aave-v3": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-aave-v3", - "project": "morpho", - "deployments": { - "morpho-aave-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-aave-v3-ethereum", - "query-id": "morpho-aave-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "morpho-aave-v3-ethereum", - "query-id": "FKe6ANnWmGPE6hajGLoTgPrVF2jYPHiRu2Jwcg9ZmG9A", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "morpho-compound": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-compound", - "project": "morpho", - "deployments": { - "morpho-compound-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.compound.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-compound-ethereum", - "query-id": "morpho-compound-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "morpho-compound-ethereum", - "query-id": "9dTy23tkahyiap1THgwnJuMwxNHVnQM57jFQQiUzjcY6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "morpho-blue": { - "schema": "lending", - "base": "morpho-blue", - "protocol": "morpho-blue", - "project": "morpho", - "deployments": { - "morpho-blue-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "3.2.0", - "subgraph": "1.1.0", - "methodology": "1.1.0" - }, - "files": { - "template": "morpho.blue.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-blue-ethereum", - "query-id": "morpho-blue-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "morpho-blue-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "harvest-finance": { - "schema": "yield-aggregator", - "base": "harvest-finance", - "protocol": "harvest-finance", - "project": "harvest", - "deployments": { - "harvest-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-ethereum", - "query-id": "harvest-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "harvest-finance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "harvest-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-polygon", - "query-id": "harvest-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "harvest-finance-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "harvest-finance-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-bsc", - "query-id": "harvest-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "harvest-finance-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ribbon-finance": { - "schema": "yield-aggregator", - "base": "ribbon-finance", - "protocol": "ribbon-finance", - "project": "ribbon", - "deployments": { - "ribbon-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "ribbon.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ribbon-finance-ethereum", - "query-id": "ribbon-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ribbon-finance-ethereum", - "query-id": "Crag42fFb8PrXnbTjHe1UG5KjgzoiUJbqwzJxZ1W8XNJ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "ribbon-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "ribbon.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ribbon-finance-avalanche", - "query-id": "ribbon-finance-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ribbon-finance-avalanche", - "query-id": "FxhN13aCD2H1f9vagrVueGjHwguZ7JkfuDZrMvKthdk5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "yield-yak": { - "schema": "yield-aggregator", - "base": "yield-yak", - "protocol": "yield-yak", - "project": "yield-yak", - "deployments": { - "yield-yak-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yield.yak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yield-yak-avalanche", - "query-id": "yield-yak-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yield-yak-avalanche", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stakedao": { - "schema": "yield-aggregator", - "base": "stakedao", - "protocol": "stakedao", - "project": "stakedao", - "deployments": { - "stakedao-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.3.2", - "methodology": "1.0.0" - }, - "files": { - "template": "stakedao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stakedao-ethereum", - "query-id": "stakedao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stakedao-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "saddle-finance": { - "schema": "dex-amm", - "base": "saddle-finance", - "protocol": "saddle-finance", - "project": "saddle", - "deployments": { - "saddle-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-arbitrum", - "query-id": "saddle-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "saddle-finance-arbitrum", - "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "saddle-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-ethereum", - "query-id": "saddle-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "saddle-finance-ethereum", - "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "saddle-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-fantom", - "query-id": "saddle-finance-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "saddle-finance-fantom", - "query-id": "DToFejYjMRXcCrBrsdP9AZGBqwxpEumNHReRTfAmqgeP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "saddle-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-optimism", - "query-id": "saddle-finance-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "saddle-finance-optimism", - "query-id": "CFu1DWY9DyiC25WRmGreowMyuvLB27JfNRCa8rKkTDjK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "geist-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "geist-finance", - "project": "geist", - "deployments": { - "geist-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "geist.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "geist-finance-fantom", - "query-id": "geist-finance-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "geist-finance-fantom", - "query-id": "45LX32kZPBRNiXaBKDrzbCnidoKv3cMEc8cXt3kvPifz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "spark-lend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "spark-lend", - "project": "makerdao", - "deployments": { - "spark-lend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spark.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "spark-lend-ethereum", - "query-id": "spark-lend-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spark-lend-ethereum", - "query-id": "GbKdmBe4ycCYCQLQSjqGg6UHYoYfbyJyq5WrG35pv1si", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "spark-lend-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spark.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "spark-lend-gnosis", - "query-id": "spark-lend-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spark-lend-gnosis", - "query-id": "Bw4RH37UbbGEhHo4FaWwT1dn9QJzm1XSZCyK1cbr6ZKM", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "radiant": { - "schema": "lending", - "base": "aave-forks", - "protocol": "radiant-capital", - "project": "radiant", - "deployments": { - "radiant-capital-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-arbitrum", - "query-id": "radiant-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "radiant-capital-arbitrum", - "query-id": "5HTkKJNSm72tUGakwj8yroDGHxc6fBhmLaA5oJepZGL3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "radiant-v2": { - "schema": "lending", - "base": "aave-forks", - "protocol": "radiant-capital-v2", - "project": "radiant", - "deployments": { - "radiant-capital-v2-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-capital-v2-arbitrum", - "query-id": "radiant-capital-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "radiant-capital-v2-arbitrum", - "query-id": "2rQAKGJkvkiAXsCjx1n4E3DSgk2b7nCZMtt2BrV5TBgt", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "radiant-capital-v2-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "3.0.1", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-capital-v2-bsc", - "query-id": "radiant-capital-v2-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "radiant-capital-v2-bsc", - "query-id": "cM9BYtdT8aVBX8JEbi9SQjV2Ft8onEh6qwZHxCUyAAh", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uwu-lend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "uwu-lend", - "project": "uwu", - "deployments": { - "uwu-lend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uwu.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uwu-lend-ethereum", - "query-id": "uwu-lend-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uwu-lend-ethereum", - "query-id": "CZBD7e8VGvNa6WkBHZAaC688bsZ35UvAM1AuDdVng2aE", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tokemak": { - "schema": "yield-aggregator", - "base": "tokemak", - "protocol": "tokemak", - "project": "tokemak", - "deployments": { - "tokemak-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "tokemak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "tokemak-ethereum", - "query-id": "tokemak-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tokemak-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "uniswap-v3", - "project": "uniswap", - "deployments": { - "uniswap-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-arbitrum", - "query-id": "uniswap-v3-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-arbitrum", - "query-id": "FQ6JYszEKApsBpAmiHesRsd9Ygc6mzmpNRANeVQFYoVX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-base", - "query-id": "uniswap-v3-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-base", - "query-id": "FUbEPQw1oMghy39fwWBFY5fE6MXPXZQtjncQy2cXdrNS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-bsc", - "query-id": "uniswap-v3-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-bsc", - "query-id": "8f1KyiuNYiNGrjagzEVpf6k6KkPG517prtjdrJihgHw", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-celo", - "query-id": "uniswap-v3-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-celo", - "query-id": "8cLf29KxAedWLVaEqjV8qKomdwwXQxjptBZFrqWNH5u2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.6.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-ethereum", - "query-id": "uniswap-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-ethereum", - "query-id": "4cKy6QQMc5tpfdx8yxfYeb9TLZmgLQe44ddW1G7NwkA6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-optimism", - "query-id": "uniswap-v3-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-optimism", - "query-id": "EgnS9YE1avupkvCNj9fHnJxppfEmNNywYJtghqiu2pd9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-polygon", - "query-id": "uniswap-v3-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-polygon", - "query-id": "BvYimJ6vCLkk63oWZy7WB5cVDTVVMugUAF35RAUZpQXE", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "pancakeswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "pancakeswap-v3", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-bsc", - "query-id": "pancakeswap-v3-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pancakeswap-v3-bsc", - "query-id": "A1BC1hzDsK4NTeXBpKQnDBphngpYZAwDUF7dEBfa3jHK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "pancakeswap-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.3.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-ethereum", - "query-id": "pancakeswap-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pancakeswap-v3-ethereum", - "query-id": "JAGXF8B14mpB8QGKnwhKTs5JxsQZBJQvbDGFcWwL7gbm", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "sushiswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "sushiswap-v3", - "project": "sushiswap", - "deployments": { - "sushiswap-v3-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-ethereum", - "query-id": "sushiswap-v3-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-ethereum", - "query-id": "2tGWMrDha4164KkFAfkU3rDCtuxGb4q1emXmFdLLzJ8x", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-arbitrum", - "query-id": "sushiswap-v3-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-arbitrum", - "query-id": "3oHCddbQGTi42kPZBwyGzD2JzZR33zK2MwXtxAerNJy2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-avalanche", - "query-id": "sushiswap-v3-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-avalanche", - "query-id": "9WGqYsU8h1KVZeKz32663gFrbjVUNhBgmhRavMFqiSZz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-bsc", - "query-id": "sushiswap-v3-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-fantom", - "query-id": "sushiswap-v3-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-fuse": { - "network": "fuse", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-fuse", - "query-id": "sushiswap-v3-fuse", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-fuse", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-gnosis": { - "network": "gnosis", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-gnosis", - "query-id": "sushiswap-v3-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-gnosis", - "query-id": "9LC6MvaFHXyY3dmxM7VCwGNA9dvM6g2AuZxEGCyfvck3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-moonriver": { - "network": "moonriver", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-moonriver", - "query-id": "sushiswap-v3-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-moonriver", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-optimism", - "query-id": "sushiswap-v3-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-v3-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-polygon", - "query-id": "sushiswap-v3-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "uniswap-v3-swap", - "project": "uniswap", - "deployments": { - "uniswap-v3-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-swap-base", - "query-id": "uniswap-v3-swap-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-swap-base", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "uniswap-v3-swap-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-swap-optimism", - "query-id": "uniswap-v3-swap-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v3-swap-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "pancakeswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "pancakeswap-v3-swap", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v3-swap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-swap-bsc", - "query-id": "pancakeswap-v3-swap-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pancakeswap-v3-swap-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "pancakeswap-v3-swap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-swap-ethereum", - "query-id": "pancakeswap-v3-swap-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pancakeswap-v3-swap-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "sushiswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "sushiswap-v3-swap", - "project": "sushiswap", - "deployments": { - "sushiswap-v3-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-swap-base", - "query-id": "sushiswap-v3-swap-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-v3-swap-base", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "osmosis-dex": { - "schema": "dex-amm", - "base": "osmosis-dex", - "protocol": "osmosis-dex", - "project": "osmosis", - "deployments": { - "osmosis-dex-osmosis": { - "network": "osmosis", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "osmosis.dex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "osmosis-dex-osmosis", - "query-id": "osmosis-dex-osmosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "osmosis-dex-osmosis", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "qidao": { - "schema": "lending", - "base": "qidao", - "protocol": "qidao", - "project": "qidao", - "deployments": { - "qidao-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-arbitrum", - "query-id": "qidao-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-arbitrum", - "query-id": "Duw2tSACo9uRGFctAGsCc9pF7ZGMyqpjkAHPwm49dZe6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-avalanche", - "query-id": "qidao-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-avalanche", - "query-id": "98GG74FxxsG25Ltd8qvJ9BRfFmQWyN1AkS92MZBG1BsR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-base", - "query-id": "qidao-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-base", - "query-id": "9NHJ9k31qaGCYXppm9isJTiEoiB6v3tJDnR6SrQrxcjw", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-bsc", - "query-id": "qidao-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-bsc", - "query-id": "4DcztqYL7UG5bjdisWWvnj3m4NtK5J3bs89scihAkicr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-ethereum", - "query-id": "qidao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-ethereum", - "query-id": "BmQSQaXsivq866kUobQSbyxycjk3D7CiaczKgu3P9ifB", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-fantom", - "query-id": "qidao-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-fantom", - "query-id": "hf51jYbZ9uESiuBabfxf6fRdc22xtmNWX9c3SRrct2q", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-polygon", - "query-id": "qidao-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-polygon", - "query-id": "5UxEcMvYW4vVYP81tkPQMAvJv1e4m1xU8BJkDXBnpc6x", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-moonriver", - "query-id": "qidao-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-moonriver", - "query-id": "HzDP5zXKyjnEJP9TnFirk3qA24SUp4AfzKUBSRcBekgz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-optimism", - "query-id": "qidao-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-optimism", - "query-id": "4JbWxzxBNCpAaVz72Gt2UthgiwcWZQLKDBhmSE7wKY2K", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.5", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-gnosis", - "query-id": "qidao-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-gnosis", - "query-id": "7vJEsy8pJmRQZQh5kTXNz68SRHXBS859hMq3o5uWF1Ac", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "qidao-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-harmony", - "query-id": "qidao-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "qidao-harmony", - "query-id": "DCEQvXCiqtpMybQLL4YAgdCzqHzRH6wFFnCDnnLBBuvf", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "rari-vaults": { - "schema": "yield-aggregator", - "base": "rari-vaults", - "protocol": "rari-vaults", - "project": "rari-capital", - "deployments": { - "rari-vaults-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.3", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-vaults.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-vaults-ethereum", - "query-id": "rari-vaults-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "rari-vaults-ethereum", - "query-id": "Dy1yVPfbS27HTrqEq3nLGFGi3TMYxPzSfY7Zxxj5ZJhf", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "apeswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "apeswap", - "project": "apeswap", - "deployments": { - "apeswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "apeswap.bsc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "apeswap-bsc", - "query-id": "apeswap-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "apeswap-bsc", - "query-id": "4u1aTvzBMjBdm7aK7uQmjffhoPc6Ceu3w2nTfq6vUQnb", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "apeswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "apeswap.matic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "apeswap-polygon", - "query-id": "apeswap-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "apeswap-polygon", - "query-id": "2x478mWv6rECUcJR4VxNxRnuMuRsY22Jxy7xxXJu4Q7F", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mm-finance": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "mm-finance", - "project": "mm", - "deployments": { - "mm-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "mm.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mm-finance-polygon", - "query-id": "mm-finance-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mm-finance-polygon", - "query-id": "7B7R7aie7erfqUijkH2HNQcZ8bK6DpuXJaB5myt6nrs7", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "mm-finance-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.6", - "methodology": "1.0.0" - }, - "files": { - "template": "mm.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "cronos-portal": { - "slug": "mm-finance", - "query-id": "mm-finance" - }, - "hosted-service": { - "slug": "mm-finance-cronos", - "query-id": "mm-finance-cronos", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mm-finance-cronos", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "quickswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "quickswap", - "project": "quickswap", - "deployments": { - "quickswap-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "quickswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "quickswap-polygon", - "query-id": "quickswap-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "quickswap-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "quickswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "quickswap-swap", - "project": "quickswap", - "deployments": { - "quickswap-swap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "quickswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "quickswap-swap-polygon", - "query-id": "quickswap-swap-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "quickswap-swap-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "solarbeam": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "solarbeam", - "project": "solarbeam", - "deployments": { - "solarbeam-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "solarbeam.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "solarbeam-moonriver", - "query-id": "solarbeam-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "solarbeam-moonriver", - "query-id": "EoN2oon5KNH6XL1xSQCRsLHFPSZ2xLJD9DApizNtfGWo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "spiritswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "spiritswap", - "project": "spiritswap", - "deployments": { - "spiritswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.10", - "methodology": "1.0.0" - }, - "files": { - "template": "spiritswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiritswap-fantom", - "query-id": "spiritswap-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spiritswap-fantom", - "query-id": "ARnDoat2Zyft9miSW8Md6V32nd5YUfngMCDCaNgqLqXv", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "spookyswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "spookyswap", - "project": "spookyswap", - "deployments": { - "spookyswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "spookyswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spookyswap-fantom", - "query-id": "spookyswap-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spookyswap-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "spookyswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "spookyswap-swap", - "project": "spookyswap", - "deployments": { - "spookyswap-swap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spookyswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spookyswap-swap-fantom", - "query-id": "spookyswap-swap-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spookyswap-swap-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "sushiswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "sushiswap", - "project": "sushiswap", - "deployments": { - "sushiswap-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-arbitrum", - "query-id": "sushiswap-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-arbitrum", - "query-id": "9tSS5FaePZnjmnXnSKCCqKVLAqA6eGg6jA2oRojsXUbP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-avalanche", - "query-id": "sushiswap-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-avalanche", - "query-id": "4KgG6aek9cEp8MXQZKWCmeJWj5Y77mK9tPRAD1kDQa8Q", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-bsc", - "query-id": "sushiswap-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-bsc", - "query-id": "7QyoZFgo1bYvTD7bmdBxsjFLjmeDLgBT3nC3H8y6yuKZ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-celo", - "query-id": "sushiswap-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-celo", - "query-id": "5H97eNhy9fVHcqRXZtCV2UxHG2DbzcFA7yth1TaVZ45x", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-fantom", - "query-id": "sushiswap-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-fantom", - "query-id": "9wj3CmJFtoe7J25h4t39ioQHXexGe2rbsLfBgLefU7mN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-fuse": { - "network": "fuse", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-fuse", - "query-id": "sushiswap-fuse", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-fuse", - "query-id": "7MhgrLAB5B4D6PLDjF9Stx7fzS54MA3d5oi9dT3fHxbz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.2", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.mainnet.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-ethereum", - "query-id": "sushiswap-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-ethereum", - "query-id": "77jZ9KWeyi3CJ96zkkj5s1CojKPHt6XJKjLFzsDCd8Fd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-harmony", - "query-id": "sushiswap-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-harmony", - "query-id": "96NBskquxSxSDV8W42g3nmzECziCvhftSXFFpbY4geaC", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-polygon", - "query-id": "sushiswap-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-polygon", - "query-id": "B3Jt84tHJJjanE4W1YijyksTwtm7jqK8KcG5dcoc1ZNF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-moonbeam", - "query-id": "sushiswap-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-moonbeam", - "query-id": "8oFzyJBeHoojoe23u3YYNruTZsqgn91q44U8hrFocbtp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-moonriver", - "query-id": "sushiswap-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-moonriver", - "query-id": "EuYBux3ZPq1v3Uipo837WDq6WrK4AB3LGD6w78edRHib", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "sushiswap-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.15", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-gnosis", - "query-id": "sushiswap-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "sushiswap-gnosis", - "query-id": "GvgkY82DTAkYqRShBbPQMjF1WJyUcknXre3QPWiXrPnS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "trader-joe": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "trader-joe", - "project": "trader-joe", - "deployments": { - "trader-joe-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "trader.joe.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "trader-joe-avalanche", - "query-id": "trader-joe-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "trader-joe-avalanche", - "query-id": "H2VGe2tYavUEosSjomHwxbvCKy3LaNaW8Kjw2KhhHs1K", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "trisolaris": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "trisolaris", - "project": "trisolaris", - "deployments": { - "trisolaris-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.9", - "methodology": "1.0.0" - }, - "files": { - "template": "trisolaris.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "trisolaris-aurora", - "query-id": "trisolaris-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "trisolaris-aurora", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ubeswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "ubeswap", - "project": "ubeswap", - "deployments": { - "ubeswap-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.16", - "methodology": "1.0.0" - }, - "files": { - "template": "ubeswap-template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "ubeswap-celo", - "query-id": "ubeswap-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ubeswap-celo", - "query-id": "9WiZHUk2d3rM4sEQ4NSz6ihFRc2zWmPj7yk8w51dNdhT", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-v2": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "uniswap-v2", - "project": "uniswap", - "deployments": { - "uniswap-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v2-ethereum", - "query-id": "uniswap-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v2-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "baseswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "baseswap", - "project": "baseswap", - "deployments": { - "baseswap-base": { - "network": "base", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "baseswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "baseswap-base", - "query-id": "baseswap-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "baseswap-base", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-v2-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "uniswap-v2-swap", - "project": "uniswap", - "deployments": { - "uniswap-v2-swap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v2-swap-ethereum", - "query-id": "uniswap-v2-swap-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-v2-swap-ethereum", - "query-id": "3onEbd9MLfXTTWAfP91yqsKr7C68VCT2ZiF7EoQiQAFj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "substream-uniswap-v2": { - "schema": "dex-amm", - "base": "substreams", - "protocol": "uniswap-v2", - "project": "uniswap", - "deployments": { - "substream-uniswap-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "NA" - }, - "options": { - "prepare:yaml": false, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "substream-uniswap-v2-ethereum", - "query-id": "substream-uniswap-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "substream-uniswap-v2-ethereum", - "query-id": "J2oP9UNBjsnuDDW1fAoHKskyrNLFNBB2badQU6UvEtJp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "pancakeswap-v2-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "pancakeswap-v2-swap", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v2-swap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v2.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v2-swap-bsc", - "query-id": "pancakeswap-v2-swap-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pancakeswap-v2-swap-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "baseswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "baseswap-swap", - "project": "baseswap", - "deployments": { - "baseswap-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "baseswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "baseswap-swap-base", - "query-id": "baseswap-swap-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "baseswap-swap-base", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "vvs-finance": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "vvs-finance", - "project": "vvs", - "deployments": { - "vvs-finance-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "vvs.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "cronos-portal": { - "slug": "vvs-finance", - "query-id": "vvs-finance" - }, - "hosted-service": { - "slug": "vvs-finance-cronos", - "query-id": "vvs-finance-cronos", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "vvs-finance-cronos", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "honeyswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "honeyswap", - "project": "honeyswap", - "deployments": { - "honeyswap-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.1" - }, - "files": { - "template": "honeyswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "honeyswap-gnosis", - "query-id": "honeyswap-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "honeyswap-gnosis", - "query-id": "33aQTj7abtAR5zGcG9JBd1fd1sodgKDjoTsKuA8QrUW7", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "honeyswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.10", - "methodology": "1.0.1" - }, - "files": { - "template": "honeyswap.matic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "honeyswap-polygon", - "query-id": "honeyswap-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "honeyswap-polygon", - "query-id": "7YaQPHXFrPCwbt2MUPQ5N5PgmgMch14Ab5cZVYxvtPgW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "velodrome-finance-v1": { - "schema": "dex-amm", - "base": "velodrome-finance", - "protocol": "velodrome-finance-v1", - "project": "velodrome", - "deployments": { - "velodrome-finance-v1-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "velodrome.finance.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "velodrome-optimism", - "query-id": "velodrome-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "velodrome-optimism", - "query-id": "7tA4PY1VmbycJeoVtn2mjQK4NbozgwTuZgrxDTxzEDL1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "velodrome-finance-v2": { - "schema": "dex-amm", - "base": "velodrome-finance", - "protocol": "velodrome-finance-v2", - "project": "velodrome", - "deployments": { - "velodrome-finance-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "velodrome.finance.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "velodrome-v2-optimism", - "query-id": "velodrome-v2-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "velodrome-v2-optimism", - "query-id": "A4Y1A82YhSLTn998BVVELC8eWzhi992k4ZitByvssxqA", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "yearn-v2": { - "schema": "yield-aggregator", - "base": "yearn-v2", - "protocol": "yearn-v2", - "project": "yearn", - "deployments": { - "yearn-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-arbitrum", - "query-id": "yearn-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yearn-v2-arbitrum", - "query-id": "G3JZhmKKHC4mydRzD6kSz5fCWve5WDYYCyTFSJyv3SD5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "yearn-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-ethereum", - "query-id": "yearn-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yearn-v2-ethereum", - "query-id": "FDLuaz69DbMADuBjJDEcLnTuPnjhZqNbFVrkNiBLGkEg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "yearn-v2-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-fantom", - "query-id": "yearn-v2-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yearn-v2-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "maker-governance": { - "schema": "governance", - "base": "maker-governance", - "protocol": "maker-governance", - "project": "makerdao", - "deployments": { - "maker-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "maker-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maker-governance", - "query-id": "maker-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "maker-governance", - "query-id": "FXpCdSzUbRFzovJLW8hrwFXA2E3Bj915w99TtTSMm88p", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aave-governance": { - "schema": "governance", - "base": "aave-governance", - "protocol": "aave-governance", - "project": "aave", - "deployments": { - "aave-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-governance", - "query-id": "aave-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aave-governance", - "query-id": "8EBbn3tNayccBZrnW9ae6Q4NLHfVEcozvkB3YAp5Qatr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "dydx-governance": { - "schema": "governance", - "base": "aave-governance", - "protocol": "dydx-governance", - "project": "dydx", - "deployments": { - "dydx-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dydx-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dydx-governance", - "query-id": "dydx-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dydx-governance", - "query-id": "FFK9Fa8fdBrAugNVFqRZVAtrej7FjsQNq1s9LVBhF4FX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "angle-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "angle-governance", - "project": "angle", - "deployments": { - "angle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "angle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "angle-governance", - "query-id": "angle-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "angle-governance", - "query-id": "94D1g2jHHqKUS5uhbEPHWyRgfp4bYeZPn5Cr5R3zvoYH", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "code4rena-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "code4rena-governance", - "project": "code4rena", - "deployments": { - "code4rena-governance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "code4rena-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "code4rena-governance", - "query-id": "code4rena-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "code4rena-governance-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ens-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "ens-governance", - "project": "ens", - "deployments": { - "ens-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ens-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ens-governance", - "query-id": "ens-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ens-governance", - "query-id": "GyijYxW9yiSRcEd5u2gfquSvneQKi5QuvU3WZgFyfFSn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "euler-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "euler-governance", - "project": "euler", - "deployments": { - "euler-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "euler-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "euler-governance", - "query-id": "euler-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "euler-governance", - "query-id": "F94CS4mephx6noem4KsXxeGDSufCGUH5fXrqUX5ZiFk2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "fei-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "fei-governance", - "project": "fei", - "deployments": { - "fei-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "fei-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "fei-governance", - "query-id": "fei-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "fei-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "hop-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "hop-governance", - "project": "hop", - "deployments": { - "hop-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hop-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hop-governance", - "query-id": "hop-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-governance", - "query-id": "9RFPnB3zNjtc7x9kowTyBU2YVGUFSJRe27EBJWLMVgy6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "silo-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "silo-governance", - "project": "silo", - "deployments": { - "silo-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "silo-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "silo-governance", - "query-id": "silo-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "silo-governance", - "query-id": "8qztgeMTJrq2kQHK7LzmbmDUpuBvDc6eFASDqN8SJBM5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "truefi-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "truefi-governance", - "project": "truefi", - "deployments": { - "truefi-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "truefi-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "truefi-governance", - "query-id": "truefi-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "truefi-governance", - "query-id": "DbD7U3k8trdQUC2KqC2Fu2WcS42QUZHr2YXJzZXjH719", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "unlock-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "unlock-governance", - "project": "unlock", - "deployments": { - "unlock-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "unlock-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "unlock-governance", - "query-id": "unlock-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "unlock-governance-ethereum", - "query-id": "7ziHxbouaMXhSzxf5nfTXLYYASajU9bTCcxWoTKEAkBe", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "rarible-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "rarible-governance", - "project": "rarible", - "deployments": { - "rarible-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rarible-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rarible-governance", - "query-id": "rarible-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "rarible-governance", - "query-id": "2oGCcncW9v7AAExqpZ9T1W1GecSjGVmi7XGet3P9JiNn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "optimism-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "optimism-governance", - "project": "optimism", - "deployments": { - "optimism-governance-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "optimism-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "optimism-governance", - "query-id": "optimism-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "optimism-governance-optimism", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ousd-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "ousd-governance", - "project": "ousd", - "deployments": { - "ousd-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ousd-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ousd-governance", - "query-id": "ousd-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ousd-governance", - "query-id": "BwcFTZJskUwk6WXKteMAEqn6CQFWsPsqq8A8YGcqnWkK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "threshold-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "threshold-governance", - "project": "threshold", - "deployments": { - "threshold-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "threshold-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "threshold-governance", - "query-id": "threshold-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "threshold-governance", - "query-id": "Bk9fLLKttYoM4fE1cXXCq61owGqFtX1RsS8kEtDnDELC", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ampleforth-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "ampleforth-governance", - "project": "ampleforth", - "deployments": { - "ampleforth-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ampleforth-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ampleforth-governance", - "query-id": "ampleforth-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ampleforth-governance", - "query-id": "B7zUhfTTV7mi2QZgUL661D714NGqeLtk6h3q3Mf2xNNa", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "compound-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "compound-governance", - "project": "compound", - "deployments": { - "compound-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-governance", - "query-id": "compound-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-governance", - "query-id": "7nuSuPhUgKSg5uKRh8g5jyjZWE8DnvQw1mQtvDWpxrnh", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "compound-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "compound-governance-v1", - "project": "compound", - "deployments": { - "compound-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-governance-v1", - "query-id": "compound-governance-v1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "compound-governance-v1-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "cryptex-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "cryptex-governance", - "project": "cryptex", - "deployments": { - "cryptex-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cryptex-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cryptex-governance", - "query-id": "cryptex-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cryptex-governance", - "query-id": "AnAnCpeyy2ZbP2BLZw9u7VjGtVtRorvYuGU3vME1na7F", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gitcoin-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "gitcoin-governance", - "project": "gitcoin", - "deployments": { - "gitcoin-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gitcoin-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gitcoin-governance", - "query-id": "gitcoin-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gitcoin-governance", - "query-id": "By35hUZiWiHNzRsdDnxFU9T47YUNZwPjfhwD1iBbNGQL", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "hifi-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "hifi-governance", - "project": "hifi", - "deployments": { - "hifi-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hifi-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hifi-governance", - "query-id": "hifi-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hifi-governance", - "query-id": "ANAXtqRM9cUySpQZ8xuaFTdu1oFCj4HYaRXXiChTihAM", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "idle-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "idle-governance", - "project": "idle", - "deployments": { - "idle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "idle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "idle-governance", - "query-id": "idle-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "idle-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "idle-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "idle-governance-v1", - "project": "idle", - "deployments": { - "idle-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "idle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "idle-governance-v1", - "query-id": "idle-governance-v1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "idle-governance-v1-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "indexed-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "indexed-governance", - "project": "indexed", - "deployments": { - "indexed-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "indexed-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "indexed-governance", - "query-id": "indexed-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "indexed-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "lilnouns-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "lilnouns-governance", - "project": "lilnouns", - "deployments": { - "lilnouns-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lilnouns-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lilnouns-governance", - "query-id": "lilnouns-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "lilnouns-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "nouns-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "nouns-governance", - "project": "nouns", - "deployments": { - "nouns-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "nouns-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "nouns-governance", - "query-id": "nouns-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "nouns-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ooki-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "ooki-governance", - "project": "ooki", - "deployments": { - "ooki-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ooki-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ooki-governance", - "query-id": "ooki-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ooki-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "pooltogether-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "pooltogether-governance", - "project": "pooltogether", - "deployments": { - "pooltogether-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "pooltogether-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "pooltogether-governance", - "query-id": "pooltogether-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pooltogether-governance", - "query-id": "8rW1keThqpvtoBz7V2iNbo3wqcPCJZTBGuc3frGKbyi2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "radicle-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "radicle-governance", - "project": "radicle", - "deployments": { - "radicle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radicle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radicle-governance", - "query-id": "radicle-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "radicle-governance", - "query-id": "8jQvvEWJffzA48kxnPhuG7dqv4MWwPatVKKbxzr66xiN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "reflexer-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "reflexer-governance", - "project": "reflexer", - "deployments": { - "reflexer-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "reflexer-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "reflexer-governance", - "query-id": "reflexer-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "reflexer-governance", - "query-id": "wWdwntxsEd21qDdhkzDn9ycNs5kvYamkndwv3GwLfPp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance", - "project": "uniswap", - "deployments": { - "uniswap-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance", - "query-id": "uniswap-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-governance", - "query-id": "7WXaWRE2GbBpmokFAnQfugpVsC61D9dfR6fHgjQFqpq5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance-v1", - "project": "uniswap", - "deployments": { - "uniswap-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance-v1", - "query-id": "uniswap-governance-v1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-governance-v1-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "uniswap-governance-v2": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance-v2", - "project": "uniswap", - "deployments": { - "uniswap-governance-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance-v2", - "query-id": "uniswap-governance-v2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "uniswap-governance-v2-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "unslashed-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "unslashed-governance", - "project": "unslashed", - "deployments": { - "unslashed-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "unslashed-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "unslashed-governance", - "query-id": "unslashed-governance", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "unslashed-governance-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "vesper-finance": { - "schema": "yield-aggregator", - "base": "vesper-finance", - "protocol": "vesper-finance", - "project": "vesper", - "deployments": { - "vesper-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "vesper.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vesper-ethereum", - "query-id": "vesper-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "vesper-ethereum", - "query-id": "GQdCg4oR8tFB4tH8svyL1PfgDABKnRXz4GjwFYH68pPG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "badgerdao": { - "schema": "yield-aggregator", - "base": "badgerdao", - "protocol": "badgerdao", - "project": "badger", - "deployments": { - "badgerdao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "badgerdao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "badgerdao-ethereum", - "query-id": "badgerdao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "badgerdao-ethereum", - "query-id": "BchjnXAXXV5coiCBMQH4A8yCHXEFX9S88JFF6G3mfem4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "platypus-finance": { - "schema": "dex-amm", - "base": "platypus-finance", - "protocol": "platypus-finance", - "project": "platypus", - "deployments": { - "platypus-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.3.3", - "methodology": "1.0.0" - }, - "files": { - "template": "platypus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "platypus-finance-avalanche", - "query-id": "platypus-finance-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "platypus-finance-avalanche", - "query-id": "B35cLTayreXTML6fXPTrFNSYx7mKyDuuV51LjVxWwWjp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "erc20": { - "schema": "erc20", - "base": "erc20", - "protocol": "erc20", - "project": "erc20", - "deployments": { - "erc20-holders-2017": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2017", - "query-id": "erc20-holders-2017", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2017", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "erc20-holders-2018": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2018", - "query-id": "erc20-holders-2018", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2018", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "erc20-holders-2019": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2019", - "query-id": "erc20-holders-2019", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2019", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "erc20-holders-2020": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2020", - "query-id": "erc20-holders-2020", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2020", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "erc20-holders-2021": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2021", - "query-id": "erc20-holders-2021", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2021", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "erc20-holders-2022": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2022", - "query-id": "erc20-holders-2022", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "erc20-holders-2022", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "opensea-v1": { - "schema": "nft-marketplace", - "base": "opensea", - "protocol": "opensea-v1", - "project": "opensea", - "deployments": { - "opensea-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "opensea.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-v1-ethereum", - "query-id": "opensea-v1-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opensea-v1-ethereum", - "query-id": "GSjXo5Vd1EPaMGRJBYe6HoBKv7WSq3miCrRRZJbTCHkT", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "opensea-v2": { - "schema": "nft-marketplace", - "base": "opensea", - "protocol": "opensea-v2", - "project": "opensea", - "deployments": { - "opensea-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "opensea.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-v2-ethereum", - "query-id": "opensea-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opensea-v2-ethereum", - "query-id": "ECtdoov16DUmk5qbhFx4PVVN7vidiNDwzFNsui6FoHEo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "seaport": { - "schema": "nft-marketplace", - "base": "seaport", - "protocol": "seaport", - "project": "opensea", - "deployments": { - "opensea-seaport-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "seaport.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-seaport-ethereum", - "query-id": "opensea-seaport-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opensea-seaport-ethereum", - "query-id": "2GmLsgYGWoFoouZzKjp8biYDkfmeLTkEY3VDQyZqSJHA", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "x2y2": { - "schema": "nft-marketplace", - "base": "x2y2", - "protocol": "x2y2", - "project": "x2y2", - "deployments": { - "x2y2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "x2y2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "x2y2-ethereum", - "query-id": "x2y2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "x2y2-ethereum", - "query-id": "3cMswgcjkpLmuF99ViQRZfCPRyCsnimqQsR9z6mY5e2i", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "looksrare": { - "schema": "nft-marketplace", - "base": "looksrare", - "protocol": "looksrare", - "project": "looksrare", - "deployments": { - "looksrare-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "looksrare.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "looksrare-ethereum", - "query-id": "looksrare-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "looksrare-ethereum", - "query-id": "FsT2DES8UdhfDkXCtE56h5WCDrrSXrtJiSMgNWvSdyYL", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tornado-cash": { - "schema": "generic", - "base": "tornado-cash", - "protocol": "tornado-cash", - "project": "tornado-cash", - "deployments": { - "tornado-cash-classic-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.4", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "tornado-cash-classic-ethereum", - "query-id": "tornado-cash-classic-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tornado-cash-classic-ethereum", - "query-id": "346UaR2Lgxg8yJ2Vq2r8wid1pWaYQNH6N1GmzGCJkHRV", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "tornado-cash.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "tornado-cash-classic-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "tornado-cash-classic-bsc", - "query-id": "tornado-cash-classic-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tornado-cash-classic-bsc", - "query-id": "3wAcWMmwNSv9CVfT4HFFWAvawCq621JPKfg1tniwdW7a", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "tornado-cash.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "the-graph": { - "schema": "generic", - "base": "the-graph", - "protocol": "the-graph", - "project": "the-graph", - "deployments": { - "the-graph-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "the-graph-arbitrum", - "query-id": "the-graph-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "the-graph-arbitrum", - "query-id": "EExUE3FayKraaTteewjxaUpZW4M33j4bsD6pgxNCHnGd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "theGraphTemplate.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "the-graph-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "the-graph-ethereum", - "query-id": "the-graph-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "the-graph-ethereum", - "query-id": "AQHJdvUMkPfSxi6Q2LxXYjWXjGvfCST8DFFYE4VUKtU6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "theGraphTemplate.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "aura-finance": { - "schema": "yield-aggregator", - "base": "aura-finance", - "protocol": "aura-finance", - "project": "aura", - "deployments": { - "aura-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "aura-finance-ethereum", - "query-id": "aura-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aura-finance-ethereum", - "query-id": "EcNHwEGXq3KW1vCbHHj1iwvtf62ae5kxzEQhKtRqPygt", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "aura-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "pangolin": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "pangolin", - "project": "pangolin", - "deployments": { - "pangolin-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "pangolin-avalanche", - "query-id": "pangolin-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "pangolin-avalanche", - "query-id": "6f3YqP75bLuLZAv7Cm1BohFot17kT3Svekg6giuvaTmg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "pangolin.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "rocket-pool": { - "schema": "generic", - "base": "rocket-pool", - "protocol": "rocket-pool", - "project": "rocket-pool", - "deployments": { - "rocket-pool-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "rocket-pool-ethereum", - "query-id": "rocket-pool-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "rocket-pool-ethereum", - "query-id": "Dtj2HicXKpoUjNB7ffdBkMwt3L9Sz3cbENd67AdHu6Vb", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "rocket-pool.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "cryptopunks": { - "schema": "nft-marketplace", - "base": "cryptopunks", - "protocol": "cryptopunks", - "project": "cryptopunks", - "deployments": { - "cryptopunks-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "cryptopunks.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cryptopunks-ethereum", - "query-id": "cryptopunks-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cryptopunks-ethereum", - "query-id": "HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "multichain": { - "schema": "bridge", - "base": "multichain", - "protocol": "multichain", - "project": "multichain", - "deployments": { - "multichain-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-arbitrum", - "query-id": "multichain-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-arbitrum", - "query-id": "579DZmKbpRcdLVBiLyhLEvRQBQ54BA72yDqtSaVSijRs", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-avalanche", - "query-id": "multichain-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-avalanche", - "query-id": "28ds2UuXzULQ9XLKFncX1pVL6xTENwKw9VKb7xRXC6mX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-bsc", - "query-id": "multichain-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-celo", - "query-id": "multichain-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-celo", - "query-id": "F6Rz64x6iem1VuUNUvzBzH1zzBBZfCA7cpZ91mLySXQY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-ethereum", - "query-id": "multichain-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-ethereum", - "query-id": "GRPErV1E73JGNGGsF2tK4fuuqpvBWpfRBSED8567BAD2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-fantom", - "query-id": "multichain-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-fantom", - "query-id": "B6xbS79Nza7zNjSXu1Bsq2ofpFLhDEW1mpAkECKdQXQc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-gnosis", - "query-id": "multichain-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-gnosis", - "query-id": "E3FsKA2dpjv94tPgMKmyPEa63mUQ611XRrbsgAtzqrCn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-optimism", - "query-id": "multichain-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-optimism", - "query-id": "FZkvvW6rZJxJk1E3LqhVWHRAb8oWoWZAX563Y94C6GaF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-polygon", - "query-id": "multichain-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "multichain-polygon", - "query-id": "AKgq2JRAoRnBE14iDAMN8bqDwwyufpy3AqXuZRKvyZVR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "stargate": { - "schema": "bridge", - "base": "stargate", - "protocol": "stargate", - "project": "stargate", - "deployments": { - "stargate-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-ethereum", - "query-id": "stargate-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-ethereum", - "query-id": "G1pPbbMjwCnFiyMherq8wqfMusZDriLMqvGBHLr2wS34", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-avalanche", - "query-id": "stargate-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-avalanche", - "query-id": "6XypMkQUovcohhVC2XeWgdXeDsBcnL9ynKdLXpXggoHd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-bsc", - "query-id": "stargate-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-bsc", - "query-id": "6sRx6JNkjz66id39jCK3GMiVnPVuyuv2ntwQVpDzmjRF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-arbitrum", - "query-id": "stargate-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-arbitrum", - "query-id": "DWo7jrtpTtUM1buqiCUg7j7XUF568qNPBv7FwwDceuxm", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-polygon", - "query-id": "stargate-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-polygon", - "query-id": "SitmxEcPXXwo5cFK8Y2FSMZNZNQ4gXcGdWBDqo3A7K6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-optimism", - "query-id": "stargate-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-optimism", - "query-id": "7NAF7ZtNtJiXkfCFkTSAyFbfLLfUFa55UgK5woxPxZ46", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-fantom", - "query-id": "stargate-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-fantom", - "query-id": "2pG7kUAfPhtGyy1StFLhFu8pwTR5kDsCJN9KZjWn9Lnk", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stargate-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-base", - "query-id": "stargate-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stargate-base", - "query-id": "4amk8rvTHgxSobsFKsr5jheHsDzLcwyqc8vHhNC1xhGt", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "orbit": { - "schema": "bridge", - "base": "orbit", - "protocol": "orbit", - "project": "orbit", - "deployments": { - "orbit-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-ethereum", - "query-id": "orbit-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "orbit-ethereum", - "query-id": "DpGRvQhDPH3EXRuCjMM7RednJz25Ucm2oYp56Vb4k74F", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "orbit-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-bsc", - "query-id": "orbit-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "orbit-bsc", - "query-id": "8XNHKT5X8DgsdL6hKe6tK5FnkBRR4TtS2YH23db5D6VH", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "orbit-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-celo", - "query-id": "orbit-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "orbit-celo", - "query-id": "DdGECh8tM63FEsT96AjxfhxkE5wTBeBPdnh3qkUYpcvY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "orbit-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-polygon", - "query-id": "orbit-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "orbit-polygon", - "query-id": "FQVKZkxeeqdnGU4a1Qwm5SVu8FxtQVPshzpLBAhMH1V9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "polygon-bridge": { - "schema": "bridge", - "base": "polygon-bridge", - "protocol": "polygon-bridge", - "project": "polygon", - "deployments": { - "polygon-bridge-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "polygon-bridge-ethereum", - "query-id": "polygon-bridge-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "polygon-bridge-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "polygon.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "polygon-bridge-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "polygon-bridge-polygon", - "query-id": "polygon-bridge-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "polygon-bridge-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "polygon.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "across-v2": { - "schema": "bridge", - "base": "across-v2", - "protocol": "across-v2", - "project": "across", - "deployments": { - "across-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-ethereum", - "query-id": "across-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "across-v2-ethereum", - "query-id": "34kdiaZVpPsStQdsh5xFhrZdsZvZYJGfhJ7SVGWY2Y8g", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-optimism", - "query-id": "across-v2-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "across-v2-optimism", - "query-id": "GY9s64KVsRkW4Q8pCBKQePyDdcUV1TV1ArWFzvMv2qVb", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-boba": { - "network": "boba", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-boba", - "query-id": "across-v2-boba", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "across-v2-boba", - "query-id": "4SbLL5ZptwGU9Eor3SaoV3UZw12KPiZRKkwBEbKDenjP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-arbitrum", - "query-id": "across-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "across-v2-arbitrum", - "query-id": "3rg6ZtwNUMpBrM1uSUtNqcbc6tGfyY2WLheDGSc5qMzX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-polygon", - "query-id": "across-v2-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "across-v2-polygon", - "query-id": "8ywQVEAGn6wAGdYa4ofniy52CMsYMHyK6CbBrL4ZE7ks", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "hop-protocol": { - "schema": "bridge", - "base": "hop-protocol", - "protocol": "hop-protocol", - "project": "hop", - "deployments": { - "hop-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-ethereum", - "query-id": "hop-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-ethereum", - "query-id": "7YKiuzrmUxTpSN5DddDVFm9FDjQ5387dnEivHHdX9pAc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-arbitrum", - "query-id": "hop-protocol-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-arbitrum", - "query-id": "4xY1CAbwQA7oq3a78CX8mgKFvMoZzPsv21A92Hm7rEvv", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-optimism", - "query-id": "hop-protocol-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-optimism", - "query-id": "KoMGmd2d1VMukusmf98SdWCSKH5ZP5UEUDHKrKpY74D", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-xdai": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-xdai", - "query-id": "hop-protocol-xdai", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-gnosis", - "query-id": "DA1WTRx4pbGQdTm1YqRz3MCLiap4cdgK62Q6Bjy99m1y", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-polygon", - "query-id": "hop-protocol-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-polygon", - "query-id": "iLsL5mqiwjQhdGs3XfYBdLhaKdE4yDR73iTg2PSRr1E", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-polygon-zkevm": { - "network": "polygon-zkevm", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-polygon-zkevm", - "query-id": "hop-protocol-polygon-zkevm", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hop-protocol-polygon-zkevm", - "query-id": "EkkvCmBiEPiJ5LkaSPxpuAmMouSUN5FZrdrKu7nBY5p9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "portal": { - "schema": "bridge", - "base": "portal", - "protocol": "portal", - "project": "portal", - "deployments": { - "portal-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-ethereum", - "query-id": "portal-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "portal-ethereum", - "query-id": "HxduZZ9fy1shXbo7EAG9W73geBAxzKjVNXgMkxeTJkpX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-fantom", - "query-id": "portal-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "portal-fantom", - "query-id": "3wKUbySRqqBe6bXGWm3aDr9g8fuUoxKMqcdhTGwBGyjG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-bsc", - "query-id": "portal-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "portal-bsc", - "query-id": "FCd8kxMGFkk3AGEHeYRngeHvBsuTpQo7XBLu6XoyDctr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-polygon", - "query-id": "portal-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "portal-polygon", - "query-id": "4V9sMa8P8vKAccUtR8jP28mBfvtUMip4tVvMBSDC7h3V", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-avalanche", - "query-id": "portal-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "portal-avalanche", - "query-id": "BV3hShBwZkZM7RL9XPGqZ9JyJcE2vrWqXwFQYTVquH3Z", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "optimism-bridge-v2": { - "schema": "bridge", - "base": "optimism-bridge-v2", - "protocol": "optimism-bridge-v2", - "project": "optimism", - "deployments": { - "optimism-bridge-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "optimism-bridge-v2-ethereum", - "query-id": "optimism-bridge-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "optimism-bridge-v2-ethereum", - "query-id": "DCKLUdmvmaX4eNSAouXjxt8yShp28dFKGD763Tb2KibH", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "optimism.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true - } - }, - "optimism-bridge-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "optimism-bridge-v2-optimism", - "query-id": "optimism-bridge-v2-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "optimism-bridge-v2-optimism", - "query-id": "4aUWDFLz4sVYKZDw4JDJLk8vjify1Rqij7UGFozNxA8k", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "optimism.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true - } - } - } - }, - "cbridge": { - "schema": "bridge", - "base": "cbridge", - "protocol": "cbridge", - "project": "celer-network", - "deployments": { - "cbridge-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-ethereum", - "query-id": "cbridge-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-ethereum", - "query-id": "3C9qpsGFHrAnXkmPoeRbMjH9gyTuQskzB29VrrV8NbAN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-arbitrum", - "query-id": "cbridge-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-arbitrum", - "query-id": "FGucK6FiGDyjwA1VDymrCQXgSTdZH7sCrP8HbnwVFatY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-aurora", - "query-id": "cbridge-aurora", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-aurora", - "query-id": "5uW7hwPPaHVEY7qqx5S9CV156YE7Dvjt2AAPiJ4mn12h", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-avalanche", - "query-id": "cbridge-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-avalanche", - "query-id": "2usVF8JKwgVesvXVkLj2KG6ourAPEVG7GV6j1MtTwhVa", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-boba": { - "network": "boba", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-boba", - "query-id": "cbridge-boba", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-boba", - "query-id": "AZd3VzvnYoxBKAWjbZB4snZgow9SnyTTxaxad3YPxbvh", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-bsc", - "query-id": "cbridge-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-bsc", - "query-id": "9ryiazBA4UJu1g2rbunQ42wqxvhdZP648p2jiBMjcoZc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-celo", - "query-id": "cbridge-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-celo", - "query-id": "Exzi1255D9QkAzLhcS1qrVXVDMdkQvQ6wxRDjpi9uQz6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-fantom", - "query-id": "cbridge-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-fantom", - "query-id": "Ce9MWULyvFUXRqN7LgehQVy3XBGhxk3qtFJhgznHYY3x", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-gnosis", - "query-id": "cbridge-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-gnosis", - "query-id": "FdoU8yttG4HUfoYSsP2Qit1UvvVCaZeUDPnMB4nzguNU", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-harmony", - "query-id": "cbridge-harmony", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-harmony", - "query-id": "8gXopvmmYABDCCrWuafAkYuRB4bpJ7XcbgGmN8AcMJDg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-moonbeam", - "query-id": "cbridge-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-moonbeam", - "query-id": "6F1ia9A6Vmanbzk2T3EAAev5Q9TKyF1oxu6JiUKbPdnL", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-moonriver", - "query-id": "cbridge-moonriver", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-moonriver", - "query-id": "FuFD3UqnCWhQoarNsvdY8AW5exnKXxiizJRXVakvniHX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-optimism", - "query-id": "cbridge-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-optimism", - "query-id": "GEy4r8C2cMku1TTfjzC751teQZ4dvVxXiW1F6K4fue2K", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "cbridge-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-polygon", - "query-id": "cbridge-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cbridge-polygon", - "query-id": "8rR3yC5ZPMoUauudfQC4iLJxqf5nCRjZRmYne8tEGrV9", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gmx": { - "schema": "derivatives-perpfutures", - "base": "gmx-forks", - "protocol": "gmx", - "project": "gmx", - "deployments": { - "gmx-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gmx-arbitrum", - "query-id": "gmx-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gmx-arbitrum", - "query-id": "DiR5cWwB3pwXXQWWdus7fDLR2mnFRQLiBFsVmHAH9VAs", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "gmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "gmx-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gmx-avalanche", - "query-id": "gmx-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gmx-avalanche", - "query-id": "6pXgnXcL6mkXBjKX7NyHN7tCudv2JGFnXZ8wf8WbjPXv", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "gmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "opyn-gamma": { - "schema": "derivatives-options", - "base": "opyn-gamma", - "protocol": "opyn-gamma", - "project": "opyn", - "deployments": { - "opyn-gamma-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-ethereum", - "query-id": "opyn-gamma-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opyn-gamma-ethereum", - "query-id": "3zUv74ekxpiy92MQ2MwemR8fJhjvgyBFaGzQLkYHmaUy", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-avalanche", - "query-id": "opyn-gamma-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opyn-gamma-avalanche", - "query-id": "3eaTJDJ1Y867jkDMY1iEJJLRZTSREfGZjusgmucptWJE", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-arbitrum", - "query-id": "opyn-gamma-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opyn-gamma-arbitrum", - "query-id": "BC766cXkcBxAwQ6LAYnQytdHJLpJX1C1bbrMFhLCHx7C", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-polygon", - "query-id": "opyn-gamma-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "opyn-gamma-polygon", - "query-id": "6WbUbvCBtjhKyf9ddZEfVReHNHHunzspGBp3hFsy1c8P", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "dopex": { - "schema": "derivatives-options", - "base": "dopex", - "protocol": "dopex", - "project": "dopex", - "deployments": { - "dopex-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "dopex-arbitrum", - "query-id": "dopex-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dopex-arbitrum", - "query-id": "6C7okGPnmQw4eahgvkjzKGqHyXsZBLSWz7BBEyyfe6vB", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "dopex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "dopex-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "dopex-polygon", - "query-id": "dopex-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dopex-polygon", - "query-id": "nTecf2j4MGgqgJrKTGmvVyWn169py1H9fgvaiN29MVu", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "dopex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "gains-trade": { - "schema": "derivatives-perpfutures", - "base": "gains-trade", - "protocol": "gains-trade", - "project": "gains-network", - "deployments": { - "gains-trade-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gains-trade-arbitrum", - "query-id": "gains-trade-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gains-trade-arbitrum", - "query-id": "DuPBYBj3nfP3sFiHwkRfTATmA4iSqoPvxBaRXWiwpELk", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "gains.trade.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "gains-trade-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gains-trade-polygon", - "query-id": "gains-trade-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gains-trade-polygon", - "query-id": "4d1zcsK9f1T2wzZTGZHaLKswbhmKTRWu1yeyX94htoMW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "gains.trade.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "vela-exchange": { - "schema": "derivatives-perpfutures", - "base": "vela-exchange", - "protocol": "vela-exchange", - "project": "vela-exchange", - "deployments": { - "vela-exchange-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "vela-exchange-arbitrum", - "query-id": "vela-exchange-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "vela-exchange-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "vela.exchange.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "synfutures-v2": { - "schema": "derivatives-perpfutures", - "base": "synfutures-v2", - "protocol": "synfutures-v2", - "project": "synfutures-v2", - "deployments": { - "synfutures-v2-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "synfutures-v2-polygon", - "query-id": "synfutures-v2-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "synfutures-v2-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "synfutures.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "mux-protocol": { - "schema": "derivatives-perpfutures", - "base": "mux-protocol", - "protocol": "mux-protocol", - "project": "mux-protocol", - "deployments": { - "mux-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-arbitrum", - "query-id": "mux-protocol-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mux-protocol-arbitrum", - "query-id": "AMh1u4wCbz8Jybs4Nf7uGBdU9dz2C8mJkH1Aocz6HXUf", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-avalanche", - "query-id": "mux-protocol-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mux-protocol-avalanche", - "query-id": "97XbzzGmRpUvHwdZyArbyrZHFnmWU15tC381epA1Fp7H", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-bsc", - "query-id": "mux-protocol-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mux-protocol-bsc", - "query-id": "3zRKcHbGqvMe6BG6fiLiaKx3y41ytzjw4jetbh5Q2fx1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-fantom", - "query-id": "mux-protocol-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mux-protocol-fantom", - "query-id": "46iwTwh5F6yAuKHF9iwFccu9wsYEaXwQCwnj2EjcEgBk", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-optimism", - "query-id": "mux-protocol-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mux-protocol-optimism", - "query-id": "7hUM4US9DPz6JqLD6ySqwFmLq4XiAF7cEZLmEesQnYgR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "kwenta": { - "schema": "derivatives-perpfutures", - "base": "kwenta", - "protocol": "kwenta", - "project": "kwenta", - "deployments": { - "kwenta-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "kwenta-optimism", - "query-id": "kwenta-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "kwenta-optimism", - "query-id": "5sbJJTTJQQ4kYuVYNBVw9sX8C5juRpVJNLHg7uFugw2e", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "kwenta.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "level-finance": { - "schema": "derivatives-perpfutures", - "base": "level-finance", - "protocol": "level-finance", - "project": "level-finance", - "deployments": { - "level-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "level-finance-bsc", - "query-id": "level-finance-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "level-finance-bsc", - "query-id": "97TRgysfrSPH7sumNXSasdjhKBnDwig2JKE7PwB4W2J8", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "level.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "level-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "level-finance-arbitrum", - "query-id": "level-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "level-finance-arbitrum", - "query-id": "9KPc6WMUXg6mqQ9KbCeosJrgmsZyH97vpFPKwJHkVkui", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - }, - "files": { - "template": "level.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "axelar": { - "schema": "bridge", - "base": "axelar", - "protocol": "axelar", - "project": "axelar", - "deployments": { - "axelar-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-ethereum", - "query-id": "axelar-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-ethereum", - "query-id": "8u1rrGZY3gjXAAVJidygbpKeHzitrMSQV1RoLAkyd1AA", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-arbitrum", - "query-id": "axelar-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-arbitrum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.2", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-avalanche", - "query-id": "axelar-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-avalanche", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-bsc", - "query-id": "axelar-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-celo": { - "network": "celo", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-celo", - "query-id": "axelar-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-celo", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-fantom", - "query-id": "axelar-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-fantom", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-moonbeam", - "query-id": "axelar-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-moonbeam", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "axelar-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-polygon", - "query-id": "axelar-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "axelar-polygon", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "camelot-v2": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "camelot-v2", - "project": "camelot", - "deployments": { - "camelot-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "camelot.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "camelot-v2-arbitrum", - "query-id": "camelot-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "camelot-v2-arbitrum", - "query-id": "E6J42xXvRQGsqcMEoWRkdeJjUTsWdcHL8khuFMY6CDAM", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "thena-fusion": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "thena-fusion", - "project": "thena", - "deployments": { - "thena-fusion-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "3.0.4", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "thena.fusion.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "thena-fusion-bsc", - "query-id": "thena-fusion-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "thena-fusion-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "thena-v1": { - "schema": "dex-amm", - "base": "solidly-forks", - "protocol": "thena-v1", - "project": "thena", - "deployments": { - "thena-v1-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "thena.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "thena-v1-bsc", - "query-id": "thena-v1-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "thena-v1-bsc", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "eigenlayer": { - "schema": "generic", - "base": "eigenlayer", - "protocol": "eigenlayer", - "project": "eigenlayer", - "deployments": { - "eigenlayer-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "eigenlayer.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "eigenlayer-ethereum", - "query-id": "eigenlayer-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "eigenlayer-ethereum", - "query-id": "68g9WSC4QTUJmMpuSbgLNENrcYha4mPmXhWGCoupM7kB", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "friend-tech": { - "schema": "generic", - "base": "friend-tech", - "protocol": "friend-tech", - "project": "friend-tech", - "deployments": { - "friend-tech-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "friend.tech.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "friend-tech-base", - "query-id": "friend-tech-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "friend-tech-base", - "query-id": "8fjDwMF5JPXYEg3tU45ttTsnp3mdTQd5efhkHhHGHCKj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stader": { - "schema": "generic", - "base": "stader", - "protocol": "stader", - "project": "stader", - "deployments": { - "stader-ethereum": { - "network": "mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stader.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stader-ethereum", - "query-id": "stader-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stader-ethereum", - "query-id": "2RLAUqUMvGGFygtuJfmTyeo62zFSJswDZSRMTcu28fSa", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "etherfi": { - "schema": "generic", - "base": "etherfi", - "protocol": "etherfi", - "project": "etherfi", - "deployments": { - "etherfi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "etherfi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "etherfi-ethereum", - "query-id": "etherfi-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "etherfi-ethereum", - "query-id": "GPwCNqJ5aroTtkk48Y57pBjFHVkeYmMzmBpE1a7WF7Hc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "frax-ether-staking": { - "schema": "generic", - "base": "frax-ether-staking", - "protocol": "frax-ether-staking", - "project": "frax-ether-staking", - "deployments": { - "frax-ether-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-ethereum", - "query-id": "frax-ether-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-ethereum", - "query-id": "FeKHrGeNxVctN6EeAhba2Kv78xNxuEhbRKNECLfVH8z2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-arbitrum", - "query-id": "frax-ether-staking-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-arbitrum", - "query-id": "FSafXUhkuwqARZNNe82isspkjQJcPK2PrSjQLvNXuakU", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-bsc", - "query-id": "frax-ether-staking-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-bsc", - "query-id": "A113zHKpiXzugLyKDVknAxjQ6qFSPQwfiGK7rjiuqbcq", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-fantom", - "query-id": "frax-ether-staking-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-fantom", - "query-id": "Ba52AgUJfCmWQpBJEwRvygC45iGr9uqnrehpymN2Xmx4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-moonbeam", - "query-id": "frax-ether-staking-moonbeam", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-moonbeam", - "query-id": "FhaAErF9146bnqJsQD34zPHNC11quKTuk9HBA7RdGrjz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-optimism", - "query-id": "frax-ether-staking-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-optimism", - "query-id": "G9nDvQw6S7LkzNxj7oGFZUsahe3ebpAtEww716kWkfZd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "frax-ether-staking-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-polygon", - "query-id": "frax-ether-staking-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "frax-ether-staking-polygon", - "query-id": "FMkrjPgSyGm2UBFrMqpJVwWgGHLek8U39W1M4R9TfP1T", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mantle-staked-eth": { - "schema": "generic", - "base": "mantle-staked-eth", - "protocol": "mantle-staked-eth", - "project": "mantle-staked-eth", - "deployments": { - "mantle-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mantle-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mantle-staked-eth-ethereum", - "query-id": "mantle-staked-eth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mantle-staked-eth-ethereum", - "query-id": "VVKZagj4XUyamqXysVBniarN8HMz87DnwkTChuXH18Z", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "swell-liquid-staking": { - "schema": "generic", - "base": "swell-liquid-staking", - "protocol": "swell-liquid-staking", - "project": "swell-liquid-staking", - "deployments": { - "swell-liquid-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "swell.liquid.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "swell-liquid-staking-ethereum", - "query-id": "swell-liquid-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "swell-liquid-staking-ethereum", - "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "puffer-finance": { - "schema": "generic", - "base": "puffer-finance", - "protocol": "puffer-finance", - "project": "puffer-finance", - "deployments": { - "puffer-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "puffer.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "puffer-finance-ethereum", - "query-id": "puffer-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "puffer-finance-ethereum", - "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "karak": { - "schema": "generic", - "base": "karak", - "protocol": "karak", - "project": "karak", - "deployments": { - "karak-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-ethereum", - "query-id": "karak-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "karak-ethereum", - "query-id": "2vzPTkDT2DddrRoXtg25AGK55nviKXeJiG21Cu56nurg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "karak-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-arbitrum", - "query-id": "karak-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "karak-arbitrum", - "query-id": "7kCkjx6GK67WZrVo54UcLWZ7kBx65TogBW1CD316XZgn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "karak-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-bsc", - "query-id": "karak-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "karak-bsc", - "query-id": "8YGDQQgExT7zLJioLRQdcSQko1qgiCjfwVg7TBV6eR7W", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "renzo": { - "schema": "generic", - "base": "renzo", - "protocol": "renzo", - "project": "renzo", - "deployments": { - "renzo-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-ethereum", - "query-id": "renzo-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-ethereum", - "query-id": "91jPrEeA5BPzDHmjKjVwmgDvGEQpAwh5yusTbHCQiQbM", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "renzo-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-arbitrum", - "query-id": "renzo-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-arbitrum", - "query-id": "5P79EkkSDxiXxWgiYcpsvML7Q3MSu64sHi8LF2xVggQz", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "renzo-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-base", - "query-id": "renzo-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-base", - "query-id": "Atj9RDj7hzmUd6a3PTzpPCpjJPzqMbvPLdxMfF2BFy5B", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "renzo-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-blast", - "query-id": "renzo-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-blast", - "query-id": "HXWd4suSQ4TztRznBCi1dWdBKrHvkDPZBA2hy5nng1eL", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "renzo-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-bsc", - "query-id": "renzo-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-bsc", - "query-id": "JD3KpTX2bdwVMtZvX3HmPKSGQsVYP8FRkUJs51vZBJPR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "renzo-mode": { - "network": "mode-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-mode", - "query-id": "renzo-mode", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "renzo-mode", - "query-id": "AUcw3uDfWmRQDHKgnQ6C7P2139scRwvzMfrJovSGbACW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ring-few": { - "schema": "generic", - "base": "ring-few", - "protocol": "ring-few", - "project": "ring-few", - "deployments": { - "ring-few-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ring.few.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ring-few-blast", - "query-id": "ring-few-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ring-few-blast", - "query-id": "FfTNTmfsJAz1gUqnc3RxGEqyaeMTRdaS4C5bYHAHbzsC", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "cygnus-finance": { - "schema": "generic", - "base": "cygnus-finance", - "protocol": "cygnus-finance", - "project": "cygnus-finance", - "deployments": { - "cygnus-finance-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cygnus.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cygnus-finance-base", - "query-id": "cygnus-finance-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cygnus-finance-base", - "query-id": "ELqNv3KbLggc6kN6uoeKvrbfBpbkQbAorZo3FABZJb6A", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "symbiotic": { - "schema": "generic", - "base": "symbiotic", - "protocol": "symbiotic", - "project": "symbiotic", - "deployments": { - "symbiotic-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "symbiotic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "symbiotic-ethereum", - "query-id": "symbiotic-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "symbiotic-ethereum", - "query-id": "2Bp6ibq6y7LLUoZRi4AfPmDNLrMcM6pKJCbusMPCAvzr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "hyperlock-finance": { - "schema": "generic", - "base": "hyperlock-finance", - "protocol": "hyperlock-finance", - "project": "hyperlock-finance", - "deployments": { - "hyperlock-finance-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hyperlock.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hyperlock-finance-blast", - "query-id": "hyperlock-finance-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hyperlock-finance-blast", - "query-id": "tXk1UdCXjJkyvBRXvc5KvqGGZVSpdsdPoYrTAemT1kV", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "amphor": { - "schema": "generic", - "base": "amphor", - "protocol": "amphor", - "project": "amphor", - "deployments": { - "amphor-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "amphor.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "amphor-ethereum", - "query-id": "amphor-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "amphor-ethereum", - "query-id": "RkDsVce2tRzGWbNAeZJrRy7nLAmMWtxQ6ixerhhw581", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "zircuit-staking": { - "schema": "generic", - "base": "zircuit-staking", - "protocol": "zircuit-staking", - "project": "zircuit-staking", - "deployments": { - "zircuit-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zircuit.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "zircuit-staking-ethereum", - "query-id": "zircuit-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "zircuit-staking-ethereum", - "query-id": "AFZyi8H8ASMA3JzBf4d2eG3Ajxtx7mbD1H5G4Bpjn4ZD", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "lybra-finance": { - "schema": "generic", - "base": "lybra-finance", - "protocol": "lybra-finance", - "project": "lybra-finance", - "deployments": { - "lybra-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lybra.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lybra-finance-ethereum", - "query-id": "lybra-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "lybra-finance-ethereum", - "query-id": "2fNZY1J6FzuoHnx8ZTuhiEiM5AhzU3JiC7vp4UqaktSj", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stream-finance": { - "schema": "generic", - "base": "stream-finance", - "protocol": "stream-finance", - "project": "stream-finance", - "deployments": { - "stream-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stream.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stream-finance-ethereum", - "query-id": "stream-finance-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stream-finance-ethereum", - "query-id": "7wzhzJbytdHNsE12B3ascjZKhP8LvoVtuhXqZ97gz2Dr", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "umami-finance": { - "schema": "generic", - "base": "umami-finance", - "protocol": "umami-finance", - "project": "umami-finance", - "deployments": { - "umami-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "umami.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "umami-finance-arbitrum", - "query-id": "umami-finance-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "umami-finance-arbitrum", - "query-id": "3nfuRKwAnT5xEBtKT9cKhdCp517TDvEqhgY1eDKAtuZi", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "kelp-dao": { - "schema": "generic", - "base": "kelp-dao", - "protocol": "kelp-dao", - "project": "kelp-dao", - "deployments": { - "kelp-dao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kelp.dao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "kelp-dao-ethereum", - "query-id": "kelp-dao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "kelp-dao-ethereum", - "query-id": "BKAuuey1mAQimbeKHWHQTLkFHeSn4Z9cfSJcHBaYhrV2", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "chainlink-staking": { - "schema": "generic", - "base": "chainlink-staking", - "protocol": "chainlink-staking", - "project": "chainlink-staking", - "deployments": { - "chainlink-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "chainlink.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "chainlink-staking-ethereum", - "query-id": "chainlink-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "chainlink-staking-ethereum", - "query-id": "CEvNvcykaphaHuipRNsP5fd2LE75QLsFtLnofTcf6JZX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "liquid-collective": { - "schema": "generic", - "base": "liquid-collective", - "protocol": "liquid-collective", - "project": "liquid-collective", - "deployments": { - "liquid-collective-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "liquid.collective.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "liquid-collective-ethereum", - "query-id": "liquid-collective-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "liquid-collective-ethereum", - "query-id": "4kRPyZuhGgAcjYuVgbR79qm5WQ3TvXeaqVHRHx6MV5U7", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "binance-staked-eth": { - "schema": "generic", - "base": "binance-staked-eth", - "protocol": "binance-staked-eth", - "project": "binance-staked-eth", - "deployments": { - "binance-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "binance-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "binance-staked-eth-ethereum", - "query-id": "binance-staked-eth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "binance-staked-eth-ethereum", - "query-id": "EdxuQc4V8zGV9f34KZJhUNmBrfdPWMmbjVTzjUsyJZgd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "binance-staked-eth-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "binance-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "binance-staked-eth-bsc", - "query-id": "binance-staked-eth-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "binance-staked-eth-bsc", - "query-id": "Hfb8J7aNfT8cjgDTYMjWt5Mb7yRtS1CJC4UQeWEfWNsU", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "concentrator": { - "schema": "generic", - "base": "concentrator", - "protocol": "concentrator", - "project": "concentrator", - "deployments": { - "concentrator-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "concentrator.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "concentrator-ethereum", - "query-id": "concentrator-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "concentrator-ethereum", - "query-id": "FigcbmZouBnKctj6zqsvp1LhHiV1pZdVQ6ABrA27w3Lk", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "vaultka": { - "schema": "generic", - "base": "vaultka", - "protocol": "vaultka", - "project": "vaultka", - "deployments": { - "vaultka-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "vaultka.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vaultka-arbitrum", - "query-id": "vaultka-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "vaultka-arbitrum", - "query-id": "GerYgkkJgdtE5LoxqiqXrxJzjDrLWixEd7D3aqfDQBxe", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "benqi-staked-avax": { - "schema": "generic", - "base": "benqi-staked-avax", - "protocol": "benqi-staked-avax", - "project": "benqi-staked-avax", - "deployments": { - "benqi-staked-avax-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "benqi-staked-avax.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "benqi-staked-avax-avalanche", - "query-id": "benqi-staked-avax-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "benqi-staked-avax-avalanche", - "query-id": "6vSK9N1NGT65mRgMtNfoxwPkaMJoJBQJA2Z5G1fKEKCu", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stakestone": { - "schema": "generic", - "base": "stakestone", - "protocol": "stakestone", - "project": "stakestone", - "deployments": { - "stakestone-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakestone.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakestone-ethereum", - "query-id": "stakestone-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stakestone-ethereum", - "query-id": "Dks14vz78EJf4i5SomNUBcpoLRbFKrAD8imtMdUC37bg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "llama-airforce": { - "schema": "generic", - "base": "llama-airforce", - "protocol": "llama-airforce", - "project": "llama-airforce", - "deployments": { - "llama-airforce-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "llama.airforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "llama-airforce-ethereum", - "query-id": "llama-airforce-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "llama-airforce-ethereum", - "query-id": "C2EGJcZhx44BMaT9hJ2K2zjPGdYmrnuK7MusKEXaEPPH", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mellow-lrt": { - "schema": "generic", - "base": "mellow-lrt", - "protocol": "mellow-lrt", - "project": "mellow-lrt", - "deployments": { - "mellow-lrt-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mellow.lrt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "mellow-lrt-ethereum", - "query-id": "mellow-lrt-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mellow-lrt-ethereum", - "query-id": "B5asn3DbqssJhSevYyQQUPVrtoXqfnQBqNvp1En52wCY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "eigenpie": { - "schema": "generic", - "base": "eigenpie", - "protocol": "eigenpie", - "project": "eigenpie", - "deployments": { - "eigenpie-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "eigenpie.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "eigenpie-ethereum", - "query-id": "eigenpie-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "eigenpie-ethereum", - "query-id": "BbkLSUBpyJv8UiCyMyQBGpngz8qfdhx4LJBqFdHqiwhH", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "prime-staked-eth": { - "schema": "generic", - "base": "prime-staked-eth", - "protocol": "prime-staked-eth", - "project": "prime-staked-eth", - "deployments": { - "prime-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "prime.staked.eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "prime-staked-eth-ethereum", - "query-id": "prime-staked-eth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "prime-staked-eth-ethereum", - "query-id": "222GCE8sewRURAfh7meRbkyNE9NNG2HqfVfYmfFg9MkR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "coinbase-wrapped-staked-eth": { - "schema": "generic", - "base": "coinbase-wrapped-staked-eth", - "protocol": "coinbase-wrapped-staked-eth", - "project": "coinbase-wrapped-staked-eth", - "deployments": { - "coinbase-wrapped-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "coinbase-wrapped-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "coinbase-wsteth-ethereum", - "query-id": "coinbase-wsteth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "coinbase-wsteth-ethereum", - "query-id": "4bPFmTTqoKZcQL8DXj8jBbo86pm4RisAQeuGhZKkvA9X", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "slisbnb": { - "schema": "generic", - "base": "slisbnb", - "protocol": "slisbnb", - "project": "slisbnb", - "deployments": { - "slisbnb-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "slisbnb.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "slisbnb-bsc", - "query-id": "slisbnb-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "slisbnb-bsc", - "query-id": "7Ptuvapgqo21jvcH2dquePfmfpEwENFHERN48pKptZf3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "bedrock-unieth": { - "schema": "generic", - "base": "bedrock-unieth", - "protocol": "bedrock-unieth", - "project": "bedrock-unieth", - "deployments": { - "bedrock-unieth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bedrock.unieth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bedrock-unieth-ethereum", - "query-id": "bedrock-unieth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bedrock-unieth-ethereum", - "query-id": "69xran7p1VnLJoLrC7g5jeGTWsEkMD5kNqhYaEPbAzx6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "origin-ether": { - "schema": "generic", - "base": "origin-ether", - "protocol": "origin-ether", - "project": "origin-ether", - "deployments": { - "origin-ether-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "origin.ether.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "origin-ether-ethereum", - "query-id": "origin-ether-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "origin-ether-ethereum", - "query-id": "EYpKTVtNYaVN3LfDi1BCQBxhhUq53BTWcbExDt53cH75", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "node-dao": { - "schema": "generic", - "base": "node-dao", - "protocol": "node-dao", - "project": "node-dao", - "deployments": { - "node-dao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "node.dao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "node-dao-ethereum", - "query-id": "node-dao-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "node-dao-ethereum", - "query-id": "FfhhdxuMRwc7R2dBZd4MH4NZKRwZm5rqEFzY4XDoEq6x", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "dinero-pxeth": { - "schema": "generic", - "base": "dinero-pxeth", - "protocol": "dinero-pxeth", - "project": "dinero-pxeth", - "deployments": { - "dinero-pxeth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dinero-pxeth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "dinero-pxeth-ethereum", - "query-id": "dinero-pxeth-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "dinero-pxeth-ethereum", - "query-id": "4WV13q7iDBhFyqprdbFX5eb2h29Qh6c7aVuCjUHX8148", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stake-link-liquid": { - "schema": "generic", - "base": "stake-link-liquid", - "protocol": "stake-link-liquid", - "project": "stake-link-liquid", - "deployments": { - "stake-link-liquid-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stake-link-liquid.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stake-link-liquid-ethereum", - "query-id": "stake-link-liquid-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stake-link-liquid-ethereum", - "query-id": "AV8BsSRc9oC4dr6yN7wPi4PyXsBnW3oHqbvoKfbEr1XW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gogopool": { - "schema": "generic", - "base": "gogopool", - "protocol": "gogopool", - "project": "gogopool", - "deployments": { - "gogopool-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gogopool.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gogopool-avalanche", - "query-id": "gogopool-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gogopool-avalanche", - "query-id": "4fD8jH8YUR4HSyQZArgyX5RVvgPLoG6H1stzUeHSNBne", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gaurda-staking": { - "schema": "generic", - "base": "gaurda-staking", - "protocol": "gaurda-staking", - "project": "gaurda-staking", - "deployments": { - "gaurda-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gaurda-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gaurda-staking-ethereum", - "query-id": "gaurda-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gaurda-staking-ethereum", - "query-id": "7Ax8MpZkfR5CnQFKRxUEGG8TuyrW5UwxohXC8opnqZ7j", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tenderize-v2": { - "schema": "generic", - "base": "tenderize-v2", - "protocol": "tenderize-v2", - "project": "tenderize-v2", - "deployments": { - "tenderize-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tenderize-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tenderize-v2-ethereum", - "query-id": "tenderize-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tenderize-v2-ethereum", - "query-id": "7dyhXtGrSebgffTAduYLzbdef1EQwDWEULnVogeTDmfG", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "tenderize-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tenderize-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tenderize-v2-arbitrum", - "query-id": "tenderize-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tenderize-v2-arbitrum", - "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tensorplex": { - "schema": "generic", - "base": "tensorplex", - "protocol": "tensorplex", - "project": "tensorplex", - "deployments": { - "tensorplex-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tensorplex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tensorplex-ethereum", - "query-id": "tensorplex-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tensorplex-ethereum", - "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "paxos-gold": { - "schema": "generic", - "base": "paxos-gold", - "protocol": "paxos-gold", - "project": "paxos-gold", - "deployments": { - "paxos-gold-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "paxos-gold.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "paxos-gold-ethereum", - "query-id": "paxos-gold-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "paxos-gold-ethereum", - "query-id": "3GYHnRz961CsPut6udWqaVdDJN7imKZWjBqfyzaAbPri", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "tether-gold": { - "schema": "generic", - "base": "tether-gold", - "protocol": "tether-gold", - "project": "tether-gold", - "deployments": { - "tether-gold-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tether-gold.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tether-gold-ethereum", - "query-id": "tether-gold-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "tether-gold-ethereum", - "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aurus": { - "schema": "generic", - "base": "aurus", - "protocol": "aurus", - "project": "aurus", - "deployments": { - "aurus-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aurus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aurus-ethereum", - "query-id": "aurus-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aurus-ethereum", - "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "klimadao": { - "schema": "generic", - "base": "klimadao", - "protocol": "klimadao", - "project": "klimadao", - "deployments": { - "klimadao-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "klimadao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "klimadao-polygon", - "query-id": "klimadao-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "klimadao-polygon", - "query-id": "6SasXXKVoVSFEJqEGQqUQMEL2nufjaapbNuzE7tDCuu8", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "matrixdock": { - "schema": "generic", - "base": "matrixdock", - "protocol": "matrixdock", - "project": "matrixdock", - "deployments": { - "matrixdock-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "matrixdock.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "matrixdock-ethereum", - "query-id": "matrixdock-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "matrixdock-ethereum", - "query-id": "CAKvXVz7dzbF5HH4MVWXi1ozhCm1omWpmYk4n2s56tjJ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "powh3d": { - "schema": "generic", - "base": "powh3d", - "protocol": "powh3d", - "project": "powh3d", - "deployments": { - "powh3d-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "powh3d.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "powh3d-ethereum", - "query-id": "powh3d-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "powh3d-ethereum", - "query-id": "83e1tomqiwGsM2LehC4MpUUxCQKvRNk92dk6AL21oit4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "nexus-mutual": { - "schema": "generic", - "base": "nexus-mutual", - "protocol": "nexus-mutual", - "project": "nexus-mutual", - "deployments": { - "nexus-mutual-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "nexus-mutual.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "nexus-mutual-ethereum", - "query-id": "nexus-mutual-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "nexus-mutual-ethereum", - "query-id": "FMtuHz5h9uDsTo6Z4ZXg4zgCBrsHPqFhbSBiTjgZV1AQ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "yieldyak-staked-avax": { - "schema": "generic", - "base": "yieldyak-staked-avax", - "protocol": "yieldyak-staked-avax", - "project": "yieldyak-staked-avax", - "deployments": { - "yieldyak-staked-avax-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldyak-staked-avax.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldyak-staked-avax-avalanche", - "query-id": "yieldyak-staked-avax-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yieldyak-staked-avax-avalanche", - "query-id": "DFD6o4jyHAXnrEHNZv45JHEJJAwq9atyyCoJ2oq8spc1", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "blackwing": { - "schema": "generic", - "base": "blackwing", - "protocol": "blackwing", - "project": "blackwing", - "deployments": { - "blackwing-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-ethereum", - "query-id": "blackwing-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "blackwing-ethereum", - "query-id": "G3scLRUbu9bGGs1JwPU4yUw3JKDBi1YYVee2rwU39MeP", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "blackwing-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-arbitrum", - "query-id": "blackwing-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "blackwing-arbitrum", - "query-id": "BbgxhvZhDAW2HjDLFdUucHjYYLFmVHivitbyyK21MNer", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "blackwing-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-bsc", - "query-id": "blackwing-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "blackwing-bsc", - "query-id": "9PZ1rE37Krm2AtwRPaDovCqjMuAYjLAgSJZruowofv16", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "creth2": { - "schema": "generic", - "base": "creth2", - "protocol": "creth2", - "project": "creth2", - "deployments": { - "creth2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "creth2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "creth2-ethereum", - "query-id": "creth2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "cream-eth-2-ethereum", - "query-id": "8aXEEhktu4zb1qv388ZgP1GggJUY1btKVoqm1S1mGHmY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stcelo": { - "schema": "generic", - "base": "stcelo", - "protocol": "stcelo", - "project": "stcelo", - "deployments": { - "stcelo-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stcelo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stcelo-celo", - "query-id": "stcelo-celo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "staked-celo-celo", - "query-id": "DrXwENbuEpbJ7EHZqdEjYqeoPGSYWC35oVWuZ6LyaW3j", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "hord-fi": { - "schema": "generic", - "base": "hord-fi", - "protocol": "hord-fi", - "project": "hord-fi", - "deployments": { - "hord-fi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hord-fi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "hord-fi-ethereum", - "query-id": "hord-fi-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "hord-fi-ethereum", - "query-id": "En1soX984KfBh45TBcEVH7B2AaPxCoHAo4vEwJ2sfnx4", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "anzen-v2": { - "schema": "generic", - "base": "anzen-v2", - "protocol": "anzen-v2", - "project": "anzen-v2", - "deployments": { - "anzen-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-ethereum", - "query-id": "anzen-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "anzen-v2-ethereum", - "query-id": "FWbueBconwHjZpu7AJRAV6fx8n8dGnZ3uDkCtMgByuwu", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "anzen-v2-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-base", - "query-id": "anzen-v2-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "anzen-v2-base", - "query-id": "CbQHFSCr7XjAAQ1mUmNHSS2AQGrzxst5z3igTUsZMyhN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "anzen-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-arbitrum", - "query-id": "anzen-v2-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "anzen-v2-arbitrum", - "query-id": "6sArjf9NeQYBKABesaYjXnKP1r6iNuD4VudCDNrHrsR5", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "anzen-v2-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-blast", - "query-id": "anzen-v2-blast", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "anzen-v2-blast", - "query-id": "4mqq4fNs2rfnSUfv97efYiLK4ZviJsyiqBVxVmEFjibo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mev-protocol": { - "schema": "generic", - "base": "mev-protocol", - "protocol": "mev-protocol", - "project": "mev-protocol", - "deployments": { - "mev-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mev-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mev-protocol-ethereum", - "query-id": "mev-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mev-protocol-ethereum", - "query-id": "357GA1eUz5JZzi8GKT5jZmvt3qpNBUqWmffqFWBQi7Cg", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "geode": { - "schema": "generic", - "base": "geode", - "protocol": "geode", - "project": "geode", - "deployments": { - "geode-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "geode.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "geode-avalanche", - "query-id": "geode-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "geode-avalanche", - "query-id": "Fzef5CZEkTbGuL4n852JBKDtYT9jYJ5TfVDZGnSaPCsw", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "beethovenx-sftmx": { - "schema": "generic", - "base": "beethovenx-sftmx", - "protocol": "beethovenx-sftmx", - "project": "beethovenx-sftmx", - "deployments": { - "beethovenx-sftmx-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "beethovenx-sftmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethovenx-sftmx-fantom", - "query-id": "beethovenx-sftmx-fantom", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "beethovenx-sftmx-fantom", - "query-id": "4XjrnBJegUimJGGop2Nxfqj1H45TGwhXSGR7GvzG9keT", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "stakewise-v2": { - "schema": "generic", - "base": "stakewise-v2", - "protocol": "stakewise-v2", - "project": "stakewise-v2", - "deployments": { - "stakewise-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakewise-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakewise-v2-ethereum", - "query-id": "stakewise-v2-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stakewise-v2-ethereum", - "query-id": "2vmnaGa7TjrKP9Q6ncbV5WvFvEJMvAHgMAQaMpFnTmpS", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "stakewise-v2-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakewise-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakewise-v2-gnosis", - "query-id": "stakewise-v2-gnosis", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "stakewise-v2-gnosis", - "query-id": "3RMneHsDkc3e9J2HeqNezZ2hssGm8Kmuknsy5kiqEtfv", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "suzaku": { - "schema": "generic", - "base": "suzaku", - "protocol": "suzaku", - "project": "suzaku", - "deployments": { - "suzaku-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "suzaku.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "suzaku-avalanche", - "query-id": "suzaku-avalanche", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "suzaku-avalanche", - "query-id": "ChnR9QwW6tzKt2hbuHLmHqeB1Sk35UzR1XDbxYBA3cvW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "deq": { - "schema": "generic", - "base": "deq", - "protocol": "deq", - "project": "deq", - "deployments": { - "deq-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "deq.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "deq-ethereum", - "query-id": "deq-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "deq-fi-ethereum", - "query-id": "D1b2w9gpsw5ta9kitgg1x5it7vjuYBSQSxGPzUJCE6LT", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aspida": { - "schema": "generic", - "base": "aspida", - "protocol": "aspida", - "project": "aspida", - "deployments": { - "aspida-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aspida.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aspida-ethereum", - "query-id": "aspida-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aspida-ethereum", - "query-id": "BC9v6SDtvEhrruVW8mfX6ydWWH9CDEM8UCmZvJ4QSHiN", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "yieldnest": { - "schema": "generic", - "base": "yieldnest", - "protocol": "yieldnest", - "project": "yieldnest", - "deployments": { - "yieldnest-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldnest.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldnest-ethereum", - "query-id": "yieldnest-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yieldnest-ethereum", - "query-id": "EHG4qyPLWv4fhXHxa7hiqsaVoWFEiaDvB7pe3CzN6jL6", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "yieldnest-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldnest.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldnest-bsc", - "query-id": "yieldnest-bsc", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "yieldnest-bsc", - "query-id": "BH5pBHMxeNBzvsCnZuzJxi4kjrbyAsF5CyREGaV99gqR", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "inception": { - "schema": "generic", - "base": "inception", - "protocol": "inception", - "project": "inception", - "deployments": { - "inception-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "inception.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "inception-ethereum", - "query-id": "inception-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "inception-ethereum", - "query-id": "8BKHkTqYumCog3xwVfhPL99pRbddk5xdL3P1k5xkSbgM", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "aqua-patina": { - "schema": "generic", - "base": "aqua-patina", - "protocol": "aqua-patina", - "project": "aqua-patina", - "deployments": { - "aqua-patina-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aqua-patina.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aqua-patina-ethereum", - "query-id": "aqua-patina-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "aqua-patina-ethereum", - "query-id": "4FBKKFiCv9bk3ggBamDtEuL9gNtE7Wuef4AYpASYpgGX", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "affine-restaking": { - "schema": "generic", - "base": "affine-restaking", - "protocol": "affine-restaking", - "project": "affine-restaking", - "deployments": { - "affine-restaking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "affine-restaking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "affine-restaking-ethereum", - "query-id": "affine-restaking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "affine-restaking-ethereum", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "affine-restaking-linea": { - "network": "linea", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "affine-restaking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "affine-restaking-linea", - "query-id": "affine-restaking-linea", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "affine-restaking-linea", - "query-id": "FK525H2L7hunrwYytG8vEN3qBUqbZE4AHXVRWKWpLnJV", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "kernel-protocol": { - "schema": "generic", - "base": "kernel-protocol", - "protocol": "kernel-protocol", - "project": "kernel-protocol", - "deployments": { - "kernel-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kernel-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "kernel-protocol-ethereum", - "query-id": "kernel-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "kernel-protocol-ethereum", - "query-id": "BPPmqYgnXQoUfZYhVhtCT4btU81BwrrEwPBeR9rotSJD", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "mountain-protocol": { - "schema": "generic", - "base": "mountain-protocol", - "protocol": "mountain-protocol", - "project": "mountain-protocol", - "deployments": { - "mountain-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-ethereum", - "query-id": "mountain-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mountain-protocol-ethereum", - "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "mountain-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-arbitrum", - "query-id": "mountain-protocol-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mountain-protocol-arbitrum", - "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "mountain-protocol-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-base", - "query-id": "mountain-protocol-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mountain-protocol-base", - "query-id": "j3sSJTsVHhmBBktg63cPKxYqchRVhLKdJrJVAoWfLUn", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "mountain-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-optimism", - "query-id": "mountain-protocol-optimism", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mountain-protocol-optimism", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "mountain-protocol-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-polygon", - "query-id": "mountain-protocol-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "mountain-protocol-polygon", - "query-id": "Gs7wJLxSNywuKdNYKA3Y1SdDDcUYJxd5kr6RAKqVTKvW", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "flat-money": { - "schema": "generic", - "base": "flat-money", - "protocol": "flat-money", - "project": "flat-money", - "deployments": { - "flat-money-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "flat-money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "flat-money-base", - "query-id": "flat-money-base", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "flat-money-base", - "query-id": "G7ap2BncLoDoWj2U7Ak8oB1TBFyQbEYPT51d6fDnPkVb", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "usual": { - "schema": "generic", - "base": "usual", - "protocol": "usual", - "project": "usual", - "deployments": { - "usual-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "usual.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "usual-ethereum", - "query-id": "usual-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "usual-ethereum", - "query-id": "6wn8aUC32emwyKpDd2pStwCwqcWvXYHPuhkcN3RyQsBZ", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "spiko": { - "schema": "generic", - "base": "spiko", - "protocol": "spiko", - "project": "spiko", - "deployments": { - "spiko-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spiko.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiko-ethereum", - "query-id": "spiko-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spiko-ethereum", - "query-id": "GMmo43Rn5SZRJUawpifZ2C3g8tet8kwv8qVsrAyQabxq", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "spiko-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spiko.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiko-polygon", - "query-id": "spiko-polygon", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "spiko-polygon", - "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "gudchain": { - "schema": "generic", - "base": "gudchain", - "protocol": "gudchain", - "project": "gudchain", - "deployments": { - "gudchain-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gudchain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gudchain-ethereum", - "query-id": "gudchain-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "gudchain-ethereum", - "query-id": "G7BnX3TE7hvyggLTUvynnmVYqnCWrQHAvFCADqKWxHBh", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "superseed": { - "schema": "generic", - "base": "superseed", - "protocol": "superseed", - "project": "superseed", - "deployments": { - "superseed-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "superseed.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "superseed-ethereum", - "query-id": "superseed-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "superseed-ethereum", - "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "bracket-escrow-staking": { - "schema": "generic", - "base": "bracket-escrow-staking", - "protocol": "bracket-escrow-staking", - "project": "bracket-escrow-staking", - "deployments": { - "bracket-escrow-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bracket-escrow-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bracket-escrow-staking-ethereum", - "query-id": "bracket-escrow-staking-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bracket-escrow-staking-ethereum", - "query-id": "E8Vc24QPWdT2pW14erM8M3vXTWMZon4DUJ8vqSbngcZt", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - }, - "bracket-escrow-staking-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bracket-escrow-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bracket-escrow-staking-arbitrum", - "query-id": "bracket-escrow-staking-arbitrum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bracket-escrow-staking-arbitrum", - "query-id": "9kVpuw3Cgf6NQckem8SXH7TQGXsJ8Hb8Zm6mQF7eaiyd", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "ora-protocol": { - "schema": "generic", - "base": "ora-protocol", - "protocol": "ora-protocol", - "project": "ora-protocol", - "deployments": { - "ora-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ora-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "ora-protocol-ethereum", - "query-id": "ora-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "ora-protocol-ethereum", - "query-id": "J1h9wtEcAfi32mTbNq4zQASGZJyidvEGXzi7HV8GxveF", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "iguanadex-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "iguanadex-v3", - "project": "iguanadex", - "deployments": { - "iguanadex-v3-etherlink-mainnet": { - "network": "etherlink-mainnet", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iguanadexV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "iguanadex-v3-etherlink-mainnet", - "query-id": "iguanadex-v3-etherlink-mainnet", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "iguanadex-v3-etherlink-mainnet", - "query-id": "DNp3H73UxzbLMbK9sTr3MC2oLwF27aa6ptM7aYzsgxmt", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "superlend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "superlend", - "project": "superlend", - "deployments": { - "superlend-etherlink-mainnet": { - "network": "etherlink-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "superlend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "superlend-etherlink-mainnet", - "query-id": "superlend-etherlink-mainnet", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "superlend-etherlink-mainnet", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "bob-fusion": { - "schema": "generic", - "base": "bob-fusion", - "protocol": "bob-fusion", - "project": "bob-fusion", - "deployments": { - "bob-fusion-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bob-fusion.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bob-fusion-ethereum", - "query-id": "bob-fusion-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "bob-fusion-ethereum", - "query-id": "FJCXWb8Z4n59Hkv9XsadRDyWcQE2GUh5GzJ1sPagU1r3", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "fx-protocol": { - "schema": "generic", - "base": "fx-protocol", - "protocol": "fx-protocol", - "project": "fx-protocol", - "deployments": { - "fx-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "fx.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "fx-protocol-ethereum", - "query-id": "fx-protocol-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "fx-protocol-ethereum", - "query-id": "todo", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - }, - "m0-power": { - "schema": "generic", - "base": "m0-power", - "protocol": "m0-power", - "project": "m0-power", - "deployments": { - "m0-power-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "m0.power.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "m0-power-ethereum", - "query-id": "m0-power-ethereum", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - }, - "decentralized-network": { - "slug": "m0-power-ethereum", - "query-id": "TODO", - "health": [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - "synced": false, - "indexed-percentage": "N/A", - "has-been-enhanced": true - } - ] - } - } - } - } - } -} diff --git a/dashboard/src/deployment.json b/dashboard/src/deployment.json deleted file mode 100644 index 7665f4b048..0000000000 --- a/dashboard/src/deployment.json +++ /dev/null @@ -1,14144 +0,0 @@ -{ - "abracadabra": { - "schema": "lending", - "base": "abracadabra", - "protocol": "abracadabra", - "project": "abracadabra", - "deployments": { - "abracadabra-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-arbitrum", - "query-id": "abracadabra-money-arbitrum" - }, - "decentralized-network": { - "slug": "abracadabra-money-arbitrum", - "query-id": "3m97d2dJ2pXwPFuiHrm8T37V9TCoAHBpMqRwdguyUZXF" - } - } - }, - "abracadabra-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-avalanche", - "query-id": "abracadabra-money-avalanche" - }, - "decentralized-network": { - "slug": "abracadabra-money-avalanche", - "query-id": "3Gkei7B24o9C2bCoAbQpApZqMStPta7oCAnNhmNv5dab" - } - } - }, - "abracadabra-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-bsc", - "query-id": "abracadabra-money-bsc" - }, - "decentralized-network": { - "slug": "abracadabra-money-bsc", - "query-id": "6bFCfHn5Uuv5fH7PxKL12dzWh3zz7fkQ46EnMa7nZUj2" - } - } - }, - "abracadabra-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-fantom", - "query-id": "abracadabra-money-fantom" - }, - "decentralized-network": { - "slug": "abracadabra-money-fantom", - "query-id": "2nxGrxxPShrm49dEWusJjB5dpmonN16JFzLwDrS1pCyq" - } - } - }, - "abracadabra-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "abracadabra.money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "abracadabra-money-ethereum", - "query-id": "abracadabra-money-ethereum" - }, - "decentralized-network": { - "slug": "abracadabra-money-ethereum", - "query-id": "GLAu42kvVs7ixfXcmkAsRiS7Xt1NCpgkKsnz3qiriuvV" - } - } - } - } - }, - "aave-arc": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-arc", - "project": "aave", - "deployments": { - "aave-arc-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.arc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-arc-ethereum", - "query-id": "aave-arc-ethereum" - }, - "decentralized-network": { - "slug": "aave-arc-ethereum", - "query-id": "5hyqnEzjZbwFBU1rk4JBknCeiF2Mj93qBzsyQfpAa3QA" - } - } - } - } - }, - "aave-amm": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-amm", - "project": "aave", - "deployments": { - "aave-amm-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.amm.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-amm-ethereum", - "query-id": "aave-amm-ethereum" - }, - "decentralized-network": { - "slug": "aave-amm-ethereum", - "query-id": "41ooPWnDYKwckqyG1mvg7ZEndy5zMemXinx6uQxscrBS" - } - } - } - } - }, - "aave-rwa": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-rwa", - "project": "aave", - "deployments": { - "aave-rwa-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.rwa.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-rwa-ethereum", - "query-id": "aave-rwa-ethereum" - }, - "decentralized-network": { - "slug": "aave-rwa-ethereum", - "query-id": "C8ynQrjVKcmqxb9fWrLvSCBFNf2ChFkxCg7Q8gknJrza" - } - } - } - } - }, - "aave-v2": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-v2", - "project": "aave", - "deployments": { - "aave-v2-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-avalanche", - "query-id": "aave-v2-avalanche" - }, - "decentralized-network": { - "slug": "aave-v2-avalanche", - "query-id": "9nh6Ums63wFcoZpmegyPcAFtY3CAzQc3S6cuERALYMqa" - } - } - }, - "aave-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-ethereum", - "query-id": "aave-v2-ethereum" - }, - "decentralized-network": { - "slug": "aave-v2-ethereum", - "query-id": "C2zniPn45RnLDGzVeGZCx2Sw3GXrbc9gL4ZfL8B8Em2j" - } - } - }, - "aave-v2-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v2-polygon", - "query-id": "aave-v2-polygon" - }, - "decentralized-network": { - "slug": "aave-v2-polygon", - "query-id": "GrZQJ7sWdTqiNUD8Vh2THaeBM4wGwiF8mFv9FBfyzwxm" - } - } - } - } - }, - "aave-v3": { - "schema": "lending", - "base": "aave-forks", - "protocol": "aave-v3", - "project": "aave", - "deployments": { - "aave-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.3", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-arbitrum", - "query-id": "aave-v3-arbitrum" - }, - "decentralized-network": { - "slug": "aave-v3-arbitrum", - "query-id": "4xyasjQeREe7PxnF6wVdobZvCw5mhoHZq3T7guRpuNPf" - } - } - }, - "aave-v3-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-avalanche", - "query-id": "aave-v3-avalanche" - }, - "decentralized-network": { - "slug": "aave-v3-avalanche", - "query-id": "72Cez54APnySAn6h8MswzYkwaL9KjvuuKnKArnPJ8yxb" - } - } - }, - "aave-v3-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-fantom", - "query-id": "aave-v3-fantom" - }, - "decentralized-network": { - "slug": "aave-v3-fantom", - "query-id": "ZcLcVKJNQboeqACXhGuL3WFLBZzf5uUWheNsaFvLph6" - } - } - }, - "aave-v3-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-harmony", - "query-id": "aave-v3-harmony" - }, - "decentralized-network": { - "slug": "aave-v3-harmony", - "query-id": "G1BNHqmteZiUwSEacfXG2nzMm13KLNo5xoxv62ErAyQv" - } - } - }, - "aave-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-polygon", - "query-id": "aave-v3-polygon" - }, - "decentralized-network": { - "slug": "aave-v3-polygon", - "query-id": "6yuf1C49aWEscgk5n9D1DekeG1BCk5Z9imJYJT3sVmAT" - } - } - }, - "aave-v3-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-optimism", - "query-id": "aave-v3-optimism" - }, - "decentralized-network": { - "slug": "aave-v3-optimism", - "query-id": "3RWFxWNstn4nP3dXiDfKi9GgBoHx7xzc7APkXs1MLEgi" - } - } - }, - "aave-v3-metis": { - "network": "metis", - "status": "dev", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-metis", - "query-id": "aave-v3-metis" - } - } - }, - "aave-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-ethereum", - "query-id": "aave-v3-ethereum" - }, - "decentralized-network": { - "slug": "aave-v3-ethereum", - "query-id": "JCNWRypm7FYwV8fx5HhzZPSFaMxgkPuw4TnR3Gpi81zk" - } - } - }, - "aave-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-base", - "query-id": "aave-v3-base" - }, - "decentralized-network": { - "slug": "aave-v3-base", - "query-id": "D7mapexM5ZsQckLJai2FawTKXJ7CqYGKM8PErnS3cJi9" - } - } - }, - "aave-v3-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-gnosis", - "query-id": "aave-v3-gnosis" - }, - "decentralized-network": { - "slug": "aave-v3-gnosis", - "query-id": "GiNMLDxT1Bdn2dQZxjQLmW24uwpc3geKUBW8RP6oEdg" - } - } - }, - "aave-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-bsc", - "query-id": "aave-v3-bsc" - }, - "decentralized-network": { - "slug": "aave-v3-bsc", - "query-id": "43jbGkvSw55sMvYyF6MZieksmJbajMu3hNGF8PN9ucuP" - } - } - }, - "aave-v3-scroll": { - "network": "scroll", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-v3-scroll", - "query-id": "aave-v3-scroll" - }, - "decentralized-network": { - "slug": "aave-v3-scroll", - "query-id": "DkvXMxq1skgSe1ehLHWpiUthHU1znnMDK2SUmj9avhEX" - } - } - } - } - }, - "seamless-protocol": { - "schema": "lending", - "base": "aave-forks", - "protocol": "seamless-protocol", - "project": "seamless-protocol", - "deployments": { - "seamless-protocol-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "seamless-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "seamless-protocol-base", - "query-id": "seamless-protocol-base" - }, - "decentralized-network": { - "slug": "seamless-protocol-base", - "query-id": "2u4mWUV4xS19ef1MbnxZHWLLMwdPxtVifH46JbonXwXP" - } - } - } - } - }, - "kinza-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "kinza-finance", - "project": "kinza-finance", - "deployments": { - "kinza-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kinza.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "kinza-finance-bsc", - "query-id": "kinza-finance-bsc" - }, - "decentralized-network": { - "slug": "kinza-finance-bsc", - "query-id": "435cubRAqNsFYKzyQHRRiHvR7oJjh828r5Aqe4cZC586" - } - } - } - } - }, - "seismic": { - "schema": "lending", - "base": "aave-forks", - "protocol": "seismic", - "project": "seismic", - "deployments": { - "seismic-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "seismic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "seismic-blast", - "query-id": "seismic-blast" - }, - "decentralized-network": { - "slug": "seismic-blast", - "query-id": "d7gMk1zkEyCQuNVeirBYA6keCZv8hTLheCZ4DBCjRfz" - } - } - } - } - }, - "pac-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "pac-finance", - "project": "pac-finance", - "deployments": { - "pac-finance-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pac.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "pac-finance-blast", - "query-id": "pac-finance-blast" - }, - "decentralized-network": { - "slug": "pac-finance-blast", - "query-id": "ERsfyKMQTpTEN6LtyWvFwhDENLf6aAAggbtrNEnFKLpx" - } - } - } - } - }, - "zerolend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "zerolend", - "project": "zerolend", - "deployments": { - "zerolend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-ethereum", - "query-id": "zerolend-ethereum" - }, - "decentralized-network": { - "slug": "zerolend-ethereum", - "query-id": "4Zf4doH54RDit9KVsfCp3MkjrP3szhJZwvw2z5PHczx9" - } - } - }, - "zerolend-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-blast", - "query-id": "zerolend-blast" - }, - "decentralized-network": { - "slug": "zerolend-blast", - "query-id": "6JP9542ArawumBSYczerbWGu6k7uu3hqk6qJnSkrgTM5" - } - } - }, - "zerolend-zksync-era": { - "network": "zksync-era", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-zksync-era", - "query-id": "zerolend-zksync-era" - }, - "decentralized-network": { - "slug": "zerolend-zksync-era", - "query-id": "3CHaJvCkTMqXa4PRKNshVecE9JqgNFCdsXNyGLZXFeM2" - } - } - }, - "zerolend-linea": { - "network": "linea", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-linea", - "query-id": "zerolend-linea" - }, - "decentralized-network": { - "slug": "zerolend-linea", - "query-id": "DLzwo1WFaKy7R7MgQWrnBXr19EbGwPRubu9YmsSmRMfC" - } - } - }, - "zerolend-xlayer": { - "network": "xlayer-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zerolend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "zerolend-xlayer", - "query-id": "zerolend-xlayer" - }, - "decentralized-network": { - "slug": "zerolend-xlayer", - "query-id": "NRh6ScvPKoieeSH7tRiKyXJ97DR9aYraas8eREPQ8e3" - } - } - } - } - }, - "alpaca-finance-lending": { - "schema": "lending", - "base": "alpaca-finance-lending", - "protocol": "alpaca-finance-lending", - "project": "alpaca", - "deployments": { - "alpaca-finance-lending-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "alpaca.finance.lending.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "alpaca-finance-lending-bsc", - "query-id": "alpaca-finance-lending-bsc" - }, - "decentralized-network": { - "slug": "alpaca-finance-lending-bsc", - "query-id": "ED3ayhcLA7h7DCGwbysgcxtfMEcoeYCdMEsdZJeoaUFS" - } - } - }, - "alpaca-finance-lending-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "alpaca.finance.lending.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "alpaca-finance-lending-fantom", - "query-id": "alpaca-finance-lending-fantom" - }, - "decentralized-network": { - "slug": "alpaca-finance-lending-fantom", - "query-id": "6EfFr7xDpD7LLi1X8Cj9b6ytjFjX3GZYrMrCKomEuCmx" - } - } - } - } - }, - "arrakis-finance": { - "schema": "yield-aggregator", - "base": "arrakis-finance", - "protocol": "arrakis-finance", - "project": "arrakis", - "deployments": { - "arrakis-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-ethereum", - "query-id": "arrakis-finance-ethereum" - }, - "decentralized-network": { - "slug": "arrakis-finance-ethereum", - "query-id": "GnroBYmeLLtKuHNyTNS38hzKki5n4CWaHeaMRqZpU4cr" - } - } - }, - "arrakis-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-optimism", - "query-id": "arrakis-finance-optimism" - }, - "decentralized-network": { - "slug": "arrakis-finance-optimism", - "query-id": "6yqMWioX8XNx2aMDYJGnvrVQWNrZfgBzY3ee1RmkXh5Z" - } - } - }, - "arrakis-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arrakis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arrakis-finance-polygon", - "query-id": "arrakis-finance-polygon" - }, - "decentralized-network": { - "slug": "arrakis-finance-polygon", - "query-id": "9YGjubD69wpCHyMMadVJv9eABKKUMWyBGYkZHVFEeWM8" - } - } - } - } - }, - "convex-finance": { - "schema": "yield-aggregator", - "base": "convex-finance", - "protocol": "convex-finance", - "project": "convex", - "deployments": { - "convex-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "convex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "convex-finance-ethereum", - "query-id": "convex-finance-ethereum" - }, - "decentralized-network": { - "slug": "convex-finance-ethereum", - "query-id": "7rFZ2x6aLQ7EZsNx8F5yenk4xcqwqR3Dynf9rdixCSME" - } - } - } - } - }, - "balancer-v2": { - "schema": "dex-amm", - "base": "balancer-forks", - "protocol": "balancer-v2", - "project": "balancer", - "deployments": { - "balancer-v2-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-arbitrum", - "query-id": "balancer-v2-arbitrum" - } - } - }, - "balancer-v2-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-polygon", - "query-id": "balancer-v2-polygon" - } - } - }, - "balancer-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "balancer.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "balancer-v2-ethereum", - "query-id": "balancer-v2-ethereum" - }, - "decentralized-network": { - "slug": "balancer-v2-ethereum", - "query-id": "794H6CNzdGF5YfBK9nPsUgGn7EBbdJSCTjgcKPEPyFnn" - } - } - } - } - }, - "beethoven-x": { - "schema": "dex-amm", - "base": "balancer-forks", - "protocol": "beethoven-x", - "project": "balancer", - "deployments": { - "beethoven-x-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "beethoven.x.fantom.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethoven-x-fantom", - "query-id": "beethoven-x-fantom" - } - } - }, - "beethoven-x-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "beethoven.x.optimism.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethoven-x-optimism", - "query-id": "beethoven-x-optimism" - } - } - } - } - }, - "beefy-finance": { - "schema": "yield-aggregator", - "base": "beefy-finance", - "protocol": "beefy-finance", - "project": "beefy", - "deployments": { - "beefy-finance-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.arbitrum.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-arbitrum", - "query-id": "beefy-finance-arbitrum" - } - } - }, - "beefy-finance-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.avalanche.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-avalanche", - "query-id": "beefy-finance-avalanche" - } - } - }, - "beefy-finance-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.aurora.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-aurora", - "query-id": "beefy-finance-aurora" - } - } - }, - "beefy-finance-celo": { - "network": "celo", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.celo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-celo", - "query-id": "beefy-finance-celo" - } - } - }, - "beefy-finance-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.fantom.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-fantom", - "query-id": "beefy-finance-fantom" - } - } - }, - "beefy-finance-fuse": { - "network": "fuse", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-fuse", - "query-id": "beefy-finance-fuse" - } - } - }, - "beefy-finance-harmony": { - "network": "harmony", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.harmony.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-harmony", - "query-id": "beefy-finance-harmony" - } - } - }, - "beefy-finance-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.moonbeam.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-moonbeam", - "query-id": "beefy-finance-moonbeam" - } - } - }, - "beefy-finance-moonriver": { - "network": "moonriver", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.moonriver.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-moonriver", - "query-id": "beefy-finance-moonriver" - } - } - }, - "beefy-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.polygon.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-polygon", - "query-id": "beefy-finance-polygon" - } - } - }, - "beefy-finance-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.bsc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-bsc", - "query-id": "beefy-finance-bsc" - } - } - }, - "beefy-finance-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.optimism.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "beefy-finance-optimism", - "query-id": "beefy-finance-optimism" - } - } - }, - "beefy-finance-cronos": { - "network": "cronos", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "beefy.cronos.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "cronos-portal": { - "slug": "beefy-finance-cronos", - "query-id": "beefy-finance-cronos" - } - } - } - } - }, - "belt-finance": { - "schema": "yield-aggregator", - "base": "belt-finance", - "protocol": "belt-finance", - "project": "belt", - "deployments": { - "belt-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "belt.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "belt-finance-bsc", - "query-id": "belt-finance-bsc" - }, - "decentralized-network": { - "slug": "belt-finance-bsc", - "query-id": "9jLaSWECnXdmwDG6zGMR39PqwhscHoiLGoX1mLtHLqWd" - } - } - } - } - }, - "bancor-v3": { - "schema": "dex-amm", - "base": "bancor-v3", - "protocol": "bancor-v3", - "project": "bancor", - "deployments": { - "bancor-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.4", - "methodology": "1.0.0" - }, - "files": { - "template": "bancor.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bancor-v3-ethereum", - "query-id": "bancor-v3-ethereum" - }, - "decentralized-network": { - "slug": "bancor-v3-ethereum", - "query-id": "4Q4eEMDBjYM8JGsvnWCafFB5wCu6XntmsgxsxwYSnMib" - } - } - } - } - }, - "aurigami": { - "schema": "lending", - "base": "compound-forks", - "protocol": "aurigami", - "project": "aurigami", - "deployments": { - "aurigami-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aurigami.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aurigami-aurora", - "query-id": "aurigami-aurora" - } - } - } - } - }, - "banker-joe": { - "schema": "lending", - "base": "compound-forks", - "protocol": "banker-joe", - "project": "trader-joe", - "deployments": { - "banker-joe-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "banker-joe.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "banker-joe-avalanche", - "query-id": "banker-joe-avalanche" - }, - "decentralized-network": { - "slug": "banker-joe-avalanche", - "query-id": "9NjYuG2BFU1BPacNdKymd9eNdfVCaJM6LhsgD8zSQgDK" - } - } - } - } - }, - "tectonic": { - "schema": "lending", - "base": "compound-forks", - "protocol": "tectonic", - "project": "tectonic", - "deployments": { - "tectonic-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tectonic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "cronos-portal": { - "slug": "tectonic", - "query-id": "tectonic" - } - } - } - } - }, - "bastion-protocol": { - "schema": "lending", - "base": "compound-forks", - "protocol": "bastion-protocol", - "project": "bastion-protocol", - "deployments": { - "bastion-protocol-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.1" - }, - "files": { - "template": "bastion-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bastion-protocol-aurora", - "query-id": "bastion-protocol-aurora" - }, - "decentralized-network": { - "slug": "bastion-protocol-aurora", - "query-id": "BD4rW7Ga5YQ3x68tALbi8vsXNodd6LrvFeaVocdJt3bD" - } - } - } - } - }, - "benqi": { - "schema": "lending", - "base": "compound-forks", - "protocol": "benqi", - "project": "benqi", - "deployments": { - "benqi-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "benqi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "benqi-avalanche", - "query-id": "benqi-avalanche" - }, - "decentralized-network": { - "slug": "benqi-avalanche", - "query-id": "8ZjJGsaKea7WwLJPJNdHXPGsvXDe3iq2231aRjgBPisi" - } - } - } - } - }, - "arbitrum-one-bridge": { - "schema": "bridge", - "base": "arbitrum-one-bridge", - "protocol": "arbitrum-one-bridge", - "project": "arbitrum-one-bridge", - "deployments": { - "arbitrum-one-bridge-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arbitrum-one-bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arbitrum-one-bridge-ethereum", - "query-id": "arbitrum-one-bridge-ethereum" - }, - "decentralized-network": { - "slug": "arbitrum-one-bridge-ethereum", - "query-id": "6XazDBEjAVADSXbiBoXBBVwxTYf4PXRtucxn5vRQFLch" - } - } - }, - "arbitrum-one-bridge-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "arbitrum-one-bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "arbitrum-one-bridge-arbitrum", - "query-id": "arbitrum-one-bridge-arbitrum" - }, - "decentralized-network": { - "slug": "arbitrum-one-bridge-arbitrum", - "query-id": "2rQHtwHiK2TCB4bQtgLybf8gGHCRVjANPzKTYss7B1n4" - } - } - } - } - }, - "biswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "biswap", - "project": "biswap", - "deployments": { - "biswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.6", - "methodology": "1.0.0" - }, - "files": { - "template": "biswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "biswap-bsc", - "query-id": "biswap-bsc" - }, - "decentralized-network": { - "slug": "biswap-bsc", - "query-id": "EnAR2ancKqJqpCU6cJ8aq9xHquTSWsK2wQWVfdDSwacN" - } - } - } - } - }, - "burrow": { - "schema": "lending", - "base": "burrow", - "protocol": "burrow", - "project": "burrow", - "deployments": { - "burrow-near": { - "network": "near-mainnet", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "burrow.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "burrow-near", - "query-id": "burrow-near" - }, - "decentralized-network": { - "slug": "burrow-near", - "query-id": "5W5fhZAq6QABBijKo7wqYps7TLzqAqS2mU1C1rhktvtg" - } - } - } - } - }, - "compound-v2": { - "schema": "lending", - "base": "compound-forks", - "protocol": "compound-v2", - "project": "compound", - "deployments": { - "compound-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.9.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v2-ethereum", - "query-id": "compound-v2-ethereum" - }, - "decentralized-network": { - "slug": "compound-v2-ethereum", - "query-id": "4TbqVA8p2DoBd5qDbPMwmDZv3CsJjWtxo8nVSqF2tA9a" - } - } - } - } - }, - "cream-finance": { - "schema": "lending", - "base": "compound-forks", - "protocol": "cream-finance", - "project": "cream", - "deployments": { - "cream-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-arbitrum", - "query-id": "cream-finance-arbitrum" - }, - "decentralized-network": { - "slug": "cream-finance-arbitrum", - "query-id": "GzHkVNf7BBqUjV8Sy6U6xUaWdGheFMdin1cB6sNvfdzs" - } - } - }, - "cream-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-bsc", - "query-id": "cream-finance-bsc" - }, - "decentralized-network": { - "slug": "cream-finance-bsc", - "query-id": "Dd2ak11qC4mS2spUXzJm5v9EtVNJqmBC9rLzbckTwfN1" - } - } - }, - "cream-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-ethereum", - "query-id": "cream-finance-ethereum" - }, - "decentralized-network": { - "slug": "cream-finance-ethereum", - "query-id": "43NeT7UTACLUkohKBaG7auvkhsj4Kwux9kNTJr6sFdNe" - } - } - }, - "cream-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cream-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cream-finance-polygon", - "query-id": "cream-finance-polygon" - }, - "decentralized-network": { - "slug": "cream-finance-polygon", - "query-id": "CBeERkhQNwPwU3jSWdKHeAtPQh4TFucUyUMcqAJk19ij" - } - } - } - } - }, - "dforce": { - "schema": "lending", - "base": "compound-forks", - "protocol": "dforce", - "project": "dforce", - "deployments": { - "dforce-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-arbitrum", - "query-id": "dforce-arbitrum" - }, - "decentralized-network": { - "slug": "dforce-arbitrum", - "query-id": "Dpk4Gen22wxQ3Laojf7DR2me8wGzjaHwjsKAsLf2rCFV" - } - } - }, - "dforce-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-avalanche", - "query-id": "dforce-avalanche" - } - } - }, - "dforce-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-bsc", - "query-id": "dforce-bsc" - }, - "decentralized-network": { - "slug": "dforce-bsc", - "query-id": "DKu1HqTTi26uLZKAmvDbqyAvcnFAjXEuRJmF35RLpyFg" - } - } - }, - "dforce-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-ethereum", - "query-id": "dforce-ethereum" - }, - "decentralized-network": { - "slug": "dforce-ethereum", - "query-id": "6PaB6tKFqrL6YoAELEhFGU6Gc39cEynLbo6ETZMF3sCy" - } - } - }, - "dforce-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-optimism", - "query-id": "dforce-optimism" - }, - "decentralized-network": { - "slug": "dforce-optimism", - "query-id": "6AmkakXwadWiZ2jN7oJcFreWmKG1nZrT5P8om52upYPd" - } - } - }, - "dforce-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dforce-polygon", - "query-id": "dforce-polygon" - }, - "decentralized-network": { - "slug": "dforce-polygon", - "query-id": "9CFGPWpntYisBp7NpHMrgYzFrBmtVxSw58haGyZ3ewoZ" - } - } - } - } - }, - "iron-bank": { - "schema": "lending", - "base": "compound-forks", - "protocol": "iron-bank", - "project": "iron-bank", - "deployments": { - "iron-bank-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-avalanche", - "query-id": "iron-bank-avalanche" - }, - "decentralized-network": { - "slug": "iron-bank-avalanche", - "query-id": "9YiJM9oHy25estSJjB1Z71Hdz5C814R3vDoS2ezpN27C" - } - } - }, - "iron-bank-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-ethereum", - "query-id": "iron-bank-ethereum" - }, - "decentralized-network": { - "slug": "iron-bank-ethereum", - "query-id": "5YoxED3bbWV9byvn3x3S3ebZ3idrQmQmsJhL5LMyY26v" - } - } - }, - "iron-bank-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-fantom", - "query-id": "iron-bank-fantom" - }, - "decentralized-network": { - "slug": "iron-bank-fantom", - "query-id": "4dWx6UZNcLEzgtipy45VkgtptYRqoHdZeCGNKxHAxKWo" - } - } - }, - "iron-bank-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iron-bank.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "iron-bank-optimism", - "query-id": "iron-bank-optimism" - }, - "decentralized-network": { - "slug": "iron-bank-optimism", - "query-id": "4WKePP5QfwrW6Hfd8YKWHuivivmdxPubuP45BryeGo4g" - } - } - } - } - }, - "moonwell": { - "schema": "lending", - "base": "compound-forks", - "protocol": "moonwell", - "project": "moonwell", - "deployments": { - "moonwell-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-moonbeam", - "query-id": "moonwell-moonbeam" - }, - "decentralized-network": { - "slug": "moonwell-moonbeam", - "query-id": "DQhrdUHwspQf3hSjDtyfS6uqq9YiKoLF3Ut3U9os2HK" - } - } - }, - "moonwell-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-moonriver", - "query-id": "moonwell-moonriver" - }, - "decentralized-network": { - "slug": "moonwell-moonriver", - "query-id": "8ayELti1UNCNCWuvwSwapjh4mvvCejeXsk4PmsWBmQ82" - } - } - }, - "moonwell-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "moonwell.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "moonwell-base", - "query-id": "moonwell-base" - }, - "decentralized-network": { - "slug": "moonwell-base", - "query-id": "33ex1ExmYQtwGVwri1AP3oMFPGSce6YbocBP7fWbsBrg" - } - } - } - } - }, - "notional-finance": { - "schema": "lending", - "base": "notional-finance", - "protocol": "notional-finance", - "project": "notional", - "deployments": { - "notional-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.1.0" - }, - "files": { - "template": "notional-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "notional-finance-ethereum", - "query-id": "notional-finance-ethereum" - }, - "decentralized-network": { - "slug": "notional-finance-ethereum", - "query-id": "2t4T7bts8ZQCpGcVq9VSzDyPVCQc5Y7TFwZKfmXKeSVx" - } - } - } - } - }, - "rari-fuse": { - "schema": "lending", - "base": "compound-forks", - "protocol": "rari-fuse", - "project": "rari-capital", - "deployments": { - "rari-fuse-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-fuse-arbitrum", - "query-id": "rari-fuse-arbitrum" - }, - "decentralized-network": { - "slug": "rari-fuse-arbitrum", - "query-id": "HnV3fhwsWfmQGdD2AeGzqvRVTDBqnMH74jCsDVq1DXYP" - } - } - }, - "rari-fuse-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-fuse.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-fuse-ethereum", - "query-id": "rari-fuse-ethereum" - }, - "decentralized-network": { - "slug": "rari-fuse-ethereum", - "query-id": "kecp6SPMvbB4GTqg9r5PXvztYriexj5F3ZCaATpjmb2" - } - } - } - } - }, - "scream": { - "schema": "lending", - "base": "compound-forks", - "protocol": "scream", - "project": "scream", - "deployments": { - "scream-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "scream.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "scream-fantom", - "query-id": "scream-fantom" - }, - "decentralized-network": { - "slug": "scream-fantom", - "query-id": "Cj3pDoqHgLBntkaXAKMxtJTZr3StxYvVEedTXyJGJoK4" - } - } - } - } - }, - "sonne-finance": { - "schema": "lending", - "base": "compound-forks", - "protocol": "sonne-finance", - "project": "sonne", - "deployments": { - "sonne-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "sonne.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "sonne-finance-optimism", - "query-id": "sonne-finance-optimism" - }, - "decentralized-network": { - "slug": "sonne-finance-optimism", - "query-id": "DQqb7FiQ1joLhESkAwvAYiuXhwfz4zf6qHmbt7stnec8" - } - } - } - } - }, - "venus": { - "schema": "lending", - "base": "compound-forks", - "protocol": "venus", - "project": "venus", - "deployments": { - "venus-protocol-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "venus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "venus-protocol-bsc", - "query-id": "venus-protocol-bsc" - }, - "decentralized-network": { - "slug": "venus-protocol-bsc", - "query-id": "CwswJ7sfENafqgAYU1upn3hQgoEV2CXXRZRJ7XtgJrKG" - } - } - } - } - }, - "compound-v3": { - "schema": "lending", - "base": "compound-v3", - "protocol": "compound-v3", - "project": "compound", - "deployments": { - "compound-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-ethereum", - "query-id": "compound-v3-ethereum" - }, - "decentralized-network": { - "slug": "compound-v3-ethereum", - "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9" - } - } - }, - "compound-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-polygon", - "query-id": "compound-v3-polygon" - }, - "decentralized-network": { - "slug": "compound-v3-polygon", - "query-id": "5wfoWBpfYv59b99wDxJmyFiKBu9brXESeqJAzw8WP5Cz" - } - } - }, - "compound-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-v3-arbitrum", - "query-id": "compound-v3-arbitrum" - }, - "decentralized-network": { - "slug": "compound-v3-arbitrum", - "query-id": "5MjRndNWGhqvNX7chUYLQDnvEgc8DaH8eisEkcJt71SR" - } - } - }, - "compound-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "query-id": "compound-v3-base", - "slug": "compound-v3-base" - }, - "decentralized-network": { - "slug": "compound-v3-base", - "query-id": "AwoxEZbiWLvv6e3QdvdMZw4WDURdGbvPfHmZRc8Dpfz9" - } - } - } - } - }, - "curve-finance": { - "schema": "dex-amm", - "base": "curve-finance", - "protocol": "curve-finance", - "project": "curve", - "deployments": { - "curve-finance-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-arbitrum", - "query-id": "curve-finance-arbitrum" - } - } - }, - "curve-finance-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-aurora", - "query-id": "curve-finance-aurora" - }, - "decentralized-network": { - "slug": "curve-finance-aurora", - "query-id": "9zXFpPQHyTmXXygtNPwjBS6d4SMGzv7qMiha4bJ3fbyB" - } - } - }, - "curve-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-avalanche", - "query-id": "curve-finance-avalanche" - }, - "decentralized-network": { - "slug": "curve-finance-avalanche", - "query-id": "2Vt8WtdXNZUEeaVtzyEd1dpioJf44nvomzkd4HhubfKS" - } - } - }, - "curve-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-ethereum", - "query-id": "curve-finance-ethereum" - }, - "decentralized-network": { - "slug": "curve-finance-ethereum", - "query-id": "3fy93eAT56UJsRCEht8iFhfi6wjHWXtZ9dnnbQmvFopF" - } - } - }, - "curve-finance-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-fantom", - "query-id": "curve-finance-fantom" - } - } - }, - "curve-finance-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-gnosis", - "query-id": "curve-finance-gnosis" - }, - "decentralized-network": { - "slug": "curve-finance-gnosis", - "query-id": "J8k2z8MhdhABfVZU5HtyRvzCT85bLLF886V4iDpt53Jr" - } - } - }, - "curve-finance-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-harmony", - "query-id": "curve-finance-harmony" - }, - "decentralized-network": { - "slug": "curve-finance-harmony", - "query-id": "6gnHHn7562tDjCrrnSiMiR1H1NndrannPQ7LcYxMgF9t" - } - } - }, - "curve-finance-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-moonbeam", - "query-id": "curve-finance-moonbeam" - } - } - }, - "curve-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-optimism", - "query-id": "curve-finance-optimism" - }, - "decentralized-network": { - "slug": "curve-finance-optimism", - "query-id": "CXDZPduZE6nWuWEkSzWkRoJSSJ6CneSqiDxdnhhURShX" - } - } - }, - "curve-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "curve.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "curve-finance-polygon", - "query-id": "curve-finance-polygon" - } - } - } - } - }, - "ellipsis-finance": { - "schema": "dex-amm", - "base": "ellipsis-finance", - "protocol": "ellipsis-finance", - "project": "ellipsis", - "deployments": { - "ellipsis-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ellipsis.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ellipsis-finance-bsc", - "query-id": "ellipsis-finance-bsc" - }, - "decentralized-network": { - "slug": "ellipsis-finance-bsc", - "query-id": "3oK7vysHSCqXkQ5L3G6S4ifBG3Xr5mjkEEzZKtGEg5x1" - } - } - } - } - }, - "erc721-holders": { - "schema": "erc721", - "base": "erc721-holders", - "protocol": "erc721-holders", - "project": "erc721", - "deployments": { - "erc721-holders-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc721.holders.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "erc721-holders", - "query-id": "erc721-holders" - } - } - } - } - }, - "erc721-metadata": { - "schema": "erc721", - "base": "erc721-metadata", - "protocol": "erc721-metadata", - "project": "erc721", - "deployments": { - "erc721-metadata-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc721.metadata.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "erc721-metadata", - "query-id": "erc721-metadata" - } - } - } - } - }, - "euler-finance": { - "schema": "lending", - "base": "euler-finance", - "protocol": "euler-finance", - "project": "euler", - "deployments": { - "euler-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.0", - "methodology": "1.2.3" - }, - "files": { - "template": "euler.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "euler-finance-ethereum", - "query-id": "euler-finance-ethereum" - }, - "decentralized-network": { - "slug": "euler-finance-ethereum", - "query-id": "95nyAWFFaiz6gykko3HtBCyhRuP5vZzuKYsZiLxHxLhr" - } - } - } - } - }, - "goldfinch": { - "schema": "lending", - "base": "goldfinch", - "protocol": "goldfinch", - "project": "goldfinch", - "deployments": { - "goldfinch-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.4", - "methodology": "1.0.1" - }, - "files": { - "template": "goldfinch.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "goldfinch-ethereum", - "query-id": "goldfinch-ethereum" - }, - "decentralized-network": { - "slug": "goldfinch-ethereum", - "query-id": "GRwpFCPYyQPdz84sCnKemzrNvgFPuKkFLcRLR6jsRxHr" - } - } - } - } - }, - "inverse-finance": { - "schema": "lending", - "base": "inverse-finance", - "protocol": "inverse-finance", - "project": "inverse", - "deployments": { - "inverse-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.6", - "methodology": "1.0.0" - }, - "files": { - "template": "inverse.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "inverse-finance-ethereum", - "query-id": "inverse-finance-ethereum" - }, - "decentralized-network": { - "slug": "inverse-finance-ethereum", - "query-id": "EXuutY6qkZbXjYeJZdiDBf2imJswTNdfm8YZCqhAthfW" - } - } - } - } - }, - "lido": { - "schema": "generic", - "base": "lido", - "protocol": "lido", - "project": "lido", - "deployments": { - "lido-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lido.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lido-ethereum", - "query-id": "lido-ethereum" - }, - "decentralized-network": { - "slug": "lido-ethereum", - "query-id": "F7qb71hWab6SuRL5sf6LQLTpNahmqMsBnnweYHzLGUyG" - } - } - } - } - }, - "livepeer": { - "schema": "generic", - "base": "livepeer", - "protocol": "livepeer", - "project": "livepeer", - "deployments": { - "livepeer-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "livepeer.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "livepeer-arbitrum", - "query-id": "livepeer-arbitrum" - }, - "decentralized-network": { - "slug": "livepeer-arbitrum", - "query-id": "6CdJfr35PDj8AMQikiKGjAUPG2vCu5VLYRawDk8cxwrs" - } - } - } - } - }, - "liquity": { - "schema": "lending", - "base": "liquity", - "protocol": "liquity", - "project": "liquity", - "deployments": { - "liquity-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.4.0", - "methodology": "1.0.1" - }, - "files": { - "template": "liquity.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "liquity-ethereum", - "query-id": "liquity-ethereum" - }, - "decentralized-network": { - "slug": "liquity-ethereum", - "query-id": "2D2dFCLjUt3MfFgTKW8cBxiRQ3Adss7KUtYh2rTcFVY" - } - } - } - } - }, - "mummy-finance": { - "schema": "derivatives-perpfutures", - "base": "gmx-forks", - "protocol": "mummy-finance", - "project": "mummy-finance", - "deployments": { - "mummy-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-fantom", - "query-id": "mummy-finance-fantom" - }, - "decentralized-network": { - "slug": "mummy-finance-fantom", - "query-id": "FP8YzYVARZ6jEYrciiTEtzrNfug7STzYyUr3fRUjQkEA" - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mummy-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-optimism", - "query-id": "mummy-finance-optimism" - }, - "decentralized-network": { - "slug": "mummy-finance-optimism", - "query-id": "GvgdFS6dFXCSXwq9PDTdcs5uZzwZYuTrqFjiTRC3jy54" - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mummy-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mummy-finance-arbitrum", - "query-id": "mummy-finance-arbitrum" - }, - "decentralized-network": { - "slug": "mummy-finance-arbitrum", - "query-id": "4Po9haSDCDbQ2XtrSXqT8BNB9H6T7EUAmbAorAzHQi9S" - } - }, - "files": { - "template": "mummy.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "vesta-finance": { - "schema": "lending", - "base": "vesta-finance", - "protocol": "vesta-finance", - "project": "vesta", - "deployments": { - "vesta-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.1.1", - "methodology": "1.1.0" - }, - "files": { - "template": "vesta.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vesta-finance-arbitrum", - "query-id": "vesta-finance-arbitrum" - }, - "decentralized-network": { - "slug": "vesta-finance-arbitrum", - "query-id": "zGuPrsVqtY5ehJDCmweb9ZnBrae3tSQWRux8Mz1M4Gn" - } - } - } - } - }, - "truefi": { - "schema": "lending", - "base": "truefi", - "protocol": "truefi", - "project": "truefi", - "deployments": { - "truefi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.5", - "methodology": "1.0.0" - }, - "files": { - "template": "truefi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "truefi-ethereum", - "query-id": "truefi-ethereum" - }, - "decentralized-network": { - "slug": "truefi-ethereum", - "query-id": "39F8fYCvLYmutjqpzEwx3dcEJTtFFVupvBzJqkEzftA7" - } - } - } - } - }, - "gamma-strategies": { - "schema": "yield-aggregator", - "base": "gamma-strategies", - "protocol": "gamma-strategies", - "project": "gamma-strategies", - "deployments": { - "gamma-strategies-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-arbitrum", - "query-id": "gamma-arbitrum" - } - } - }, - "gamma-strategies-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-ethereum", - "query-id": "gamma-ethereum" - }, - "decentralized-network": { - "slug": "gamma-ethereum", - "query-id": "ANz3TpZdY2syZGQvGA85ANNG7KiSWdPmv55kP4H4sRPJ" - } - } - }, - "gamma-strategies-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-optimism", - "query-id": "gamma-optimism" - } - } - }, - "gamma-strategies-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.3", - "methodology": "1.0.0" - }, - "files": { - "template": "gamma.strategies.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gamma-polygon", - "query-id": "gamma-polygon" - }, - "decentralized-network": { - "slug": "gamma-polygon", - "query-id": "AyxB5Suv1REgRZPUwbgbbqtpwftvTC46dbiHPuBQuF8y" - } - } - } - } - }, - "makerdao": { - "schema": "lending", - "base": "makerdao", - "protocol": "makerdao", - "project": "makerdao", - "deployments": { - "makerdao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.0.1", - "subgraph": "2.4.1", - "methodology": "1.1.0" - }, - "files": { - "template": "makerdao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "makerdao-ethereum", - "query-id": "makerdao-ethereum" - }, - "decentralized-network": { - "slug": "makerdao-ethereum", - "query-id": "8sE6rTNkPhzZXZC6c8UQy2ghFTu5PPdGauwUBm4t7HZ1" - } - } - } - } - }, - "maple-finance-v1": { - "schema": "lending", - "base": "maple-finance-v1", - "protocol": "maple-finance-v1", - "project": "maple", - "deployments": { - "maple-finance-v1-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.1.0" - }, - "files": { - "template": "maple.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maple-finance-ethereum", - "query-id": "maple-finance-ethereum" - }, - "decentralized-network": { - "slug": "maple-finance-ethereum", - "query-id": "J9dtvE11PWNZH74frWyx9QZonyC1Db2UWDMUegmT3zkG" - } - } - } - } - }, - "maple-finance-v2": { - "schema": "lending", - "base": "maple-finance-v2", - "protocol": "maple-finance-v2", - "project": "maple", - "deployments": { - "maple-finance-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "maple.finance.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maple-finance-v2-ethereum", - "query-id": "maple-finance-v2-ethereum" - }, - "decentralized-network": { - "slug": "maple-finance-v2-ethereum", - "query-id": "94swSaaFChsQoZzb9Vc7Lo6FWFV6YZUMNSdFVTMAeRgj" - } - } - } - } - }, - "silo-finance": { - "schema": "lending", - "base": "silo-finance", - "protocol": "silo-finance", - "project": "silo", - "deployments": { - "silo-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "silo.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "silo-finance-ethereum", - "query-id": "silo-finance-ethereum" - } - } - } - } - }, - "synthetix": { - "schema": "lending", - "base": "synthetix", - "protocol": "synthetix", - "project": "synthetix", - "deployments": { - "synthetix-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "synth-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "synthetix-ethereum", - "query-id": "synthetix-ethereum" - } - } - }, - "synthetix-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "2.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "synth-opt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "synthetix-optimism", - "query-id": "synthetix-optimism" - } - } - } - } - }, - "morpho-aave-v2": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-aave-v2", - "project": "morpho", - "deployments": { - "morpho-aave-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.aave.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-aave-v2-ethereum", - "query-id": "morpho-aave-v2-ethereum" - }, - "decentralized-network": { - "slug": "morpho-aave-v2-ethereum", - "query-id": "DsznTYxGdsqxWB6a474rSksvB7qWSth5Ff1PcxW28vZy" - } - } - } - } - }, - "morpho-aave-v3": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-aave-v3", - "project": "morpho", - "deployments": { - "morpho-aave-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.aave.v3.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-aave-v3-ethereum", - "query-id": "morpho-aave-v3-ethereum" - }, - "decentralized-network": { - "slug": "morpho-aave-v3-ethereum", - "query-id": "FKe6ANnWmGPE6hajGLoTgPrVF2jYPHiRu2Jwcg9ZmG9A" - } - } - } - } - }, - "morpho-compound": { - "schema": "lending", - "base": "morpho", - "protocol": "morpho-compound", - "project": "morpho", - "deployments": { - "morpho-compound-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.1", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "morpho.compound.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-compound-ethereum", - "query-id": "morpho-compound-ethereum" - }, - "decentralized-network": { - "slug": "morpho-compound-ethereum", - "query-id": "9dTy23tkahyiap1THgwnJuMwxNHVnQM57jFQQiUzjcY6" - } - } - } - } - }, - "morpho-blue": { - "schema": "lending", - "base": "morpho-blue", - "protocol": "morpho-blue", - "project": "morpho", - "deployments": { - "morpho-blue-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "3.2.0", - "subgraph": "1.1.0", - "methodology": "1.1.0" - }, - "files": { - "template": "morpho.blue.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "morpho-blue-ethereum", - "query-id": "morpho-blue-ethereum" - } - } - } - } - }, - "harvest-finance": { - "schema": "yield-aggregator", - "base": "harvest-finance", - "protocol": "harvest-finance", - "project": "harvest", - "deployments": { - "harvest-finance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-ethereum", - "query-id": "harvest-finance-ethereum" - } - } - }, - "harvest-finance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-polygon", - "query-id": "harvest-finance-polygon" - } - } - }, - "harvest-finance-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "harvest.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "harvest-finance-bsc", - "query-id": "harvest-finance-bsc" - } - } - } - } - }, - "ribbon-finance": { - "schema": "yield-aggregator", - "base": "ribbon-finance", - "protocol": "ribbon-finance", - "project": "ribbon", - "deployments": { - "ribbon-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "ribbon.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ribbon-finance-ethereum", - "query-id": "ribbon-finance-ethereum" - }, - "decentralized-network": { - "slug": "ribbon-finance-ethereum", - "query-id": "Crag42fFb8PrXnbTjHe1UG5KjgzoiUJbqwzJxZ1W8XNJ" - } - } - }, - "ribbon-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "ribbon.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ribbon-finance-avalanche", - "query-id": "ribbon-finance-avalanche" - }, - "decentralized-network": { - "slug": "ribbon-finance-avalanche", - "query-id": "FxhN13aCD2H1f9vagrVueGjHwguZ7JkfuDZrMvKthdk5" - } - } - } - } - }, - "yield-yak": { - "schema": "yield-aggregator", - "base": "yield-yak", - "protocol": "yield-yak", - "project": "yield-yak", - "deployments": { - "yield-yak-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yield.yak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yield-yak-avalanche", - "query-id": "yield-yak-avalanche" - } - } - } - } - }, - "stakedao": { - "schema": "yield-aggregator", - "base": "stakedao", - "protocol": "stakedao", - "project": "stakedao", - "deployments": { - "stakedao-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.3.2", - "methodology": "1.0.0" - }, - "files": { - "template": "stakedao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stakedao-ethereum", - "query-id": "stakedao-ethereum" - } - } - } - } - }, - "saddle-finance": { - "schema": "dex-amm", - "base": "saddle-finance", - "protocol": "saddle-finance", - "project": "saddle", - "deployments": { - "saddle-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-arbitrum", - "query-id": "saddle-finance-arbitrum" - }, - "decentralized-network": { - "slug": "saddle-finance-arbitrum", - "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj" - } - } - }, - "saddle-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-ethereum", - "query-id": "saddle-finance-ethereum" - }, - "decentralized-network": { - "slug": "saddle-finance-ethereum", - "query-id": "H36tAWQeYVioE4hHtaKJEMJMxwzVJWjfg2mimva2wcUj" - } - } - }, - "saddle-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-fantom", - "query-id": "saddle-finance-fantom" - }, - "decentralized-network": { - "slug": "saddle-finance-fantom", - "query-id": "DToFejYjMRXcCrBrsdP9AZGBqwxpEumNHReRTfAmqgeP" - } - } - }, - "saddle-finance-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.7", - "methodology": "1.0.0" - }, - "files": { - "template": "saddle.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "saddle-finance-optimism", - "query-id": "saddle-finance-optimism" - }, - "decentralized-network": { - "slug": "saddle-finance-optimism", - "query-id": "CFu1DWY9DyiC25WRmGreowMyuvLB27JfNRCa8rKkTDjK" - } - } - } - } - }, - "geist-finance": { - "schema": "lending", - "base": "aave-forks", - "protocol": "geist-finance", - "project": "geist", - "deployments": { - "geist-finance-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "geist.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "geist-finance-fantom", - "query-id": "geist-finance-fantom" - }, - "decentralized-network": { - "slug": "geist-finance-fantom", - "query-id": "45LX32kZPBRNiXaBKDrzbCnidoKv3cMEc8cXt3kvPifz" - } - } - } - } - }, - "spark-lend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "spark-lend", - "project": "makerdao", - "deployments": { - "spark-lend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spark.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "spark-lend-ethereum", - "query-id": "spark-lend-ethereum" - }, - "decentralized-network": { - "slug": "spark-lend-ethereum", - "query-id": "GbKdmBe4ycCYCQLQSjqGg6UHYoYfbyJyq5WrG35pv1si" - } - } - }, - "spark-lend-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.4.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spark.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "spark-lend-gnosis", - "query-id": "spark-lend-gnosis" - }, - "decentralized-network": { - "slug": "spark-lend-gnosis", - "query-id": "Bw4RH37UbbGEhHo4FaWwT1dn9QJzm1XSZCyK1cbr6ZKM" - } - } - } - } - }, - "radiant": { - "schema": "lending", - "base": "aave-forks", - "protocol": "radiant-capital", - "project": "radiant", - "deployments": { - "radiant-capital-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-arbitrum", - "query-id": "radiant-arbitrum" - }, - "decentralized-network": { - "slug": "radiant-capital-arbitrum", - "query-id": "5HTkKJNSm72tUGakwj8yroDGHxc6fBhmLaA5oJepZGL3" - } - } - } - } - }, - "radiant-v2": { - "schema": "lending", - "base": "aave-forks", - "protocol": "radiant-capital-v2", - "project": "radiant", - "deployments": { - "radiant-capital-v2-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-capital-v2-arbitrum", - "query-id": "radiant-capital-v2-arbitrum" - }, - "decentralized-network": { - "slug": "radiant-capital-v2-arbitrum", - "query-id": "2rQAKGJkvkiAXsCjx1n4E3DSgk2b7nCZMtt2BrV5TBgt" - } - } - }, - "radiant-capital-v2-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "3.0.1", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radiant.capital.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radiant-capital-v2-bsc", - "query-id": "radiant-capital-v2-bsc" - }, - "decentralized-network": { - "slug": "radiant-capital-v2-bsc", - "query-id": "cM9BYtdT8aVBX8JEbi9SQjV2Ft8onEh6qwZHxCUyAAh" - } - } - } - } - }, - "uwu-lend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "uwu-lend", - "project": "uwu", - "deployments": { - "uwu-lend-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "2.2.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uwu.lend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uwu-lend-ethereum", - "query-id": "uwu-lend-ethereum" - }, - "decentralized-network": { - "slug": "uwu-lend-ethereum", - "query-id": "CZBD7e8VGvNa6WkBHZAaC688bsZ35UvAM1AuDdVng2aE" - } - } - } - } - }, - "tokemak": { - "schema": "yield-aggregator", - "base": "tokemak", - "protocol": "tokemak", - "project": "tokemak", - "deployments": { - "tokemak-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "tokemak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "tokemak-ethereum", - "query-id": "tokemak-ethereum" - } - } - } - } - }, - "uniswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "uniswap-v3", - "project": "uniswap", - "deployments": { - "uniswap-v3-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-arbitrum", - "query-id": "uniswap-v3-arbitrum" - }, - "decentralized-network": { - "slug": "uniswap-v3-arbitrum", - "query-id": "FQ6JYszEKApsBpAmiHesRsd9Ygc6mzmpNRANeVQFYoVX" - } - } - }, - "uniswap-v3-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-base", - "query-id": "uniswap-v3-base" - }, - "decentralized-network": { - "slug": "uniswap-v3-base", - "query-id": "FUbEPQw1oMghy39fwWBFY5fE6MXPXZQtjncQy2cXdrNS" - } - } - }, - "uniswap-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-bsc", - "query-id": "uniswap-v3-bsc" - }, - "decentralized-network": { - "slug": "uniswap-v3-bsc", - "query-id": "8f1KyiuNYiNGrjagzEVpf6k6KkPG517prtjdrJihgHw" - } - } - }, - "uniswap-v3-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.4.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-celo", - "query-id": "uniswap-v3-celo" - }, - "decentralized-network": { - "slug": "uniswap-v3-celo", - "query-id": "8cLf29KxAedWLVaEqjV8qKomdwwXQxjptBZFrqWNH5u2" - } - } - }, - "uniswap-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.6.2", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-ethereum", - "query-id": "uniswap-v3-ethereum" - }, - "decentralized-network": { - "slug": "uniswap-v3-ethereum", - "query-id": "4cKy6QQMc5tpfdx8yxfYeb9TLZmgLQe44ddW1G7NwkA6" - } - } - }, - "uniswap-v3-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-optimism", - "query-id": "uniswap-v3-optimism" - }, - "decentralized-network": { - "slug": "uniswap-v3-optimism", - "query-id": "EgnS9YE1avupkvCNj9fHnJxppfEmNNywYJtghqiu2pd9" - } - } - }, - "uniswap-v3-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.5.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-polygon", - "query-id": "uniswap-v3-polygon" - }, - "decentralized-network": { - "slug": "uniswap-v3-polygon", - "query-id": "BvYimJ6vCLkk63oWZy7WB5cVDTVVMugUAF35RAUZpQXE" - } - } - } - } - }, - "pancakeswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "pancakeswap-v3", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v3-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-bsc", - "query-id": "pancakeswap-v3-bsc" - }, - "decentralized-network": { - "slug": "pancakeswap-v3-bsc", - "query-id": "A1BC1hzDsK4NTeXBpKQnDBphngpYZAwDUF7dEBfa3jHK" - } - } - }, - "pancakeswap-v3-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.3.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-ethereum", - "query-id": "pancakeswap-v3-ethereum" - }, - "decentralized-network": { - "slug": "pancakeswap-v3-ethereum", - "query-id": "JAGXF8B14mpB8QGKnwhKTs5JxsQZBJQvbDGFcWwL7gbm" - } - } - } - } - }, - "sushiswap-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "sushiswap-v3", - "project": "sushiswap", - "deployments": { - "sushiswap-v3-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-ethereum", - "query-id": "sushiswap-v3-ethereum" - }, - "decentralized-network": { - "slug": "sushiswap-v3-ethereum", - "query-id": "2tGWMrDha4164KkFAfkU3rDCtuxGb4q1emXmFdLLzJ8x" - } - } - }, - "sushiswap-v3-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-arbitrum", - "query-id": "sushiswap-v3-arbitrum" - }, - "decentralized-network": { - "slug": "sushiswap-v3-arbitrum", - "query-id": "3oHCddbQGTi42kPZBwyGzD2JzZR33zK2MwXtxAerNJy2" - } - } - }, - "sushiswap-v3-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-avalanche", - "query-id": "sushiswap-v3-avalanche" - }, - "decentralized-network": { - "slug": "sushiswap-v3-avalanche", - "query-id": "9WGqYsU8h1KVZeKz32663gFrbjVUNhBgmhRavMFqiSZz" - } - } - }, - "sushiswap-v3-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-bsc", - "query-id": "sushiswap-v3-bsc" - } - } - }, - "sushiswap-v3-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-fantom", - "query-id": "sushiswap-v3-fantom" - } - } - }, - "sushiswap-v3-fuse": { - "network": "fuse", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-fuse", - "query-id": "sushiswap-v3-fuse" - } - } - }, - "sushiswap-v3-gnosis": { - "network": "gnosis", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-gnosis", - "query-id": "sushiswap-v3-gnosis" - }, - "decentralized-network": { - "slug": "sushiswap-v3-gnosis", - "query-id": "9LC6MvaFHXyY3dmxM7VCwGNA9dvM6g2AuZxEGCyfvck3" - } - } - }, - "sushiswap-v3-moonriver": { - "network": "moonriver", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-moonriver", - "query-id": "sushiswap-v3-moonriver" - } - } - }, - "sushiswap-v3-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-optimism", - "query-id": "sushiswap-v3-optimism" - } - } - }, - "sushiswap-v3-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "4.0.1", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswapV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-polygon", - "query-id": "sushiswap-v3-polygon" - } - } - } - } - }, - "uniswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "uniswap-v3-swap", - "project": "uniswap", - "deployments": { - "uniswap-v3-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-swap-base", - "query-id": "uniswap-v3-swap-base" - } - } - }, - "uniswap-v3-swap-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v3-swap-optimism", - "query-id": "uniswap-v3-swap-optimism" - } - } - } - } - }, - "pancakeswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "pancakeswap-v3-swap", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v3-swap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-swap-bsc", - "query-id": "pancakeswap-v3-swap-bsc" - } - } - }, - "pancakeswap-v3-swap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v3-swap-ethereum", - "query-id": "pancakeswap-v3-swap-ethereum" - } - } - } - } - }, - "sushiswap-v3-swap": { - "schema": "dex-amm", - "base": "uniswap-v3-forks-swap", - "protocol": "sushiswap-v3-swap", - "project": "sushiswap", - "deployments": { - "sushiswap-v3-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "4.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.v3.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-v3-swap-base", - "query-id": "sushiswap-v3-swap-base" - } - } - } - } - }, - "osmosis-dex": { - "schema": "dex-amm", - "base": "osmosis-dex", - "protocol": "osmosis-dex", - "project": "osmosis", - "deployments": { - "osmosis-dex-osmosis": { - "network": "osmosis", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "osmosis.dex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "osmosis-dex-osmosis", - "query-id": "osmosis-dex-osmosis" - } - } - } - } - }, - "qidao": { - "schema": "lending", - "base": "qidao", - "protocol": "qidao", - "project": "qidao", - "deployments": { - "qidao-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-arbitrum", - "query-id": "qidao-arbitrum" - }, - "decentralized-network": { - "slug": "qidao-arbitrum", - "query-id": "Duw2tSACo9uRGFctAGsCc9pF7ZGMyqpjkAHPwm49dZe6" - } - } - }, - "qidao-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-avalanche", - "query-id": "qidao-avalanche" - }, - "decentralized-network": { - "slug": "qidao-avalanche", - "query-id": "98GG74FxxsG25Ltd8qvJ9BRfFmQWyN1AkS92MZBG1BsR" - } - } - }, - "qidao-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-base", - "query-id": "qidao-base" - }, - "decentralized-network": { - "slug": "qidao-base", - "query-id": "9NHJ9k31qaGCYXppm9isJTiEoiB6v3tJDnR6SrQrxcjw" - } - } - }, - "qidao-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-bsc", - "query-id": "qidao-bsc" - }, - "decentralized-network": { - "slug": "qidao-bsc", - "query-id": "4DcztqYL7UG5bjdisWWvnj3m4NtK5J3bs89scihAkicr" - } - } - }, - "qidao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-ethereum", - "query-id": "qidao-ethereum" - }, - "decentralized-network": { - "slug": "qidao-ethereum", - "query-id": "BmQSQaXsivq866kUobQSbyxycjk3D7CiaczKgu3P9ifB" - } - } - }, - "qidao-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-fantom", - "query-id": "qidao-fantom" - }, - "decentralized-network": { - "slug": "qidao-fantom", - "query-id": "hf51jYbZ9uESiuBabfxf6fRdc22xtmNWX9c3SRrct2q" - } - } - }, - "qidao-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-polygon", - "query-id": "qidao-polygon" - }, - "decentralized-network": { - "slug": "qidao-polygon", - "query-id": "5UxEcMvYW4vVYP81tkPQMAvJv1e4m1xU8BJkDXBnpc6x" - } - } - }, - "qidao-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-moonriver", - "query-id": "qidao-moonriver" - }, - "decentralized-network": { - "slug": "qidao-moonriver", - "query-id": "HzDP5zXKyjnEJP9TnFirk3qA24SUp4AfzKUBSRcBekgz" - } - } - }, - "qidao-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.4", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-optimism", - "query-id": "qidao-optimism" - }, - "decentralized-network": { - "slug": "qidao-optimism", - "query-id": "4JbWxzxBNCpAaVz72Gt2UthgiwcWZQLKDBhmSE7wKY2K" - } - } - }, - "qidao-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.5", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-gnosis", - "query-id": "qidao-gnosis" - }, - "decentralized-network": { - "slug": "qidao-gnosis", - "query-id": "7vJEsy8pJmRQZQh5kTXNz68SRHXBS859hMq3o5uWF1Ac" - } - } - }, - "qidao-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.1" - }, - "files": { - "template": "qidao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "qidao-harmony", - "query-id": "qidao-harmony" - }, - "decentralized-network": { - "slug": "qidao-harmony", - "query-id": "DCEQvXCiqtpMybQLL4YAgdCzqHzRH6wFFnCDnnLBBuvf" - } - } - } - } - }, - "rari-vaults": { - "schema": "yield-aggregator", - "base": "rari-vaults", - "protocol": "rari-vaults", - "project": "rari-capital", - "deployments": { - "rari-vaults-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.4.3", - "methodology": "1.0.0" - }, - "files": { - "template": "rari-vaults.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rari-vaults-ethereum", - "query-id": "rari-vaults-ethereum" - }, - "decentralized-network": { - "slug": "rari-vaults-ethereum", - "query-id": "Dy1yVPfbS27HTrqEq3nLGFGi3TMYxPzSfY7Zxxj5ZJhf" - } - } - } - } - }, - "apeswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "apeswap", - "project": "apeswap", - "deployments": { - "apeswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "apeswap.bsc.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "apeswap-bsc", - "query-id": "apeswap-bsc" - }, - "decentralized-network": { - "slug": "apeswap-bsc", - "query-id": "4u1aTvzBMjBdm7aK7uQmjffhoPc6Ceu3w2nTfq6vUQnb" - } - } - }, - "apeswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "apeswap.matic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "apeswap-polygon", - "query-id": "apeswap-polygon" - }, - "decentralized-network": { - "slug": "apeswap-polygon", - "query-id": "2x478mWv6rECUcJR4VxNxRnuMuRsY22Jxy7xxXJu4Q7F" - } - } - } - } - }, - "mm-finance": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "mm-finance", - "project": "mm", - "deployments": { - "mm-finance-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "mm.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mm-finance-polygon", - "query-id": "mm-finance-polygon" - }, - "decentralized-network": { - "slug": "mm-finance-polygon", - "query-id": "7B7R7aie7erfqUijkH2HNQcZ8bK6DpuXJaB5myt6nrs7" - } - } - }, - "mm-finance-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.6", - "methodology": "1.0.0" - }, - "files": { - "template": "mm.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "cronos-portal": { - "slug": "mm-finance", - "query-id": "mm-finance" - } - } - } - } - }, - "quickswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "quickswap", - "project": "quickswap", - "deployments": { - "quickswap-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "quickswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "quickswap-polygon", - "query-id": "quickswap-polygon" - } - } - } - } - }, - "quickswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "quickswap-swap", - "project": "quickswap", - "deployments": { - "quickswap-swap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "quickswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "quickswap-swap-polygon", - "query-id": "quickswap-swap-polygon" - } - } - } - } - }, - "solarbeam": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "solarbeam", - "project": "solarbeam", - "deployments": { - "solarbeam-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "solarbeam.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "solarbeam-moonriver", - "query-id": "solarbeam-moonriver" - }, - "decentralized-network": { - "slug": "solarbeam-moonriver", - "query-id": "EoN2oon5KNH6XL1xSQCRsLHFPSZ2xLJD9DApizNtfGWo" - } - } - } - } - }, - "spiritswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "spiritswap", - "project": "spiritswap", - "deployments": { - "spiritswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.10", - "methodology": "1.0.0" - }, - "files": { - "template": "spiritswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiritswap-fantom", - "query-id": "spiritswap-fantom" - }, - "decentralized-network": { - "slug": "spiritswap-fantom", - "query-id": "ARnDoat2Zyft9miSW8Md6V32nd5YUfngMCDCaNgqLqXv" - } - } - } - } - }, - "spookyswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "spookyswap", - "project": "spookyswap", - "deployments": { - "spookyswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "spookyswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spookyswap-fantom", - "query-id": "spookyswap-fantom" - } - } - } - } - }, - "spookyswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "spookyswap-swap", - "project": "spookyswap", - "deployments": { - "spookyswap-swap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spookyswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spookyswap-swap-fantom", - "query-id": "spookyswap-swap-fantom" - } - } - } - } - }, - "sushiswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "sushiswap", - "project": "sushiswap", - "deployments": { - "sushiswap-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-arbitrum", - "query-id": "sushiswap-arbitrum" - }, - "decentralized-network": { - "slug": "sushiswap-arbitrum", - "query-id": "9tSS5FaePZnjmnXnSKCCqKVLAqA6eGg6jA2oRojsXUbP" - } - } - }, - "sushiswap-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-avalanche", - "query-id": "sushiswap-avalanche" - }, - "decentralized-network": { - "slug": "sushiswap-avalanche", - "query-id": "4KgG6aek9cEp8MXQZKWCmeJWj5Y77mK9tPRAD1kDQa8Q" - } - } - }, - "sushiswap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-bsc", - "query-id": "sushiswap-bsc" - }, - "decentralized-network": { - "slug": "sushiswap-bsc", - "query-id": "7QyoZFgo1bYvTD7bmdBxsjFLjmeDLgBT3nC3H8y6yuKZ" - } - } - }, - "sushiswap-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-celo", - "query-id": "sushiswap-celo" - }, - "decentralized-network": { - "slug": "sushiswap-celo", - "query-id": "5H97eNhy9fVHcqRXZtCV2UxHG2DbzcFA7yth1TaVZ45x" - } - } - }, - "sushiswap-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-fantom", - "query-id": "sushiswap-fantom" - }, - "decentralized-network": { - "slug": "sushiswap-fantom", - "query-id": "9wj3CmJFtoe7J25h4t39ioQHXexGe2rbsLfBgLefU7mN" - } - } - }, - "sushiswap-fuse": { - "network": "fuse", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-fuse", - "query-id": "sushiswap-fuse" - }, - "decentralized-network": { - "slug": "sushiswap-fuse", - "query-id": "7MhgrLAB5B4D6PLDjF9Stx7fzS54MA3d5oi9dT3fHxbz" - } - } - }, - "sushiswap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.2", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.mainnet.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-ethereum", - "query-id": "sushiswap-ethereum" - }, - "decentralized-network": { - "slug": "sushiswap-ethereum", - "query-id": "77jZ9KWeyi3CJ96zkkj5s1CojKPHt6XJKjLFzsDCd8Fd" - } - } - }, - "sushiswap-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.2.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-harmony", - "query-id": "sushiswap-harmony" - }, - "decentralized-network": { - "slug": "sushiswap-harmony", - "query-id": "96NBskquxSxSDV8W42g3nmzECziCvhftSXFFpbY4geaC" - } - } - }, - "sushiswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.1", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-polygon", - "query-id": "sushiswap-polygon" - }, - "decentralized-network": { - "slug": "sushiswap-polygon", - "query-id": "B3Jt84tHJJjanE4W1YijyksTwtm7jqK8KcG5dcoc1ZNF" - } - } - }, - "sushiswap-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-moonbeam", - "query-id": "sushiswap-moonbeam" - }, - "decentralized-network": { - "slug": "sushiswap-moonbeam", - "query-id": "8oFzyJBeHoojoe23u3YYNruTZsqgn91q44U8hrFocbtp" - } - } - }, - "sushiswap-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-moonriver", - "query-id": "sushiswap-moonriver" - }, - "decentralized-network": { - "slug": "sushiswap-moonriver", - "query-id": "EuYBux3ZPq1v3Uipo837WDq6WrK4AB3LGD6w78edRHib" - } - } - }, - "sushiswap-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.15", - "methodology": "1.0.0" - }, - "files": { - "template": "sushiswap.alt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "sushiswap-gnosis", - "query-id": "sushiswap-gnosis" - }, - "decentralized-network": { - "slug": "sushiswap-gnosis", - "query-id": "GvgkY82DTAkYqRShBbPQMjF1WJyUcknXre3QPWiXrPnS" - } - } - } - } - }, - "trader-joe": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "trader-joe", - "project": "trader-joe", - "deployments": { - "trader-joe-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "trader.joe.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "trader-joe-avalanche", - "query-id": "trader-joe-avalanche" - }, - "decentralized-network": { - "slug": "trader-joe-avalanche", - "query-id": "H2VGe2tYavUEosSjomHwxbvCKy3LaNaW8Kjw2KhhHs1K" - } - } - } - } - }, - "trisolaris": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "trisolaris", - "project": "trisolaris", - "deployments": { - "trisolaris-aurora": { - "network": "aurora", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.9", - "methodology": "1.0.0" - }, - "files": { - "template": "trisolaris.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "trisolaris-aurora", - "query-id": "trisolaris-aurora" - } - } - } - } - }, - "ubeswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "ubeswap", - "project": "ubeswap", - "deployments": { - "ubeswap-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.16", - "methodology": "1.0.0" - }, - "files": { - "template": "ubeswap-template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "ubeswap-celo", - "query-id": "ubeswap-celo" - }, - "decentralized-network": { - "slug": "ubeswap-celo", - "query-id": "9WiZHUk2d3rM4sEQ4NSz6ihFRc2zWmPj7yk8w51dNdhT" - } - } - } - } - }, - "uniswap-v2": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "uniswap-v2", - "project": "uniswap", - "deployments": { - "uniswap-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.12", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v2-ethereum", - "query-id": "uniswap-v2-ethereum" - } - } - } - } - }, - "baseswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "baseswap", - "project": "baseswap", - "deployments": { - "baseswap-base": { - "network": "base", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "baseswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "baseswap-base", - "query-id": "baseswap-base" - } - } - } - } - }, - "uniswap-v2-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "uniswap-v2-swap", - "project": "uniswap", - "deployments": { - "uniswap-v2-swap-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap.v2.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "uniswap-v2-swap-ethereum", - "query-id": "uniswap-v2-swap-ethereum" - }, - "decentralized-network": { - "slug": "uniswap-v2-swap-ethereum", - "query-id": "3onEbd9MLfXTTWAfP91yqsKr7C68VCT2ZiF7EoQiQAFj" - } - } - } - } - }, - "substream-uniswap-v2": { - "schema": "dex-amm", - "base": "substreams", - "protocol": "uniswap-v2", - "project": "uniswap", - "deployments": { - "substream-uniswap-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.3.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "NA" - }, - "options": { - "prepare:yaml": false, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "substream-uniswap-v2-ethereum", - "query-id": "substream-uniswap-v2-ethereum" - }, - "decentralized-network": { - "slug": "substream-uniswap-v2-ethereum", - "query-id": "J2oP9UNBjsnuDDW1fAoHKskyrNLFNBB2badQU6UvEtJp" - } - } - } - } - }, - "pancakeswap-v2-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "pancakeswap-v2-swap", - "project": "pancakeswap", - "deployments": { - "pancakeswap-v2-swap-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "files": { - "template": "pancakeswap.v2.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "pancakeswap-v2-swap-bsc", - "query-id": "pancakeswap-v2-swap-bsc" - } - } - } - } - }, - "baseswap-swap": { - "schema": "dex-amm", - "base": "uniswap-forks-swap", - "protocol": "baseswap-swap", - "project": "baseswap", - "deployments": { - "baseswap-swap-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "baseswap.swap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "baseswap-swap-base", - "query-id": "baseswap-swap-base" - } - } - } - } - }, - "vvs-finance": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "vvs-finance", - "project": "vvs", - "deployments": { - "vvs-finance-cronos": { - "network": "cronos", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.14", - "methodology": "1.0.0" - }, - "files": { - "template": "vvs.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "cronos-portal": { - "slug": "vvs-finance", - "query-id": "vvs-finance" - } - } - } - } - }, - "honeyswap": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "honeyswap", - "project": "honeyswap", - "deployments": { - "honeyswap-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.1" - }, - "files": { - "template": "honeyswap.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "honeyswap-gnosis", - "query-id": "honeyswap-gnosis" - }, - "decentralized-network": { - "slug": "honeyswap-gnosis", - "query-id": "33aQTj7abtAR5zGcG9JBd1fd1sodgKDjoTsKuA8QrUW7" - } - } - }, - "honeyswap-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.10", - "methodology": "1.0.1" - }, - "files": { - "template": "honeyswap.matic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "honeyswap-polygon", - "query-id": "honeyswap-polygon" - }, - "decentralized-network": { - "slug": "honeyswap-polygon", - "query-id": "7YaQPHXFrPCwbt2MUPQ5N5PgmgMch14Ab5cZVYxvtPgW" - } - } - } - } - }, - "velodrome-finance-v1": { - "schema": "dex-amm", - "base": "velodrome-finance", - "protocol": "velodrome-finance-v1", - "project": "velodrome", - "deployments": { - "velodrome-finance-v1-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "velodrome.finance.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "velodrome-optimism", - "query-id": "velodrome-optimism" - }, - "decentralized-network": { - "slug": "velodrome-optimism", - "query-id": "7tA4PY1VmbycJeoVtn2mjQK4NbozgwTuZgrxDTxzEDL1" - } - } - } - } - }, - "velodrome-finance-v2": { - "schema": "dex-amm", - "base": "velodrome-finance", - "protocol": "velodrome-finance-v2", - "project": "velodrome", - "deployments": { - "velodrome-finance-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "velodrome.finance.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "velodrome-v2-optimism", - "query-id": "velodrome-v2-optimism" - }, - "decentralized-network": { - "slug": "velodrome-v2-optimism", - "query-id": "A4Y1A82YhSLTn998BVVELC8eWzhi992k4ZitByvssxqA" - } - } - } - } - }, - "yearn-v2": { - "schema": "yield-aggregator", - "base": "yearn-v2", - "protocol": "yearn-v2", - "project": "yearn", - "deployments": { - "yearn-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-arbitrum", - "query-id": "yearn-v2-arbitrum" - }, - "decentralized-network": { - "slug": "yearn-v2-arbitrum", - "query-id": "G3JZhmKKHC4mydRzD6kSz5fCWve5WDYYCyTFSJyv3SD5" - } - } - }, - "yearn-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-ethereum", - "query-id": "yearn-v2-ethereum" - }, - "decentralized-network": { - "slug": "yearn-v2-ethereum", - "query-id": "FDLuaz69DbMADuBjJDEcLnTuPnjhZqNbFVrkNiBLGkEg" - } - } - }, - "yearn-v2-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.4", - "methodology": "1.0.0" - }, - "files": { - "template": "yearn.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "yearn-v2-fantom", - "query-id": "yearn-v2-fantom" - } - } - } - } - }, - "maker-governance": { - "schema": "governance", - "base": "maker-governance", - "protocol": "maker-governance", - "project": "makerdao", - "deployments": { - "maker-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "maker-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "maker-governance", - "query-id": "maker-governance" - }, - "decentralized-network": { - "slug": "maker-governance", - "query-id": "FXpCdSzUbRFzovJLW8hrwFXA2E3Bj915w99TtTSMm88p" - } - } - } - } - }, - "aave-governance": { - "schema": "governance", - "base": "aave-governance", - "protocol": "aave-governance", - "project": "aave", - "deployments": { - "aave-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aave-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "aave-governance", - "query-id": "aave-governance" - }, - "decentralized-network": { - "slug": "aave-governance", - "query-id": "8EBbn3tNayccBZrnW9ae6Q4NLHfVEcozvkB3YAp5Qatr" - } - } - } - } - }, - "dydx-governance": { - "schema": "governance", - "base": "aave-governance", - "protocol": "dydx-governance", - "project": "dydx", - "deployments": { - "dydx-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dydx-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "dydx-governance", - "query-id": "dydx-governance" - }, - "decentralized-network": { - "slug": "dydx-governance", - "query-id": "FFK9Fa8fdBrAugNVFqRZVAtrej7FjsQNq1s9LVBhF4FX" - } - } - } - } - }, - "angle-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "angle-governance", - "project": "angle", - "deployments": { - "angle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "angle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "angle-governance", - "query-id": "angle-governance" - }, - "decentralized-network": { - "slug": "angle-governance", - "query-id": "94D1g2jHHqKUS5uhbEPHWyRgfp4bYeZPn5Cr5R3zvoYH" - } - } - } - } - }, - "code4rena-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "code4rena-governance", - "project": "code4rena", - "deployments": { - "code4rena-governance-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "code4rena-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "code4rena-governance", - "query-id": "code4rena-governance" - } - } - } - } - }, - "ens-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "ens-governance", - "project": "ens", - "deployments": { - "ens-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ens-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ens-governance", - "query-id": "ens-governance" - }, - "decentralized-network": { - "slug": "ens-governance", - "query-id": "GyijYxW9yiSRcEd5u2gfquSvneQKi5QuvU3WZgFyfFSn" - } - } - } - } - }, - "euler-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "euler-governance", - "project": "euler", - "deployments": { - "euler-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "euler-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "euler-governance", - "query-id": "euler-governance" - }, - "decentralized-network": { - "slug": "euler-governance", - "query-id": "F94CS4mephx6noem4KsXxeGDSufCGUH5fXrqUX5ZiFk2" - } - } - } - } - }, - "fei-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "fei-governance", - "project": "fei", - "deployments": { - "fei-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "fei-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "fei-governance", - "query-id": "fei-governance" - } - } - } - } - }, - "hop-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "hop-governance", - "project": "hop", - "deployments": { - "hop-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hop-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hop-governance", - "query-id": "hop-governance" - }, - "decentralized-network": { - "slug": "hop-governance", - "query-id": "9RFPnB3zNjtc7x9kowTyBU2YVGUFSJRe27EBJWLMVgy6" - } - } - } - } - }, - "silo-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "silo-governance", - "project": "silo", - "deployments": { - "silo-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "silo-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "silo-governance", - "query-id": "silo-governance" - }, - "decentralized-network": { - "slug": "silo-governance", - "query-id": "8qztgeMTJrq2kQHK7LzmbmDUpuBvDc6eFASDqN8SJBM5" - } - } - } - } - }, - "truefi-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "truefi-governance", - "project": "truefi", - "deployments": { - "truefi-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "truefi-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "truefi-governance", - "query-id": "truefi-governance" - }, - "decentralized-network": { - "slug": "truefi-governance", - "query-id": "DbD7U3k8trdQUC2KqC2Fu2WcS42QUZHr2YXJzZXjH719" - } - } - } - } - }, - "unlock-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "unlock-governance", - "project": "unlock", - "deployments": { - "unlock-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "unlock-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "unlock-governance", - "query-id": "unlock-governance" - }, - "decentralized-network": { - "slug": "unlock-governance-ethereum", - "query-id": "7ziHxbouaMXhSzxf5nfTXLYYASajU9bTCcxWoTKEAkBe" - } - } - } - } - }, - "rarible-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "rarible-governance", - "project": "rarible", - "deployments": { - "rarible-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "rarible-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "rarible-governance", - "query-id": "rarible-governance" - }, - "decentralized-network": { - "slug": "rarible-governance", - "query-id": "2oGCcncW9v7AAExqpZ9T1W1GecSjGVmi7XGet3P9JiNn" - } - } - } - } - }, - "optimism-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "optimism-governance", - "project": "optimism", - "deployments": { - "optimism-governance-optimism": { - "network": "optimism", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "optimism-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "optimism-governance", - "query-id": "optimism-governance" - } - } - } - } - }, - "ousd-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "ousd-governance", - "project": "ousd", - "deployments": { - "ousd-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ousd-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ousd-governance", - "query-id": "ousd-governance" - }, - "decentralized-network": { - "slug": "ousd-governance", - "query-id": "BwcFTZJskUwk6WXKteMAEqn6CQFWsPsqq8A8YGcqnWkK" - } - } - } - } - }, - "threshold-governance": { - "schema": "governance", - "base": "openzeppelin-governor", - "protocol": "threshold-governance", - "project": "threshold", - "deployments": { - "threshold-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "threshold-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "threshold-governance", - "query-id": "threshold-governance" - }, - "decentralized-network": { - "slug": "threshold-governance", - "query-id": "Bk9fLLKttYoM4fE1cXXCq61owGqFtX1RsS8kEtDnDELC" - } - } - } - } - }, - "ampleforth-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "ampleforth-governance", - "project": "ampleforth", - "deployments": { - "ampleforth-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ampleforth-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ampleforth-governance", - "query-id": "ampleforth-governance" - }, - "decentralized-network": { - "slug": "ampleforth-governance", - "query-id": "B7zUhfTTV7mi2QZgUL661D714NGqeLtk6h3q3Mf2xNNa" - } - } - } - } - }, - "compound-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "compound-governance", - "project": "compound", - "deployments": { - "compound-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-governance", - "query-id": "compound-governance" - }, - "decentralized-network": { - "slug": "compound-governance", - "query-id": "7nuSuPhUgKSg5uKRh8g5jyjZWE8DnvQw1mQtvDWpxrnh" - } - } - } - } - }, - "compound-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "compound-governance-v1", - "project": "compound", - "deployments": { - "compound-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "compound-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "compound-governance-v1", - "query-id": "compound-governance-v1" - } - } - } - } - }, - "cryptex-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "cryptex-governance", - "project": "cryptex", - "deployments": { - "cryptex-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cryptex-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cryptex-governance", - "query-id": "cryptex-governance" - }, - "decentralized-network": { - "slug": "cryptex-governance", - "query-id": "AnAnCpeyy2ZbP2BLZw9u7VjGtVtRorvYuGU3vME1na7F" - } - } - } - } - }, - "gitcoin-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "gitcoin-governance", - "project": "gitcoin", - "deployments": { - "gitcoin-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gitcoin-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "gitcoin-governance", - "query-id": "gitcoin-governance" - }, - "decentralized-network": { - "slug": "gitcoin-governance", - "query-id": "By35hUZiWiHNzRsdDnxFU9T47YUNZwPjfhwD1iBbNGQL" - } - } - } - } - }, - "hifi-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "hifi-governance", - "project": "hifi", - "deployments": { - "hifi-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hifi-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hifi-governance", - "query-id": "hifi-governance" - }, - "decentralized-network": { - "slug": "hifi-governance", - "query-id": "ANAXtqRM9cUySpQZ8xuaFTdu1oFCj4HYaRXXiChTihAM" - } - } - } - } - }, - "idle-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "idle-governance", - "project": "idle", - "deployments": { - "idle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "idle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "idle-governance", - "query-id": "idle-governance" - } - } - } - } - }, - "idle-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "idle-governance-v1", - "project": "idle", - "deployments": { - "idle-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "idle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "idle-governance-v1", - "query-id": "idle-governance-v1" - } - } - } - } - }, - "indexed-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "indexed-governance", - "project": "indexed", - "deployments": { - "indexed-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "indexed-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "indexed-governance", - "query-id": "indexed-governance" - } - } - } - } - }, - "lilnouns-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "lilnouns-governance", - "project": "lilnouns", - "deployments": { - "lilnouns-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lilnouns-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lilnouns-governance", - "query-id": "lilnouns-governance" - } - } - } - } - }, - "nouns-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "nouns-governance", - "project": "nouns", - "deployments": { - "nouns-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "nouns-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "nouns-governance", - "query-id": "nouns-governance" - } - } - } - } - }, - "ooki-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "ooki-governance", - "project": "ooki", - "deployments": { - "ooki-governance-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ooki-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ooki-governance", - "query-id": "ooki-governance" - } - } - } - } - }, - "pooltogether-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "pooltogether-governance", - "project": "pooltogether", - "deployments": { - "pooltogether-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "pooltogether-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "pooltogether-governance", - "query-id": "pooltogether-governance" - }, - "decentralized-network": { - "slug": "pooltogether-governance", - "query-id": "8rW1keThqpvtoBz7V2iNbo3wqcPCJZTBGuc3frGKbyi2" - } - } - } - } - }, - "radicle-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "radicle-governance", - "project": "radicle", - "deployments": { - "radicle-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "radicle-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "radicle-governance", - "query-id": "radicle-governance" - }, - "decentralized-network": { - "slug": "radicle-governance", - "query-id": "8jQvvEWJffzA48kxnPhuG7dqv4MWwPatVKKbxzr66xiN" - } - } - } - } - }, - "reflexer-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "reflexer-governance", - "project": "reflexer", - "deployments": { - "reflexer-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "reflexer-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "reflexer-governance", - "query-id": "reflexer-governance" - }, - "decentralized-network": { - "slug": "reflexer-governance", - "query-id": "wWdwntxsEd21qDdhkzDn9ycNs5kvYamkndwv3GwLfPp" - } - } - } - } - }, - "uniswap-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance", - "project": "uniswap", - "deployments": { - "uniswap-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance", - "query-id": "uniswap-governance" - }, - "decentralized-network": { - "slug": "uniswap-governance", - "query-id": "7WXaWRE2GbBpmokFAnQfugpVsC61D9dfR6fHgjQFqpq5" - } - } - } - } - }, - "uniswap-governance-v1": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance-v1", - "project": "uniswap", - "deployments": { - "uniswap-governance-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance-v1", - "query-id": "uniswap-governance-v1" - } - } - } - } - }, - "uniswap-governance-v2": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "uniswap-governance-v2", - "project": "uniswap", - "deployments": { - "uniswap-governance-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "uniswap-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "uniswap-governance-v2", - "query-id": "uniswap-governance-v2" - } - } - } - } - }, - "unslashed-governance": { - "schema": "governance", - "base": "governor-alpha-bravo", - "protocol": "unslashed-governance", - "project": "unslashed", - "deployments": { - "unslashed-governance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "unslashed-governance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "unslashed-governance", - "query-id": "unslashed-governance" - } - } - } - } - }, - "vesper-finance": { - "schema": "yield-aggregator", - "base": "vesper-finance", - "protocol": "vesper-finance", - "project": "vesper", - "deployments": { - "vesper-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "vesper.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vesper-ethereum", - "query-id": "vesper-ethereum" - }, - "decentralized-network": { - "slug": "vesper-ethereum", - "query-id": "GQdCg4oR8tFB4tH8svyL1PfgDABKnRXz4GjwFYH68pPG" - } - } - } - } - }, - "badgerdao": { - "schema": "yield-aggregator", - "base": "badgerdao", - "protocol": "badgerdao", - "project": "badger", - "deployments": { - "badgerdao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "files": { - "template": "badgerdao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "badgerdao-ethereum", - "query-id": "badgerdao-ethereum" - }, - "decentralized-network": { - "slug": "badgerdao-ethereum", - "query-id": "BchjnXAXXV5coiCBMQH4A8yCHXEFX9S88JFF6G3mfem4" - } - } - } - } - }, - "platypus-finance": { - "schema": "dex-amm", - "base": "platypus-finance", - "protocol": "platypus-finance", - "project": "platypus", - "deployments": { - "platypus-finance-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.3.3", - "methodology": "1.0.0" - }, - "files": { - "template": "platypus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "platypus-finance-avalanche", - "query-id": "platypus-finance-avalanche" - }, - "decentralized-network": { - "slug": "platypus-finance-avalanche", - "query-id": "B35cLTayreXTML6fXPTrFNSYx7mKyDuuV51LjVxWwWjp" - } - } - } - } - }, - "erc20": { - "schema": "erc20", - "base": "erc20", - "protocol": "erc20", - "project": "erc20", - "deployments": { - "erc20-holders-2017": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2017", - "query-id": "erc20-holders-2017" - } - } - }, - "erc20-holders-2018": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2018", - "query-id": "erc20-holders-2018" - } - } - }, - "erc20-holders-2019": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2019", - "query-id": "erc20-holders-2019" - } - } - }, - "erc20-holders-2020": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2020", - "query-id": "erc20-holders-2020" - } - } - }, - "erc20-holders-2021": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2021", - "query-id": "erc20-holders-2021" - } - } - }, - "erc20-holders-2022": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "erc20.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "erc20-holders-2022", - "query-id": "erc20-holders-2022" - } - } - } - } - }, - "opensea-v1": { - "schema": "nft-marketplace", - "base": "opensea", - "protocol": "opensea-v1", - "project": "opensea", - "deployments": { - "opensea-v1-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "opensea.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-v1-ethereum", - "query-id": "opensea-v1-ethereum" - }, - "decentralized-network": { - "slug": "opensea-v1-ethereum", - "query-id": "GSjXo5Vd1EPaMGRJBYe6HoBKv7WSq3miCrRRZJbTCHkT" - } - } - } - } - }, - "opensea-v2": { - "schema": "nft-marketplace", - "base": "opensea", - "protocol": "opensea-v2", - "project": "opensea", - "deployments": { - "opensea-v2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "opensea.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-v2-ethereum", - "query-id": "opensea-v2-ethereum" - }, - "decentralized-network": { - "slug": "opensea-v2-ethereum", - "query-id": "ECtdoov16DUmk5qbhFx4PVVN7vidiNDwzFNsui6FoHEo" - } - } - } - } - }, - "seaport": { - "schema": "nft-marketplace", - "base": "seaport", - "protocol": "seaport", - "project": "opensea", - "deployments": { - "opensea-seaport-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "seaport.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "opensea-seaport-ethereum", - "query-id": "opensea-seaport-ethereum" - }, - "decentralized-network": { - "slug": "opensea-seaport-ethereum", - "query-id": "2GmLsgYGWoFoouZzKjp8biYDkfmeLTkEY3VDQyZqSJHA" - } - } - } - } - }, - "x2y2": { - "schema": "nft-marketplace", - "base": "x2y2", - "protocol": "x2y2", - "project": "x2y2", - "deployments": { - "x2y2-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "x2y2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "x2y2-ethereum", - "query-id": "x2y2-ethereum" - }, - "decentralized-network": { - "slug": "x2y2-ethereum", - "query-id": "3cMswgcjkpLmuF99ViQRZfCPRyCsnimqQsR9z6mY5e2i" - } - } - } - } - }, - "looksrare": { - "schema": "nft-marketplace", - "base": "looksrare", - "protocol": "looksrare", - "project": "looksrare", - "deployments": { - "looksrare-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "files": { - "template": "looksrare.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "looksrare-ethereum", - "query-id": "looksrare-ethereum" - }, - "decentralized-network": { - "slug": "looksrare-ethereum", - "query-id": "FsT2DES8UdhfDkXCtE56h5WCDrrSXrtJiSMgNWvSdyYL" - } - } - } - } - }, - "tornado-cash": { - "schema": "generic", - "base": "tornado-cash", - "protocol": "tornado-cash", - "project": "tornado-cash", - "deployments": { - "tornado-cash-classic-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.4", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "tornado-cash-classic-ethereum", - "query-id": "tornado-cash-classic-ethereum" - }, - "decentralized-network": { - "slug": "tornado-cash-classic-ethereum", - "query-id": "346UaR2Lgxg8yJ2Vq2r8wid1pWaYQNH6N1GmzGCJkHRV" - } - }, - "files": { - "template": "tornado-cash.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "tornado-cash-classic-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "tornado-cash-classic-bsc", - "query-id": "tornado-cash-classic-bsc" - }, - "decentralized-network": { - "slug": "tornado-cash-classic-bsc", - "query-id": "3wAcWMmwNSv9CVfT4HFFWAvawCq621JPKfg1tniwdW7a" - } - }, - "files": { - "template": "tornado-cash.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "the-graph": { - "schema": "generic", - "base": "the-graph", - "protocol": "the-graph", - "project": "the-graph", - "deployments": { - "the-graph-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "the-graph-arbitrum", - "query-id": "the-graph-arbitrum" - }, - "decentralized-network": { - "slug": "the-graph-arbitrum", - "query-id": "EExUE3FayKraaTteewjxaUpZW4M33j4bsD6pgxNCHnGd" - } - }, - "files": { - "template": "theGraphTemplate.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "the-graph-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "the-graph-ethereum", - "query-id": "the-graph-ethereum" - }, - "decentralized-network": { - "slug": "the-graph-ethereum", - "query-id": "AQHJdvUMkPfSxi6Q2LxXYjWXjGvfCST8DFFYE4VUKtU6" - } - }, - "files": { - "template": "theGraphTemplate.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "aura-finance": { - "schema": "yield-aggregator", - "base": "aura-finance", - "protocol": "aura-finance", - "project": "aura", - "deployments": { - "aura-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.0", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "aura-finance-ethereum", - "query-id": "aura-finance-ethereum" - }, - "decentralized-network": { - "slug": "aura-finance-ethereum", - "query-id": "EcNHwEGXq3KW1vCbHHj1iwvtf62ae5kxzEQhKtRqPygt" - } - }, - "files": { - "template": "aura-finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "pangolin": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "pangolin", - "project": "pangolin", - "deployments": { - "pangolin-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "pangolin-avalanche", - "query-id": "pangolin-avalanche" - }, - "decentralized-network": { - "slug": "pangolin-avalanche", - "query-id": "6f3YqP75bLuLZAv7Cm1BohFot17kT3Svekg6giuvaTmg" - } - }, - "files": { - "template": "pangolin.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "rocket-pool": { - "schema": "generic", - "base": "rocket-pool", - "protocol": "rocket-pool", - "project": "rocket-pool", - "deployments": { - "rocket-pool-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.4.0", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "rocket-pool-ethereum", - "query-id": "rocket-pool-ethereum" - }, - "decentralized-network": { - "slug": "rocket-pool-ethereum", - "query-id": "Dtj2HicXKpoUjNB7ffdBkMwt3L9Sz3cbENd67AdHu6Vb" - } - }, - "files": { - "template": "rocket-pool.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "cryptopunks": { - "schema": "nft-marketplace", - "base": "cryptopunks", - "protocol": "cryptopunks", - "project": "cryptopunks", - "deployments": { - "cryptopunks-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "cryptopunks.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cryptopunks-ethereum", - "query-id": "cryptopunks-ethereum" - }, - "decentralized-network": { - "slug": "cryptopunks-ethereum", - "query-id": "HdVdERFUe8h61vm2fDyycHgxjsde5PbB832NHgJfZNqK" - } - } - } - } - }, - "multichain": { - "schema": "bridge", - "base": "multichain", - "protocol": "multichain", - "project": "multichain", - "deployments": { - "multichain-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-arbitrum", - "query-id": "multichain-arbitrum" - }, - "decentralized-network": { - "slug": "multichain-arbitrum", - "query-id": "579DZmKbpRcdLVBiLyhLEvRQBQ54BA72yDqtSaVSijRs" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-avalanche", - "query-id": "multichain-avalanche" - }, - "decentralized-network": { - "slug": "multichain-avalanche", - "query-id": "28ds2UuXzULQ9XLKFncX1pVL6xTENwKw9VKb7xRXC6mX" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-bsc", - "query-id": "multichain-bsc" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-celo", - "query-id": "multichain-celo" - }, - "decentralized-network": { - "slug": "multichain-celo", - "query-id": "F6Rz64x6iem1VuUNUvzBzH1zzBBZfCA7cpZ91mLySXQY" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-ethereum", - "query-id": "multichain-ethereum" - }, - "decentralized-network": { - "slug": "multichain-ethereum", - "query-id": "GRPErV1E73JGNGGsF2tK4fuuqpvBWpfRBSED8567BAD2" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-fantom", - "query-id": "multichain-fantom" - }, - "decentralized-network": { - "slug": "multichain-fantom", - "query-id": "B6xbS79Nza7zNjSXu1Bsq2ofpFLhDEW1mpAkECKdQXQc" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-gnosis", - "query-id": "multichain-gnosis" - }, - "decentralized-network": { - "slug": "multichain-gnosis", - "query-id": "E3FsKA2dpjv94tPgMKmyPEa63mUQ611XRrbsgAtzqrCn" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-optimism", - "query-id": "multichain-optimism" - }, - "decentralized-network": { - "slug": "multichain-optimism", - "query-id": "FZkvvW6rZJxJk1E3LqhVWHRAb8oWoWZAX563Y94C6GaF" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "multichain-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.0.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "multichain-polygon", - "query-id": "multichain-polygon" - }, - "decentralized-network": { - "slug": "multichain-polygon", - "query-id": "AKgq2JRAoRnBE14iDAMN8bqDwwyufpy3AqXuZRKvyZVR" - } - }, - "files": { - "template": "multichain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "stargate": { - "schema": "bridge", - "base": "stargate", - "protocol": "stargate", - "project": "stargate", - "deployments": { - "stargate-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-ethereum", - "query-id": "stargate-ethereum" - }, - "decentralized-network": { - "slug": "stargate-ethereum", - "query-id": "G1pPbbMjwCnFiyMherq8wqfMusZDriLMqvGBHLr2wS34" - } - } - }, - "stargate-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-avalanche", - "query-id": "stargate-avalanche" - }, - "decentralized-network": { - "slug": "stargate-avalanche", - "query-id": "6XypMkQUovcohhVC2XeWgdXeDsBcnL9ynKdLXpXggoHd" - } - } - }, - "stargate-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-bsc", - "query-id": "stargate-bsc" - }, - "decentralized-network": { - "slug": "stargate-bsc", - "query-id": "6sRx6JNkjz66id39jCK3GMiVnPVuyuv2ntwQVpDzmjRF" - } - } - }, - "stargate-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-arbitrum", - "query-id": "stargate-arbitrum" - }, - "decentralized-network": { - "slug": "stargate-arbitrum", - "query-id": "DWo7jrtpTtUM1buqiCUg7j7XUF568qNPBv7FwwDceuxm" - } - } - }, - "stargate-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-polygon", - "query-id": "stargate-polygon" - }, - "decentralized-network": { - "slug": "stargate-polygon", - "query-id": "SitmxEcPXXwo5cFK8Y2FSMZNZNQ4gXcGdWBDqo3A7K6" - } - } - }, - "stargate-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-optimism", - "query-id": "stargate-optimism" - }, - "decentralized-network": { - "slug": "stargate-optimism", - "query-id": "7NAF7ZtNtJiXkfCFkTSAyFbfLLfUFa55UgK5woxPxZ46" - } - } - }, - "stargate-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-fantom", - "query-id": "stargate-fantom" - }, - "decentralized-network": { - "slug": "stargate-fantom", - "query-id": "2pG7kUAfPhtGyy1StFLhFu8pwTR5kDsCJN9KZjWn9Lnk" - } - } - }, - "stargate-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "files": { - "template": "stargate.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stargate-base", - "query-id": "stargate-base" - }, - "decentralized-network": { - "slug": "stargate-base", - "query-id": "4amk8rvTHgxSobsFKsr5jheHsDzLcwyqc8vHhNC1xhGt" - } - } - } - } - }, - "orbit": { - "schema": "bridge", - "base": "orbit", - "protocol": "orbit", - "project": "orbit", - "deployments": { - "orbit-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-ethereum", - "query-id": "orbit-ethereum" - }, - "decentralized-network": { - "slug": "orbit-ethereum", - "query-id": "DpGRvQhDPH3EXRuCjMM7RednJz25Ucm2oYp56Vb4k74F" - } - } - }, - "orbit-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-bsc", - "query-id": "orbit-bsc" - }, - "decentralized-network": { - "slug": "orbit-bsc", - "query-id": "8XNHKT5X8DgsdL6hKe6tK5FnkBRR4TtS2YH23db5D6VH" - } - } - }, - "orbit-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-celo", - "query-id": "orbit-celo" - }, - "decentralized-network": { - "slug": "orbit-celo", - "query-id": "DdGECh8tM63FEsT96AjxfhxkE5wTBeBPdnh3qkUYpcvY" - } - } - }, - "orbit-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "orbit.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "orbit-polygon", - "query-id": "orbit-polygon" - }, - "decentralized-network": { - "slug": "orbit-polygon", - "query-id": "FQVKZkxeeqdnGU4a1Qwm5SVu8FxtQVPshzpLBAhMH1V9" - } - } - } - } - }, - "polygon-bridge": { - "schema": "bridge", - "base": "polygon-bridge", - "protocol": "polygon-bridge", - "project": "polygon", - "deployments": { - "polygon-bridge-ethereum": { - "network": "ethereum", - "status": "dev", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "polygon-bridge-ethereum", - "query-id": "polygon-bridge-ethereum" - } - }, - "files": { - "template": "polygon.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "polygon-bridge-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "polygon-bridge-polygon", - "query-id": "polygon-bridge-polygon" - } - }, - "files": { - "template": "polygon.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "across-v2": { - "schema": "bridge", - "base": "across-v2", - "protocol": "across-v2", - "project": "across", - "deployments": { - "across-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-ethereum", - "query-id": "across-v2-ethereum" - }, - "decentralized-network": { - "slug": "across-v2-ethereum", - "query-id": "34kdiaZVpPsStQdsh5xFhrZdsZvZYJGfhJ7SVGWY2Y8g" - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-optimism", - "query-id": "across-v2-optimism" - }, - "decentralized-network": { - "slug": "across-v2-optimism", - "query-id": "GY9s64KVsRkW4Q8pCBKQePyDdcUV1TV1ArWFzvMv2qVb" - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-boba": { - "network": "boba", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-boba", - "query-id": "across-v2-boba" - }, - "decentralized-network": { - "slug": "across-v2-boba", - "query-id": "4SbLL5ZptwGU9Eor3SaoV3UZw12KPiZRKkwBEbKDenjP" - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-arbitrum", - "query-id": "across-v2-arbitrum" - }, - "decentralized-network": { - "slug": "across-v2-arbitrum", - "query-id": "3rg6ZtwNUMpBrM1uSUtNqcbc6tGfyY2WLheDGSc5qMzX" - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "across-v2-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "across-v2-polygon", - "query-id": "across-v2-polygon" - }, - "decentralized-network": { - "slug": "across-v2-polygon", - "query-id": "8ywQVEAGn6wAGdYa4ofniy52CMsYMHyK6CbBrL4ZE7ks" - } - }, - "files": { - "template": "across.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "hop-protocol": { - "schema": "bridge", - "base": "hop-protocol", - "protocol": "hop-protocol", - "project": "hop", - "deployments": { - "hop-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-ethereum", - "query-id": "hop-protocol-ethereum" - }, - "decentralized-network": { - "slug": "hop-protocol-ethereum", - "query-id": "7YKiuzrmUxTpSN5DddDVFm9FDjQ5387dnEivHHdX9pAc" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-arbitrum", - "query-id": "hop-protocol-arbitrum" - }, - "decentralized-network": { - "slug": "hop-protocol-arbitrum", - "query-id": "4xY1CAbwQA7oq3a78CX8mgKFvMoZzPsv21A92Hm7rEvv" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-optimism", - "query-id": "hop-protocol-optimism" - }, - "decentralized-network": { - "slug": "hop-protocol-optimism", - "query-id": "KoMGmd2d1VMukusmf98SdWCSKH5ZP5UEUDHKrKpY74D" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-xdai": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-xdai", - "query-id": "hop-protocol-xdai" - }, - "decentralized-network": { - "slug": "hop-protocol-gnosis", - "query-id": "DA1WTRx4pbGQdTm1YqRz3MCLiap4cdgK62Q6Bjy99m1y" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-polygon", - "query-id": "hop-protocol-polygon" - }, - "decentralized-network": { - "slug": "hop-protocol-polygon", - "query-id": "iLsL5mqiwjQhdGs3XfYBdLhaKdE4yDR73iTg2PSRr1E" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "hop-protocol-polygon-zkevm": { - "network": "polygon-zkevm", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.3", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "hop-protocol-polygon-zkevm", - "query-id": "hop-protocol-polygon-zkevm" - }, - "decentralized-network": { - "slug": "hop-protocol-polygon-zkevm", - "query-id": "EkkvCmBiEPiJ5LkaSPxpuAmMouSUN5FZrdrKu7nBY5p9" - } - }, - "files": { - "template": "hop-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "portal": { - "schema": "bridge", - "base": "portal", - "protocol": "portal", - "project": "portal", - "deployments": { - "portal-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-ethereum", - "query-id": "portal-ethereum" - }, - "decentralized-network": { - "slug": "portal-ethereum", - "query-id": "HxduZZ9fy1shXbo7EAG9W73geBAxzKjVNXgMkxeTJkpX" - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-fantom", - "query-id": "portal-fantom" - }, - "decentralized-network": { - "slug": "portal-fantom", - "query-id": "3wKUbySRqqBe6bXGWm3aDr9g8fuUoxKMqcdhTGwBGyjG" - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-bsc", - "query-id": "portal-bsc" - }, - "decentralized-network": { - "slug": "portal-bsc", - "query-id": "FCd8kxMGFkk3AGEHeYRngeHvBsuTpQo7XBLu6XoyDctr" - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-polygon", - "query-id": "portal-polygon" - }, - "decentralized-network": { - "slug": "portal-polygon", - "query-id": "4V9sMa8P8vKAccUtR8jP28mBfvtUMip4tVvMBSDC7h3V" - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "portal-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "portal-avalanche", - "query-id": "portal-avalanche" - }, - "decentralized-network": { - "slug": "portal-avalanche", - "query-id": "BV3hShBwZkZM7RL9XPGqZ9JyJcE2vrWqXwFQYTVquH3Z" - } - }, - "files": { - "template": "portal.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "optimism-bridge-v2": { - "schema": "bridge", - "base": "optimism-bridge-v2", - "protocol": "optimism-bridge-v2", - "project": "optimism", - "deployments": { - "optimism-bridge-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "optimism-bridge-v2-ethereum", - "query-id": "optimism-bridge-v2-ethereum" - }, - "decentralized-network": { - "slug": "optimism-bridge-v2-ethereum", - "query-id": "DCKLUdmvmaX4eNSAouXjxt8yShp28dFKGD763Tb2KibH" - } - }, - "files": { - "template": "optimism.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true - } - }, - "optimism-bridge-v2-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.1.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "optimism-bridge-v2-optimism", - "query-id": "optimism-bridge-v2-optimism" - }, - "decentralized-network": { - "slug": "optimism-bridge-v2-optimism", - "query-id": "4aUWDFLz4sVYKZDw4JDJLk8vjify1Rqij7UGFozNxA8k" - } - }, - "files": { - "template": "optimism.bridge.template.yaml" - }, - "options": { - "prepare:yaml": true - } - } - } - }, - "cbridge": { - "schema": "bridge", - "base": "cbridge", - "protocol": "cbridge", - "project": "celer-network", - "deployments": { - "cbridge-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-ethereum", - "query-id": "cbridge-ethereum" - }, - "decentralized-network": { - "slug": "cbridge-ethereum", - "query-id": "3C9qpsGFHrAnXkmPoeRbMjH9gyTuQskzB29VrrV8NbAN" - } - } - }, - "cbridge-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-arbitrum", - "query-id": "cbridge-arbitrum" - }, - "decentralized-network": { - "slug": "cbridge-arbitrum", - "query-id": "FGucK6FiGDyjwA1VDymrCQXgSTdZH7sCrP8HbnwVFatY" - } - } - }, - "cbridge-aurora": { - "network": "aurora", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-aurora", - "query-id": "cbridge-aurora" - }, - "decentralized-network": { - "slug": "cbridge-aurora", - "query-id": "5uW7hwPPaHVEY7qqx5S9CV156YE7Dvjt2AAPiJ4mn12h" - } - } - }, - "cbridge-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-avalanche", - "query-id": "cbridge-avalanche" - }, - "decentralized-network": { - "slug": "cbridge-avalanche", - "query-id": "2usVF8JKwgVesvXVkLj2KG6ourAPEVG7GV6j1MtTwhVa" - } - } - }, - "cbridge-boba": { - "network": "boba", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-boba", - "query-id": "cbridge-boba" - }, - "decentralized-network": { - "slug": "cbridge-boba", - "query-id": "AZd3VzvnYoxBKAWjbZB4snZgow9SnyTTxaxad3YPxbvh" - } - } - }, - "cbridge-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-bsc", - "query-id": "cbridge-bsc" - }, - "decentralized-network": { - "slug": "cbridge-bsc", - "query-id": "9ryiazBA4UJu1g2rbunQ42wqxvhdZP648p2jiBMjcoZc" - } - } - }, - "cbridge-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-celo", - "query-id": "cbridge-celo" - }, - "decentralized-network": { - "slug": "cbridge-celo", - "query-id": "Exzi1255D9QkAzLhcS1qrVXVDMdkQvQ6wxRDjpi9uQz6" - } - } - }, - "cbridge-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-fantom", - "query-id": "cbridge-fantom" - }, - "decentralized-network": { - "slug": "cbridge-fantom", - "query-id": "Ce9MWULyvFUXRqN7LgehQVy3XBGhxk3qtFJhgznHYY3x" - } - } - }, - "cbridge-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-gnosis", - "query-id": "cbridge-gnosis" - }, - "decentralized-network": { - "slug": "cbridge-gnosis", - "query-id": "FdoU8yttG4HUfoYSsP2Qit1UvvVCaZeUDPnMB4nzguNU" - } - } - }, - "cbridge-harmony": { - "network": "harmony", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-harmony", - "query-id": "cbridge-harmony" - }, - "decentralized-network": { - "slug": "cbridge-harmony", - "query-id": "8gXopvmmYABDCCrWuafAkYuRB4bpJ7XcbgGmN8AcMJDg" - } - } - }, - "cbridge-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-moonbeam", - "query-id": "cbridge-moonbeam" - }, - "decentralized-network": { - "slug": "cbridge-moonbeam", - "query-id": "6F1ia9A6Vmanbzk2T3EAAev5Q9TKyF1oxu6JiUKbPdnL" - } - } - }, - "cbridge-moonriver": { - "network": "moonriver", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-moonriver", - "query-id": "cbridge-moonriver" - }, - "decentralized-network": { - "slug": "cbridge-moonriver", - "query-id": "FuFD3UqnCWhQoarNsvdY8AW5exnKXxiizJRXVakvniHX" - } - } - }, - "cbridge-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-optimism", - "query-id": "cbridge-optimism" - }, - "decentralized-network": { - "slug": "cbridge-optimism", - "query-id": "GEy4r8C2cMku1TTfjzC751teQZ4dvVxXiW1F6K4fue2K" - } - } - }, - "cbridge-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cbridge.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cbridge-polygon", - "query-id": "cbridge-polygon" - }, - "decentralized-network": { - "slug": "cbridge-polygon", - "query-id": "8rR3yC5ZPMoUauudfQC4iLJxqf5nCRjZRmYne8tEGrV9" - } - } - } - } - }, - "gmx": { - "schema": "derivatives-perpfutures", - "base": "gmx-forks", - "protocol": "gmx", - "project": "gmx", - "deployments": { - "gmx-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gmx-arbitrum", - "query-id": "gmx-arbitrum" - }, - "decentralized-network": { - "slug": "gmx-arbitrum", - "query-id": "DiR5cWwB3pwXXQWWdus7fDLR2mnFRQLiBFsVmHAH9VAs" - } - }, - "files": { - "template": "gmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "gmx-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.2.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gmx-avalanche", - "query-id": "gmx-avalanche" - }, - "decentralized-network": { - "slug": "gmx-avalanche", - "query-id": "6pXgnXcL6mkXBjKX7NyHN7tCudv2JGFnXZ8wf8WbjPXv" - } - }, - "files": { - "template": "gmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "opyn-gamma": { - "schema": "derivatives-options", - "base": "opyn-gamma", - "protocol": "opyn-gamma", - "project": "opyn", - "deployments": { - "opyn-gamma-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-ethereum", - "query-id": "opyn-gamma-ethereum" - }, - "decentralized-network": { - "slug": "opyn-gamma-ethereum", - "query-id": "3zUv74ekxpiy92MQ2MwemR8fJhjvgyBFaGzQLkYHmaUy" - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-avalanche", - "query-id": "opyn-gamma-avalanche" - }, - "decentralized-network": { - "slug": "opyn-gamma-avalanche", - "query-id": "3eaTJDJ1Y867jkDMY1iEJJLRZTSREfGZjusgmucptWJE" - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-arbitrum", - "query-id": "opyn-gamma-arbitrum" - }, - "decentralized-network": { - "slug": "opyn-gamma-arbitrum", - "query-id": "BC766cXkcBxAwQ6LAYnQytdHJLpJX1C1bbrMFhLCHx7C" - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "opyn-gamma-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.2", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "opyn-gamma-polygon", - "query-id": "opyn-gamma-polygon" - }, - "decentralized-network": { - "slug": "opyn-gamma-polygon", - "query-id": "6WbUbvCBtjhKyf9ddZEfVReHNHHunzspGBp3hFsy1c8P" - } - }, - "files": { - "template": "opyn.gamma.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "dopex": { - "schema": "derivatives-options", - "base": "dopex", - "protocol": "dopex", - "project": "dopex", - "deployments": { - "dopex-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "dopex-arbitrum", - "query-id": "dopex-arbitrum" - }, - "decentralized-network": { - "slug": "dopex-arbitrum", - "query-id": "6C7okGPnmQw4eahgvkjzKGqHyXsZBLSWz7BBEyyfe6vB" - } - }, - "files": { - "template": "dopex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - }, - "dopex-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "dopex-polygon", - "query-id": "dopex-polygon" - }, - "decentralized-network": { - "slug": "dopex-polygon", - "query-id": "nTecf2j4MGgqgJrKTGmvVyWn169py1H9fgvaiN29MVu" - } - }, - "files": { - "template": "dopex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "gains-trade": { - "schema": "derivatives-perpfutures", - "base": "gains-trade", - "protocol": "gains-trade", - "project": "gains-network", - "deployments": { - "gains-trade-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gains-trade-arbitrum", - "query-id": "gains-trade-arbitrum" - }, - "decentralized-network": { - "slug": "gains-trade-arbitrum", - "query-id": "DuPBYBj3nfP3sFiHwkRfTATmA4iSqoPvxBaRXWiwpELk" - } - }, - "files": { - "template": "gains.trade.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "gains-trade-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "gains-trade-polygon", - "query-id": "gains-trade-polygon" - }, - "decentralized-network": { - "slug": "gains-trade-polygon", - "query-id": "4d1zcsK9f1T2wzZTGZHaLKswbhmKTRWu1yeyX94htoMW" - } - }, - "files": { - "template": "gains.trade.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "vela-exchange": { - "schema": "derivatives-perpfutures", - "base": "vela-exchange", - "protocol": "vela-exchange", - "project": "vela-exchange", - "deployments": { - "vela-exchange-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "vela-exchange-arbitrum", - "query-id": "vela-exchange-arbitrum" - } - }, - "files": { - "template": "vela.exchange.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "synfutures-v2": { - "schema": "derivatives-perpfutures", - "base": "synfutures-v2", - "protocol": "synfutures-v2", - "project": "synfutures-v2", - "deployments": { - "synfutures-v2-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "synfutures-v2-polygon", - "query-id": "synfutures-v2-polygon" - } - }, - "files": { - "template": "synfutures.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - } - } - } - }, - "mux-protocol": { - "schema": "derivatives-perpfutures", - "base": "mux-protocol", - "protocol": "mux-protocol", - "project": "mux-protocol", - "deployments": { - "mux-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-arbitrum", - "query-id": "mux-protocol-arbitrum" - }, - "decentralized-network": { - "slug": "mux-protocol-arbitrum", - "query-id": "AMh1u4wCbz8Jybs4Nf7uGBdU9dz2C8mJkH1Aocz6HXUf" - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-avalanche", - "query-id": "mux-protocol-avalanche" - }, - "decentralized-network": { - "slug": "mux-protocol-avalanche", - "query-id": "97XbzzGmRpUvHwdZyArbyrZHFnmWU15tC381epA1Fp7H" - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-bsc", - "query-id": "mux-protocol-bsc" - }, - "decentralized-network": { - "slug": "mux-protocol-bsc", - "query-id": "3zRKcHbGqvMe6BG6fiLiaKx3y41ytzjw4jetbh5Q2fx1" - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-fantom", - "query-id": "mux-protocol-fantom" - }, - "decentralized-network": { - "slug": "mux-protocol-fantom", - "query-id": "46iwTwh5F6yAuKHF9iwFccu9wsYEaXwQCwnj2EjcEgBk" - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "mux-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "mux-protocol-optimism", - "query-id": "mux-protocol-optimism" - }, - "decentralized-network": { - "slug": "mux-protocol-optimism", - "query-id": "7hUM4US9DPz6JqLD6ySqwFmLq4XiAF7cEZLmEesQnYgR" - } - }, - "files": { - "template": "mux.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "kwenta": { - "schema": "derivatives-perpfutures", - "base": "kwenta", - "protocol": "kwenta", - "project": "kwenta", - "deployments": { - "kwenta-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "kwenta-optimism", - "query-id": "kwenta-optimism" - }, - "decentralized-network": { - "slug": "kwenta-optimism", - "query-id": "5sbJJTTJQQ4kYuVYNBVw9sX8C5juRpVJNLHg7uFugw2e" - } - }, - "files": { - "template": "kwenta.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "level-finance": { - "schema": "derivatives-perpfutures", - "base": "level-finance", - "protocol": "level-finance", - "project": "level-finance", - "deployments": { - "level-finance-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "level-finance-bsc", - "query-id": "level-finance-bsc" - }, - "decentralized-network": { - "slug": "level-finance-bsc", - "query-id": "97TRgysfrSPH7sumNXSasdjhKBnDwig2JKE7PwB4W2J8" - } - }, - "files": { - "template": "level.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - }, - "level-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.4", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "services": { - "hosted-service": { - "slug": "level-finance-arbitrum", - "query-id": "level-finance-arbitrum" - }, - "decentralized-network": { - "slug": "level-finance-arbitrum", - "query-id": "9KPc6WMUXg6mqQ9KbCeosJrgmsZyH97vpFPKwJHkVkui" - } - }, - "files": { - "template": "level.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - } - } - } - }, - "axelar": { - "schema": "bridge", - "base": "axelar", - "protocol": "axelar", - "project": "axelar", - "deployments": { - "axelar-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-ethereum", - "query-id": "axelar-ethereum" - }, - "decentralized-network": { - "slug": "axelar-ethereum", - "query-id": "8u1rrGZY3gjXAAVJidygbpKeHzitrMSQV1RoLAkyd1AA" - } - } - }, - "axelar-arbitrum": { - "network": "arbitrum", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-arbitrum", - "query-id": "axelar-arbitrum" - } - } - }, - "axelar-avalanche": { - "network": "avalanche", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.2", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-avalanche", - "query-id": "axelar-avalanche" - } - } - }, - "axelar-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-bsc", - "query-id": "axelar-bsc" - } - } - }, - "axelar-celo": { - "network": "celo", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-celo", - "query-id": "axelar-celo" - } - } - }, - "axelar-fantom": { - "network": "fantom", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-fantom", - "query-id": "axelar-fantom" - } - } - }, - "axelar-moonbeam": { - "network": "moonbeam", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-moonbeam", - "query-id": "axelar-moonbeam" - } - } - }, - "axelar-polygon": { - "network": "polygon", - "status": "dev", - "versions": { - "schema": "1.2.0", - "subgraph": "1.0.1", - "methodology": "1.0.1" - }, - "files": { - "template": "axelar.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "axelar-polygon", - "query-id": "axelar-polygon" - } - } - } - } - }, - "camelot-v2": { - "schema": "dex-amm", - "base": "uniswap-forks", - "protocol": "camelot-v2", - "project": "camelot", - "deployments": { - "camelot-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "camelot.v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "camelot-v2-arbitrum", - "query-id": "camelot-v2-arbitrum" - }, - "decentralized-network": { - "slug": "camelot-v2-arbitrum", - "query-id": "E6J42xXvRQGsqcMEoWRkdeJjUTsWdcHL8khuFMY6CDAM" - } - } - } - } - }, - "thena-fusion": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "thena-fusion", - "project": "thena", - "deployments": { - "thena-fusion-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "3.0.4", - "subgraph": "1.0.1", - "methodology": "1.0.0" - }, - "files": { - "template": "thena.fusion.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "thena-fusion-bsc", - "query-id": "thena-fusion-bsc" - } - } - } - } - }, - "thena-v1": { - "schema": "dex-amm", - "base": "solidly-forks", - "protocol": "thena-v1", - "project": "thena", - "deployments": { - "thena-v1-bsc": { - "network": "bsc", - "status": "dev", - "versions": { - "schema": "1.3.2", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "thena.v1.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "thena-v1-bsc", - "query-id": "thena-v1-bsc" - } - } - } - } - }, - "eigenlayer": { - "schema": "generic", - "base": "eigenlayer", - "protocol": "eigenlayer", - "project": "eigenlayer", - "deployments": { - "eigenlayer-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.3.0", - "methodology": "1.0.0" - }, - "files": { - "template": "eigenlayer.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "eigenlayer-ethereum", - "query-id": "eigenlayer-ethereum" - }, - "decentralized-network": { - "slug": "eigenlayer-ethereum", - "query-id": "68g9WSC4QTUJmMpuSbgLNENrcYha4mPmXhWGCoupM7kB" - } - } - } - } - }, - "friend-tech": { - "schema": "generic", - "base": "friend-tech", - "protocol": "friend-tech", - "project": "friend-tech", - "deployments": { - "friend-tech-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.1.0", - "methodology": "1.0.0" - }, - "files": { - "template": "friend.tech.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "friend-tech-base", - "query-id": "friend-tech-base" - }, - "decentralized-network": { - "slug": "friend-tech-base", - "query-id": "8fjDwMF5JPXYEg3tU45ttTsnp3mdTQd5efhkHhHGHCKj" - } - } - } - } - }, - "stader": { - "schema": "generic", - "base": "stader", - "protocol": "stader", - "project": "stader", - "deployments": { - "stader-ethereum": { - "network": "mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stader.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stader-ethereum", - "query-id": "stader-ethereum" - }, - "decentralized-network": { - "slug": "stader-ethereum", - "query-id": "2RLAUqUMvGGFygtuJfmTyeo62zFSJswDZSRMTcu28fSa" - } - } - } - } - }, - "etherfi": { - "schema": "generic", - "base": "etherfi", - "protocol": "etherfi", - "project": "etherfi", - "deployments": { - "etherfi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "etherfi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "etherfi-ethereum", - "query-id": "etherfi-ethereum" - }, - "decentralized-network": { - "slug": "etherfi-ethereum", - "query-id": "GPwCNqJ5aroTtkk48Y57pBjFHVkeYmMzmBpE1a7WF7Hc" - } - } - } - } - }, - "frax-ether-staking": { - "schema": "generic", - "base": "frax-ether-staking", - "protocol": "frax-ether-staking", - "project": "frax-ether-staking", - "deployments": { - "frax-ether-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-ethereum", - "query-id": "frax-ether-staking-ethereum" - }, - "decentralized-network": { - "slug": "frax-ether-staking-ethereum", - "query-id": "FeKHrGeNxVctN6EeAhba2Kv78xNxuEhbRKNECLfVH8z2" - } - } - }, - "frax-ether-staking-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-arbitrum", - "query-id": "frax-ether-staking-arbitrum" - }, - "decentralized-network": { - "slug": "frax-ether-staking-arbitrum", - "query-id": "FSafXUhkuwqARZNNe82isspkjQJcPK2PrSjQLvNXuakU" - } - } - }, - "frax-ether-staking-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-bsc", - "query-id": "frax-ether-staking-bsc" - }, - "decentralized-network": { - "slug": "frax-ether-staking-bsc", - "query-id": "A113zHKpiXzugLyKDVknAxjQ6qFSPQwfiGK7rjiuqbcq" - } - } - }, - "frax-ether-staking-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-fantom", - "query-id": "frax-ether-staking-fantom" - }, - "decentralized-network": { - "slug": "frax-ether-staking-fantom", - "query-id": "Ba52AgUJfCmWQpBJEwRvygC45iGr9uqnrehpymN2Xmx4" - } - } - }, - "frax-ether-staking-moonbeam": { - "network": "moonbeam", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-moonbeam", - "query-id": "frax-ether-staking-moonbeam" - }, - "decentralized-network": { - "slug": "frax-ether-staking-moonbeam", - "query-id": "FhaAErF9146bnqJsQD34zPHNC11quKTuk9HBA7RdGrjz" - } - } - }, - "frax-ether-staking-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-optimism", - "query-id": "frax-ether-staking-optimism" - }, - "decentralized-network": { - "slug": "frax-ether-staking-optimism", - "query-id": "G9nDvQw6S7LkzNxj7oGFZUsahe3ebpAtEww716kWkfZd" - } - } - }, - "frax-ether-staking-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "frax.ether.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "frax-ether-staking-polygon", - "query-id": "frax-ether-staking-polygon" - }, - "decentralized-network": { - "slug": "frax-ether-staking-polygon", - "query-id": "FMkrjPgSyGm2UBFrMqpJVwWgGHLek8U39W1M4R9TfP1T" - } - } - } - } - }, - "mantle-staked-eth": { - "schema": "generic", - "base": "mantle-staked-eth", - "protocol": "mantle-staked-eth", - "project": "mantle-staked-eth", - "deployments": { - "mantle-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mantle-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mantle-staked-eth-ethereum", - "query-id": "mantle-staked-eth-ethereum" - }, - "decentralized-network": { - "slug": "mantle-staked-eth-ethereum", - "query-id": "VVKZagj4XUyamqXysVBniarN8HMz87DnwkTChuXH18Z" - } - } - } - } - }, - "swell-liquid-staking": { - "schema": "generic", - "base": "swell-liquid-staking", - "protocol": "swell-liquid-staking", - "project": "swell-liquid-staking", - "deployments": { - "swell-liquid-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "swell.liquid.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "swell-liquid-staking-ethereum", - "query-id": "swell-liquid-staking-ethereum" - }, - "decentralized-network": { - "slug": "swell-liquid-staking-ethereum", - "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S" - } - } - } - } - }, - "puffer-finance": { - "schema": "generic", - "base": "puffer-finance", - "protocol": "puffer-finance", - "project": "puffer-finance", - "deployments": { - "puffer-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "puffer.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "puffer-finance-ethereum", - "query-id": "puffer-finance-ethereum" - }, - "decentralized-network": { - "slug": "puffer-finance-ethereum", - "query-id": "F8nUFWAC9vE1gHcUj5ZHXSt53eXo9vRqf2SuCcYVs93S" - } - } - } - } - }, - "karak": { - "schema": "generic", - "base": "karak", - "protocol": "karak", - "project": "karak", - "deployments": { - "karak-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-ethereum", - "query-id": "karak-ethereum" - }, - "decentralized-network": { - "slug": "karak-ethereum", - "query-id": "2vzPTkDT2DddrRoXtg25AGK55nviKXeJiG21Cu56nurg" - } - } - }, - "karak-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-arbitrum", - "query-id": "karak-arbitrum" - }, - "decentralized-network": { - "slug": "karak-arbitrum", - "query-id": "7kCkjx6GK67WZrVo54UcLWZ7kBx65TogBW1CD316XZgn" - } - } - }, - "karak-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "karak.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "karak-bsc", - "query-id": "karak-bsc" - }, - "decentralized-network": { - "slug": "karak-bsc", - "query-id": "8YGDQQgExT7zLJioLRQdcSQko1qgiCjfwVg7TBV6eR7W" - } - } - } - } - }, - "renzo": { - "schema": "generic", - "base": "renzo", - "protocol": "renzo", - "project": "renzo", - "deployments": { - "renzo-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-ethereum", - "query-id": "renzo-ethereum" - }, - "decentralized-network": { - "slug": "renzo-ethereum", - "query-id": "91jPrEeA5BPzDHmjKjVwmgDvGEQpAwh5yusTbHCQiQbM" - } - } - }, - "renzo-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-arbitrum", - "query-id": "renzo-arbitrum" - }, - "decentralized-network": { - "slug": "renzo-arbitrum", - "query-id": "5P79EkkSDxiXxWgiYcpsvML7Q3MSu64sHi8LF2xVggQz" - } - } - }, - "renzo-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-base", - "query-id": "renzo-base" - }, - "decentralized-network": { - "slug": "renzo-base", - "query-id": "Atj9RDj7hzmUd6a3PTzpPCpjJPzqMbvPLdxMfF2BFy5B" - } - } - }, - "renzo-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-blast", - "query-id": "renzo-blast" - }, - "decentralized-network": { - "slug": "renzo-blast", - "query-id": "HXWd4suSQ4TztRznBCi1dWdBKrHvkDPZBA2hy5nng1eL" - } - } - }, - "renzo-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-bsc", - "query-id": "renzo-bsc" - }, - "decentralized-network": { - "slug": "renzo-bsc", - "query-id": "JD3KpTX2bdwVMtZvX3HmPKSGQsVYP8FRkUJs51vZBJPR" - } - } - }, - "renzo-mode": { - "network": "mode-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "renzo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "renzo-mode", - "query-id": "renzo-mode" - }, - "decentralized-network": { - "slug": "renzo-mode", - "query-id": "AUcw3uDfWmRQDHKgnQ6C7P2139scRwvzMfrJovSGbACW" - } - } - } - } - }, - "ring-few": { - "schema": "generic", - "base": "ring-few", - "protocol": "ring-few", - "project": "ring-few", - "deployments": { - "ring-few-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ring.few.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "ring-few-blast", - "query-id": "ring-few-blast" - }, - "decentralized-network": { - "slug": "ring-few-blast", - "query-id": "FfTNTmfsJAz1gUqnc3RxGEqyaeMTRdaS4C5bYHAHbzsC" - } - } - } - } - }, - "cygnus-finance": { - "schema": "generic", - "base": "cygnus-finance", - "protocol": "cygnus-finance", - "project": "cygnus-finance", - "deployments": { - "cygnus-finance-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "cygnus.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "cygnus-finance-base", - "query-id": "cygnus-finance-base" - }, - "decentralized-network": { - "slug": "cygnus-finance-base", - "query-id": "ELqNv3KbLggc6kN6uoeKvrbfBpbkQbAorZo3FABZJb6A" - } - } - } - } - }, - "symbiotic": { - "schema": "generic", - "base": "symbiotic", - "protocol": "symbiotic", - "project": "symbiotic", - "deployments": { - "symbiotic-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "symbiotic.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "symbiotic-ethereum", - "query-id": "symbiotic-ethereum" - }, - "decentralized-network": { - "slug": "symbiotic-ethereum", - "query-id": "2Bp6ibq6y7LLUoZRi4AfPmDNLrMcM6pKJCbusMPCAvzr" - } - } - } - } - }, - "hyperlock-finance": { - "schema": "generic", - "base": "hyperlock-finance", - "protocol": "hyperlock-finance", - "project": "hyperlock-finance", - "deployments": { - "hyperlock-finance-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hyperlock.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "hyperlock-finance-blast", - "query-id": "hyperlock-finance-blast" - }, - "decentralized-network": { - "slug": "hyperlock-finance-blast", - "query-id": "tXk1UdCXjJkyvBRXvc5KvqGGZVSpdsdPoYrTAemT1kV" - } - } - } - } - }, - "amphor": { - "schema": "generic", - "base": "amphor", - "protocol": "amphor", - "project": "amphor", - "deployments": { - "amphor-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "amphor.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "amphor-ethereum", - "query-id": "amphor-ethereum" - }, - "decentralized-network": { - "slug": "amphor-ethereum", - "query-id": "RkDsVce2tRzGWbNAeZJrRy7nLAmMWtxQ6ixerhhw581" - } - } - } - } - }, - "zircuit-staking": { - "schema": "generic", - "base": "zircuit-staking", - "protocol": "zircuit-staking", - "project": "zircuit-staking", - "deployments": { - "zircuit-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "zircuit.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "zircuit-staking-ethereum", - "query-id": "zircuit-staking-ethereum" - }, - "decentralized-network": { - "slug": "zircuit-staking-ethereum", - "query-id": "AFZyi8H8ASMA3JzBf4d2eG3Ajxtx7mbD1H5G4Bpjn4ZD" - } - } - } - } - }, - "lybra-finance": { - "schema": "generic", - "base": "lybra-finance", - "protocol": "lybra-finance", - "project": "lybra-finance", - "deployments": { - "lybra-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "lybra.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "lybra-finance-ethereum", - "query-id": "lybra-finance-ethereum" - }, - "decentralized-network": { - "slug": "lybra-finance-ethereum", - "query-id": "2fNZY1J6FzuoHnx8ZTuhiEiM5AhzU3JiC7vp4UqaktSj" - } - } - } - } - }, - "stream-finance": { - "schema": "generic", - "base": "stream-finance", - "protocol": "stream-finance", - "project": "stream-finance", - "deployments": { - "stream-finance-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stream.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "stream-finance-ethereum", - "query-id": "stream-finance-ethereum" - }, - "decentralized-network": { - "slug": "stream-finance-ethereum", - "query-id": "7wzhzJbytdHNsE12B3ascjZKhP8LvoVtuhXqZ97gz2Dr" - } - } - } - } - }, - "umami-finance": { - "schema": "generic", - "base": "umami-finance", - "protocol": "umami-finance", - "project": "umami-finance", - "deployments": { - "umami-finance-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "umami.finance.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "umami-finance-arbitrum", - "query-id": "umami-finance-arbitrum" - }, - "decentralized-network": { - "slug": "umami-finance-arbitrum", - "query-id": "3nfuRKwAnT5xEBtKT9cKhdCp517TDvEqhgY1eDKAtuZi" - } - } - } - } - }, - "kelp-dao": { - "schema": "generic", - "base": "kelp-dao", - "protocol": "kelp-dao", - "project": "kelp-dao", - "deployments": { - "kelp-dao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kelp.dao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "kelp-dao-ethereum", - "query-id": "kelp-dao-ethereum" - }, - "decentralized-network": { - "slug": "kelp-dao-ethereum", - "query-id": "BKAuuey1mAQimbeKHWHQTLkFHeSn4Z9cfSJcHBaYhrV2" - } - } - } - } - }, - "chainlink-staking": { - "schema": "generic", - "base": "chainlink-staking", - "protocol": "chainlink-staking", - "project": "chainlink-staking", - "deployments": { - "chainlink-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "chainlink.staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "chainlink-staking-ethereum", - "query-id": "chainlink-staking-ethereum" - }, - "decentralized-network": { - "slug": "chainlink-staking-ethereum", - "query-id": "CEvNvcykaphaHuipRNsP5fd2LE75QLsFtLnofTcf6JZX" - } - } - } - } - }, - "liquid-collective": { - "schema": "generic", - "base": "liquid-collective", - "protocol": "liquid-collective", - "project": "liquid-collective", - "deployments": { - "liquid-collective-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "liquid.collective.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "liquid-collective-ethereum", - "query-id": "liquid-collective-ethereum" - }, - "decentralized-network": { - "slug": "liquid-collective-ethereum", - "query-id": "4kRPyZuhGgAcjYuVgbR79qm5WQ3TvXeaqVHRHx6MV5U7" - } - } - } - } - }, - "binance-staked-eth": { - "schema": "generic", - "base": "binance-staked-eth", - "protocol": "binance-staked-eth", - "project": "binance-staked-eth", - "deployments": { - "binance-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "binance-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "binance-staked-eth-ethereum", - "query-id": "binance-staked-eth-ethereum" - }, - "decentralized-network": { - "slug": "binance-staked-eth-ethereum", - "query-id": "EdxuQc4V8zGV9f34KZJhUNmBrfdPWMmbjVTzjUsyJZgd" - } - } - }, - "binance-staked-eth-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "binance-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "binance-staked-eth-bsc", - "query-id": "binance-staked-eth-bsc" - }, - "decentralized-network": { - "slug": "binance-staked-eth-bsc", - "query-id": "Hfb8J7aNfT8cjgDTYMjWt5Mb7yRtS1CJC4UQeWEfWNsU" - } - } - } - } - }, - "concentrator": { - "schema": "generic", - "base": "concentrator", - "protocol": "concentrator", - "project": "concentrator", - "deployments": { - "concentrator-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "concentrator.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "concentrator-ethereum", - "query-id": "concentrator-ethereum" - }, - "decentralized-network": { - "slug": "concentrator-ethereum", - "query-id": "FigcbmZouBnKctj6zqsvp1LhHiV1pZdVQ6ABrA27w3Lk" - } - } - } - } - }, - "vaultka": { - "schema": "generic", - "base": "vaultka", - "protocol": "vaultka", - "project": "vaultka", - "deployments": { - "vaultka-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "vaultka.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "vaultka-arbitrum", - "query-id": "vaultka-arbitrum" - }, - "decentralized-network": { - "slug": "vaultka-arbitrum", - "query-id": "GerYgkkJgdtE5LoxqiqXrxJzjDrLWixEd7D3aqfDQBxe" - } - } - } - } - }, - "benqi-staked-avax": { - "schema": "generic", - "base": "benqi-staked-avax", - "protocol": "benqi-staked-avax", - "project": "benqi-staked-avax", - "deployments": { - "benqi-staked-avax-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "benqi-staked-avax.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "benqi-staked-avax-avalanche", - "query-id": "benqi-staked-avax-avalanche" - }, - "decentralized-network": { - "slug": "benqi-staked-avax-avalanche", - "query-id": "6vSK9N1NGT65mRgMtNfoxwPkaMJoJBQJA2Z5G1fKEKCu" - } - } - } - } - }, - "stakestone": { - "schema": "generic", - "base": "stakestone", - "protocol": "stakestone", - "project": "stakestone", - "deployments": { - "stakestone-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "2.1.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakestone.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakestone-ethereum", - "query-id": "stakestone-ethereum" - }, - "decentralized-network": { - "slug": "stakestone-ethereum", - "query-id": "Dks14vz78EJf4i5SomNUBcpoLRbFKrAD8imtMdUC37bg" - } - } - } - } - }, - "llama-airforce": { - "schema": "generic", - "base": "llama-airforce", - "protocol": "llama-airforce", - "project": "llama-airforce", - "deployments": { - "llama-airforce-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "llama.airforce.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "llama-airforce-ethereum", - "query-id": "llama-airforce-ethereum" - }, - "decentralized-network": { - "slug": "llama-airforce-ethereum", - "query-id": "C2EGJcZhx44BMaT9hJ2K2zjPGdYmrnuK7MusKEXaEPPH" - } - } - } - } - }, - "mellow-lrt": { - "schema": "generic", - "base": "mellow-lrt", - "protocol": "mellow-lrt", - "project": "mellow-lrt", - "deployments": { - "mellow-lrt-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mellow.lrt.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "mellow-lrt-ethereum", - "query-id": "mellow-lrt-ethereum" - }, - "decentralized-network": { - "slug": "mellow-lrt-ethereum", - "query-id": "B5asn3DbqssJhSevYyQQUPVrtoXqfnQBqNvp1En52wCY" - } - } - } - } - }, - "eigenpie": { - "schema": "generic", - "base": "eigenpie", - "protocol": "eigenpie", - "project": "eigenpie", - "deployments": { - "eigenpie-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "eigenpie.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "eigenpie-ethereum", - "query-id": "eigenpie-ethereum" - }, - "decentralized-network": { - "slug": "eigenpie-ethereum", - "query-id": "BbkLSUBpyJv8UiCyMyQBGpngz8qfdhx4LJBqFdHqiwhH" - } - } - } - } - }, - "prime-staked-eth": { - "schema": "generic", - "base": "prime-staked-eth", - "protocol": "prime-staked-eth", - "project": "prime-staked-eth", - "deployments": { - "prime-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "prime.staked.eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "prime-staked-eth-ethereum", - "query-id": "prime-staked-eth-ethereum" - }, - "decentralized-network": { - "slug": "prime-staked-eth-ethereum", - "query-id": "222GCE8sewRURAfh7meRbkyNE9NNG2HqfVfYmfFg9MkR" - } - } - } - } - }, - "coinbase-wrapped-staked-eth": { - "schema": "generic", - "base": "coinbase-wrapped-staked-eth", - "protocol": "coinbase-wrapped-staked-eth", - "project": "coinbase-wrapped-staked-eth", - "deployments": { - "coinbase-wrapped-staked-eth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "coinbase-wrapped-staked-eth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "coinbase-wsteth-ethereum", - "query-id": "coinbase-wsteth-ethereum" - }, - "decentralized-network": { - "slug": "coinbase-wsteth-ethereum", - "query-id": "4bPFmTTqoKZcQL8DXj8jBbo86pm4RisAQeuGhZKkvA9X" - } - } - } - } - }, - "slisbnb": { - "schema": "generic", - "base": "slisbnb", - "protocol": "slisbnb", - "project": "slisbnb", - "deployments": { - "slisbnb-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "slisbnb.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "slisbnb-bsc", - "query-id": "slisbnb-bsc" - }, - "decentralized-network": { - "slug": "slisbnb-bsc", - "query-id": "7Ptuvapgqo21jvcH2dquePfmfpEwENFHERN48pKptZf3" - } - } - } - } - }, - "bedrock-unieth": { - "schema": "generic", - "base": "bedrock-unieth", - "protocol": "bedrock-unieth", - "project": "bedrock-unieth", - "deployments": { - "bedrock-unieth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bedrock.unieth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "bedrock-unieth-ethereum", - "query-id": "bedrock-unieth-ethereum" - }, - "decentralized-network": { - "slug": "bedrock-unieth-ethereum", - "query-id": "69xran7p1VnLJoLrC7g5jeGTWsEkMD5kNqhYaEPbAzx6" - } - } - } - } - }, - "origin-ether": { - "schema": "generic", - "base": "origin-ether", - "protocol": "origin-ether", - "project": "origin-ether", - "deployments": { - "origin-ether-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "origin.ether.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "origin-ether-ethereum", - "query-id": "origin-ether-ethereum" - }, - "decentralized-network": { - "slug": "origin-ether-ethereum", - "query-id": "EYpKTVtNYaVN3LfDi1BCQBxhhUq53BTWcbExDt53cH75" - } - } - } - } - }, - "node-dao": { - "schema": "generic", - "base": "node-dao", - "protocol": "node-dao", - "project": "node-dao", - "deployments": { - "node-dao-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "node.dao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "node-dao-ethereum", - "query-id": "node-dao-ethereum" - }, - "decentralized-network": { - "slug": "node-dao-ethereum", - "query-id": "FfhhdxuMRwc7R2dBZd4MH4NZKRwZm5rqEFzY4XDoEq6x" - } - } - } - } - }, - "dinero-pxeth": { - "schema": "generic", - "base": "dinero-pxeth", - "protocol": "dinero-pxeth", - "project": "dinero-pxeth", - "deployments": { - "dinero-pxeth-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "dinero-pxeth.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "dinero-pxeth-ethereum", - "query-id": "dinero-pxeth-ethereum" - }, - "decentralized-network": { - "slug": "dinero-pxeth-ethereum", - "query-id": "4WV13q7iDBhFyqprdbFX5eb2h29Qh6c7aVuCjUHX8148" - } - } - } - } - }, - "stake-link-liquid": { - "schema": "generic", - "base": "stake-link-liquid", - "protocol": "stake-link-liquid", - "project": "stake-link-liquid", - "deployments": { - "stake-link-liquid-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stake-link-liquid.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stake-link-liquid-ethereum", - "query-id": "stake-link-liquid-ethereum" - }, - "decentralized-network": { - "slug": "stake-link-liquid-ethereum", - "query-id": "AV8BsSRc9oC4dr6yN7wPi4PyXsBnW3oHqbvoKfbEr1XW" - } - } - } - } - }, - "gogopool": { - "schema": "generic", - "base": "gogopool", - "protocol": "gogopool", - "project": "gogopool", - "deployments": { - "gogopool-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gogopool.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gogopool-avalanche", - "query-id": "gogopool-avalanche" - }, - "decentralized-network": { - "slug": "gogopool-avalanche", - "query-id": "4fD8jH8YUR4HSyQZArgyX5RVvgPLoG6H1stzUeHSNBne" - } - } - } - } - }, - "gaurda-staking": { - "schema": "generic", - "base": "gaurda-staking", - "protocol": "gaurda-staking", - "project": "gaurda-staking", - "deployments": { - "gaurda-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gaurda-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gaurda-staking-ethereum", - "query-id": "gaurda-staking-ethereum" - }, - "decentralized-network": { - "slug": "gaurda-staking-ethereum", - "query-id": "7Ax8MpZkfR5CnQFKRxUEGG8TuyrW5UwxohXC8opnqZ7j" - } - } - } - } - }, - "tenderize-v2": { - "schema": "generic", - "base": "tenderize-v2", - "protocol": "tenderize-v2", - "project": "tenderize-v2", - "deployments": { - "tenderize-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tenderize-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tenderize-v2-ethereum", - "query-id": "tenderize-v2-ethereum" - }, - "decentralized-network": { - "slug": "tenderize-v2-ethereum", - "query-id": "7dyhXtGrSebgffTAduYLzbdef1EQwDWEULnVogeTDmfG" - } - } - }, - "tenderize-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tenderize-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tenderize-v2-arbitrum", - "query-id": "tenderize-v2-arbitrum" - }, - "decentralized-network": { - "slug": "tenderize-v2-arbitrum", - "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP" - } - } - } - } - }, - "tensorplex": { - "schema": "generic", - "base": "tensorplex", - "protocol": "tensorplex", - "project": "tensorplex", - "deployments": { - "tensorplex-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tensorplex.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tensorplex-ethereum", - "query-id": "tensorplex-ethereum" - }, - "decentralized-network": { - "slug": "tensorplex-ethereum", - "query-id": "Fx59VkMxNeoPDsCaHbjiqq6tmfFzt4LrUEtnAmv7GYrP" - } - } - } - } - }, - "paxos-gold": { - "schema": "generic", - "base": "paxos-gold", - "protocol": "paxos-gold", - "project": "paxos-gold", - "deployments": { - "paxos-gold-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "paxos-gold.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "paxos-gold-ethereum", - "query-id": "paxos-gold-ethereum" - }, - "decentralized-network": { - "slug": "paxos-gold-ethereum", - "query-id": "3GYHnRz961CsPut6udWqaVdDJN7imKZWjBqfyzaAbPri" - } - } - } - } - }, - "tether-gold": { - "schema": "generic", - "base": "tether-gold", - "protocol": "tether-gold", - "project": "tether-gold", - "deployments": { - "tether-gold-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "tether-gold.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "tether-gold-ethereum", - "query-id": "tether-gold-ethereum" - }, - "decentralized-network": { - "slug": "tether-gold-ethereum", - "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3" - } - } - } - } - }, - "aurus": { - "schema": "generic", - "base": "aurus", - "protocol": "aurus", - "project": "aurus", - "deployments": { - "aurus-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aurus.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aurus-ethereum", - "query-id": "aurus-ethereum" - }, - "decentralized-network": { - "slug": "aurus-ethereum", - "query-id": "E9VxYW2ULCFGyYGibzbq3NW3LySAwEEvbqTpKuGjTrN3" - } - } - } - } - }, - "klimadao": { - "schema": "generic", - "base": "klimadao", - "protocol": "klimadao", - "project": "klimadao", - "deployments": { - "klimadao-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "klimadao.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "klimadao-polygon", - "query-id": "klimadao-polygon" - }, - "decentralized-network": { - "slug": "klimadao-polygon", - "query-id": "6SasXXKVoVSFEJqEGQqUQMEL2nufjaapbNuzE7tDCuu8" - } - } - } - } - }, - "matrixdock": { - "schema": "generic", - "base": "matrixdock", - "protocol": "matrixdock", - "project": "matrixdock", - "deployments": { - "matrixdock-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "matrixdock.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "matrixdock-ethereum", - "query-id": "matrixdock-ethereum" - }, - "decentralized-network": { - "slug": "matrixdock-ethereum", - "query-id": "CAKvXVz7dzbF5HH4MVWXi1ozhCm1omWpmYk4n2s56tjJ" - } - } - } - } - }, - "powh3d": { - "schema": "generic", - "base": "powh3d", - "protocol": "powh3d", - "project": "powh3d", - "deployments": { - "powh3d-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "powh3d.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "powh3d-ethereum", - "query-id": "powh3d-ethereum" - }, - "decentralized-network": { - "slug": "powh3d-ethereum", - "query-id": "83e1tomqiwGsM2LehC4MpUUxCQKvRNk92dk6AL21oit4" - } - } - } - } - }, - "nexus-mutual": { - "schema": "generic", - "base": "nexus-mutual", - "protocol": "nexus-mutual", - "project": "nexus-mutual", - "deployments": { - "nexus-mutual-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "nexus-mutual.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "nexus-mutual-ethereum", - "query-id": "nexus-mutual-ethereum" - }, - "decentralized-network": { - "slug": "nexus-mutual-ethereum", - "query-id": "FMtuHz5h9uDsTo6Z4ZXg4zgCBrsHPqFhbSBiTjgZV1AQ" - } - } - } - } - }, - "yieldyak-staked-avax": { - "schema": "generic", - "base": "yieldyak-staked-avax", - "protocol": "yieldyak-staked-avax", - "project": "yieldyak-staked-avax", - "deployments": { - "yieldyak-staked-avax-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldyak-staked-avax.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldyak-staked-avax-avalanche", - "query-id": "yieldyak-staked-avax-avalanche" - }, - "decentralized-network": { - "slug": "yieldyak-staked-avax-avalanche", - "query-id": "DFD6o4jyHAXnrEHNZv45JHEJJAwq9atyyCoJ2oq8spc1" - } - } - } - } - }, - "blackwing": { - "schema": "generic", - "base": "blackwing", - "protocol": "blackwing", - "project": "blackwing", - "deployments": { - "blackwing-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-ethereum", - "query-id": "blackwing-ethereum" - }, - "decentralized-network": { - "slug": "blackwing-ethereum", - "query-id": "G3scLRUbu9bGGs1JwPU4yUw3JKDBi1YYVee2rwU39MeP" - } - } - }, - "blackwing-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-arbitrum", - "query-id": "blackwing-arbitrum" - }, - "decentralized-network": { - "slug": "blackwing-arbitrum", - "query-id": "BbgxhvZhDAW2HjDLFdUucHjYYLFmVHivitbyyK21MNer" - } - } - }, - "blackwing-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "blackwing.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "blackwing-bsc", - "query-id": "blackwing-bsc" - }, - "decentralized-network": { - "slug": "blackwing-bsc", - "query-id": "9PZ1rE37Krm2AtwRPaDovCqjMuAYjLAgSJZruowofv16" - } - } - } - } - }, - "creth2": { - "schema": "generic", - "base": "creth2", - "protocol": "creth2", - "project": "creth2", - "deployments": { - "creth2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "creth2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "creth2-ethereum", - "query-id": "creth2-ethereum" - }, - "decentralized-network": { - "slug": "cream-eth-2-ethereum", - "query-id": "8aXEEhktu4zb1qv388ZgP1GggJUY1btKVoqm1S1mGHmY" - } - } - } - } - }, - "stcelo": { - "schema": "generic", - "base": "stcelo", - "protocol": "stcelo", - "project": "stcelo", - "deployments": { - "stcelo-celo": { - "network": "celo", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stcelo.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stcelo-celo", - "query-id": "stcelo-celo" - }, - "decentralized-network": { - "slug": "staked-celo-celo", - "query-id": "DrXwENbuEpbJ7EHZqdEjYqeoPGSYWC35oVWuZ6LyaW3j" - } - } - } - } - }, - "hord-fi": { - "schema": "generic", - "base": "hord-fi", - "protocol": "hord-fi", - "project": "hord-fi", - "deployments": { - "hord-fi-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "hord-fi.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "hord-fi-ethereum", - "query-id": "hord-fi-ethereum" - }, - "decentralized-network": { - "slug": "hord-fi-ethereum", - "query-id": "En1soX984KfBh45TBcEVH7B2AaPxCoHAo4vEwJ2sfnx4" - } - } - } - } - }, - "anzen-v2": { - "schema": "generic", - "base": "anzen-v2", - "protocol": "anzen-v2", - "project": "anzen-v2", - "deployments": { - "anzen-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-ethereum", - "query-id": "anzen-v2-ethereum" - }, - "decentralized-network": { - "slug": "anzen-v2-ethereum", - "query-id": "FWbueBconwHjZpu7AJRAV6fx8n8dGnZ3uDkCtMgByuwu" - } - } - }, - "anzen-v2-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-base", - "query-id": "anzen-v2-base" - }, - "decentralized-network": { - "slug": "anzen-v2-base", - "query-id": "CbQHFSCr7XjAAQ1mUmNHSS2AQGrzxst5z3igTUsZMyhN" - } - } - }, - "anzen-v2-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-arbitrum", - "query-id": "anzen-v2-arbitrum" - }, - "decentralized-network": { - "slug": "anzen-v2-arbitrum", - "query-id": "6sArjf9NeQYBKABesaYjXnKP1r6iNuD4VudCDNrHrsR5" - } - } - }, - "anzen-v2-blast": { - "network": "blast-mainnet", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "anzen-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "anzen-v2-blast", - "query-id": "anzen-v2-blast" - }, - "decentralized-network": { - "slug": "anzen-v2-blast", - "query-id": "4mqq4fNs2rfnSUfv97efYiLK4ZviJsyiqBVxVmEFjibo" - } - } - } - } - }, - "mev-protocol": { - "schema": "generic", - "base": "mev-protocol", - "protocol": "mev-protocol", - "project": "mev-protocol", - "deployments": { - "mev-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mev-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mev-protocol-ethereum", - "query-id": "mev-protocol-ethereum" - }, - "decentralized-network": { - "slug": "mev-protocol-ethereum", - "query-id": "357GA1eUz5JZzi8GKT5jZmvt3qpNBUqWmffqFWBQi7Cg" - } - } - } - } - }, - "geode": { - "schema": "generic", - "base": "geode", - "protocol": "geode", - "project": "geode", - "deployments": { - "geode-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "geode.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "geode-avalanche", - "query-id": "geode-avalanche" - }, - "decentralized-network": { - "slug": "geode-avalanche", - "query-id": "Fzef5CZEkTbGuL4n852JBKDtYT9jYJ5TfVDZGnSaPCsw" - } - } - } - } - }, - "beethovenx-sftmx": { - "schema": "generic", - "base": "beethovenx-sftmx", - "protocol": "beethovenx-sftmx", - "project": "beethovenx-sftmx", - "deployments": { - "beethovenx-sftmx-fantom": { - "network": "fantom", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "beethovenx-sftmx.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "beethovenx-sftmx-fantom", - "query-id": "beethovenx-sftmx-fantom" - }, - "decentralized-network": { - "slug": "beethovenx-sftmx-fantom", - "query-id": "4XjrnBJegUimJGGop2Nxfqj1H45TGwhXSGR7GvzG9keT" - } - } - } - } - }, - "stakewise-v2": { - "schema": "generic", - "base": "stakewise-v2", - "protocol": "stakewise-v2", - "project": "stakewise-v2", - "deployments": { - "stakewise-v2-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakewise-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakewise-v2-ethereum", - "query-id": "stakewise-v2-ethereum" - }, - "decentralized-network": { - "slug": "stakewise-v2-ethereum", - "query-id": "2vmnaGa7TjrKP9Q6ncbV5WvFvEJMvAHgMAQaMpFnTmpS" - } - } - }, - "stakewise-v2-gnosis": { - "network": "gnosis", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "stakewise-v2.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "stakewise-v2-gnosis", - "query-id": "stakewise-v2-gnosis" - }, - "decentralized-network": { - "slug": "stakewise-v2-gnosis", - "query-id": "3RMneHsDkc3e9J2HeqNezZ2hssGm8Kmuknsy5kiqEtfv" - } - } - } - } - }, - "suzaku": { - "schema": "generic", - "base": "suzaku", - "protocol": "suzaku", - "project": "suzaku", - "deployments": { - "suzaku-avalanche": { - "network": "avalanche", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "suzaku.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "suzaku-avalanche", - "query-id": "suzaku-avalanche" - }, - "decentralized-network": { - "slug": "suzaku-avalanche", - "query-id": "ChnR9QwW6tzKt2hbuHLmHqeB1Sk35UzR1XDbxYBA3cvW" - } - } - } - } - }, - "deq": { - "schema": "generic", - "base": "deq", - "protocol": "deq", - "project": "deq", - "deployments": { - "deq-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "deq.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "deq-ethereum", - "query-id": "deq-ethereum" - }, - "decentralized-network": { - "slug": "deq-fi-ethereum", - "query-id": "D1b2w9gpsw5ta9kitgg1x5it7vjuYBSQSxGPzUJCE6LT" - } - } - } - } - }, - "aspida": { - "schema": "generic", - "base": "aspida", - "protocol": "aspida", - "project": "aspida", - "deployments": { - "aspida-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aspida.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aspida-ethereum", - "query-id": "aspida-ethereum" - }, - "decentralized-network": { - "slug": "aspida-ethereum", - "query-id": "BC9v6SDtvEhrruVW8mfX6ydWWH9CDEM8UCmZvJ4QSHiN" - } - } - } - } - }, - "yieldnest": { - "schema": "generic", - "base": "yieldnest", - "protocol": "yieldnest", - "project": "yieldnest", - "deployments": { - "yieldnest-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldnest.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldnest-ethereum", - "query-id": "yieldnest-ethereum" - }, - "decentralized-network": { - "slug": "yieldnest-ethereum", - "query-id": "EHG4qyPLWv4fhXHxa7hiqsaVoWFEiaDvB7pe3CzN6jL6" - } - } - }, - "yieldnest-bsc": { - "network": "bsc", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "yieldnest.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "yieldnest-bsc", - "query-id": "yieldnest-bsc" - }, - "decentralized-network": { - "slug": "yieldnest-bsc", - "query-id": "BH5pBHMxeNBzvsCnZuzJxi4kjrbyAsF5CyREGaV99gqR" - } - } - } - } - }, - "inception": { - "schema": "generic", - "base": "inception", - "protocol": "inception", - "project": "inception", - "deployments": { - "inception-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "inception.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "inception-ethereum", - "query-id": "inception-ethereum" - }, - "decentralized-network": { - "slug": "inception-ethereum", - "query-id": "8BKHkTqYumCog3xwVfhPL99pRbddk5xdL3P1k5xkSbgM" - } - } - } - } - }, - "aqua-patina": { - "schema": "generic", - "base": "aqua-patina", - "protocol": "aqua-patina", - "project": "aqua-patina", - "deployments": { - "aqua-patina-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "aqua-patina.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "aqua-patina-ethereum", - "query-id": "aqua-patina-ethereum" - }, - "decentralized-network": { - "slug": "aqua-patina-ethereum", - "query-id": "4FBKKFiCv9bk3ggBamDtEuL9gNtE7Wuef4AYpASYpgGX" - } - } - } - } - }, - "affine-restaking": { - "schema": "generic", - "base": "affine-restaking", - "protocol": "affine-restaking", - "project": "affine-restaking", - "deployments": { - "affine-restaking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "affine-restaking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "affine-restaking-ethereum", - "query-id": "affine-restaking-ethereum" - }, - "decentralized-network": { - "slug": "affine-restaking-ethereum", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" - } - } - }, - "affine-restaking-linea": { - "network": "linea", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "affine-restaking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "affine-restaking-linea", - "query-id": "affine-restaking-linea" - }, - "decentralized-network": { - "slug": "affine-restaking-linea", - "query-id": "FK525H2L7hunrwYytG8vEN3qBUqbZE4AHXVRWKWpLnJV" - } - } - } - } - }, - "kernel-protocol": { - "schema": "generic", - "base": "kernel-protocol", - "protocol": "kernel-protocol", - "project": "kernel-protocol", - "deployments": { - "kernel-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "kernel-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "kernel-protocol-ethereum", - "query-id": "kernel-protocol-ethereum" - }, - "decentralized-network": { - "slug": "kernel-protocol-ethereum", - "query-id": "BPPmqYgnXQoUfZYhVhtCT4btU81BwrrEwPBeR9rotSJD" - } - } - } - } - }, - "mountain-protocol": { - "schema": "generic", - "base": "mountain-protocol", - "protocol": "mountain-protocol", - "project": "mountain-protocol", - "deployments": { - "mountain-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-ethereum", - "query-id": "mountain-protocol-ethereum" - }, - "decentralized-network": { - "slug": "mountain-protocol-ethereum", - "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp" - } - } - }, - "mountain-protocol-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-arbitrum", - "query-id": "mountain-protocol-arbitrum" - }, - "decentralized-network": { - "slug": "mountain-protocol-arbitrum", - "query-id": "4AHw1Hs9FJWTHF4pzckiXs1rdV9hczzYR2KBMgC5X4Wp" - } - } - }, - "mountain-protocol-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-base", - "query-id": "mountain-protocol-base" - }, - "decentralized-network": { - "slug": "mountain-protocol-base", - "query-id": "j3sSJTsVHhmBBktg63cPKxYqchRVhLKdJrJVAoWfLUn" - } - } - }, - "mountain-protocol-optimism": { - "network": "optimism", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-optimism", - "query-id": "mountain-protocol-optimism" - }, - "decentralized-network": { - "slug": "mountain-protocol-optimism", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" - } - } - }, - "mountain-protocol-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "mountain-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "mountain-protocol-polygon", - "query-id": "mountain-protocol-polygon" - }, - "decentralized-network": { - "slug": "mountain-protocol-polygon", - "query-id": "Gs7wJLxSNywuKdNYKA3Y1SdDDcUYJxd5kr6RAKqVTKvW" - } - } - } - } - }, - "flat-money": { - "schema": "generic", - "base": "flat-money", - "protocol": "flat-money", - "project": "flat-money", - "deployments": { - "flat-money-base": { - "network": "base", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "flat-money.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "flat-money-base", - "query-id": "flat-money-base" - }, - "decentralized-network": { - "slug": "flat-money-base", - "query-id": "G7ap2BncLoDoWj2U7Ak8oB1TBFyQbEYPT51d6fDnPkVb" - } - } - } - } - }, - "usual": { - "schema": "generic", - "base": "usual", - "protocol": "usual", - "project": "usual", - "deployments": { - "usual-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "usual.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "usual-ethereum", - "query-id": "usual-ethereum" - }, - "decentralized-network": { - "slug": "usual-ethereum", - "query-id": "6wn8aUC32emwyKpDd2pStwCwqcWvXYHPuhkcN3RyQsBZ" - } - } - } - } - }, - "spiko": { - "schema": "generic", - "base": "spiko", - "protocol": "spiko", - "project": "spiko", - "deployments": { - "spiko-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spiko.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiko-ethereum", - "query-id": "spiko-ethereum" - }, - "decentralized-network": { - "slug": "spiko-ethereum", - "query-id": "GMmo43Rn5SZRJUawpifZ2C3g8tet8kwv8qVsrAyQabxq" - } - } - }, - "spiko-polygon": { - "network": "polygon", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "spiko.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "spiko-polygon", - "query-id": "spiko-polygon" - }, - "decentralized-network": { - "slug": "spiko-polygon", - "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY" - } - } - } - } - }, - "gudchain": { - "schema": "generic", - "base": "gudchain", - "protocol": "gudchain", - "project": "gudchain", - "deployments": { - "gudchain-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "gudchain.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "gudchain-ethereum", - "query-id": "gudchain-ethereum" - }, - "decentralized-network": { - "slug": "gudchain-ethereum", - "query-id": "G7BnX3TE7hvyggLTUvynnmVYqnCWrQHAvFCADqKWxHBh" - } - } - } - } - }, - "superseed": { - "schema": "generic", - "base": "superseed", - "protocol": "superseed", - "project": "superseed", - "deployments": { - "superseed-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "superseed.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "superseed-ethereum", - "query-id": "superseed-ethereum" - }, - "decentralized-network": { - "slug": "superseed-ethereum", - "query-id": "C19YqsZpdAvyV8ZZRvHt3TSNaPKLxZEvzVuQe19nWAAY" - } - } - } - } - }, - "bracket-escrow-staking": { - "schema": "generic", - "base": "bracket-escrow-staking", - "protocol": "bracket-escrow-staking", - "project": "bracket-escrow-staking", - "deployments": { - "bracket-escrow-staking-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bracket-escrow-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bracket-escrow-staking-ethereum", - "query-id": "bracket-escrow-staking-ethereum" - }, - "decentralized-network": { - "slug": "bracket-escrow-staking-ethereum", - "query-id": "E8Vc24QPWdT2pW14erM8M3vXTWMZon4DUJ8vqSbngcZt" - } - } - }, - "bracket-escrow-staking-arbitrum": { - "network": "arbitrum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bracket-escrow-staking.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bracket-escrow-staking-arbitrum", - "query-id": "bracket-escrow-staking-arbitrum" - }, - "decentralized-network": { - "slug": "bracket-escrow-staking-arbitrum", - "query-id": "9kVpuw3Cgf6NQckem8SXH7TQGXsJ8Hb8Zm6mQF7eaiyd" - } - } - } - } - }, - "ora-protocol": { - "schema": "generic", - "base": "ora-protocol", - "protocol": "ora-protocol", - "project": "ora-protocol", - "deployments": { - "ora-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "ora-protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "ora-protocol-ethereum", - "query-id": "ora-protocol-ethereum" - }, - "decentralized-network": { - "slug": "ora-protocol-ethereum", - "query-id": "J1h9wtEcAfi32mTbNq4zQASGZJyidvEGXzi7HV8GxveF" - } - } - } - } - }, - "iguanadex-v3": { - "schema": "dex-amm", - "base": "uniswap-v3-forks", - "protocol": "iguanadex-v3", - "project": "iguanadex", - "deployments": { - "iguanadex-v3-etherlink-mainnet": { - "network": "etherlink-mainnet", - "status": "prod", - "versions": { - "schema": "4.0.1", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "iguanadexV3Template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "iguanadex-v3-etherlink-mainnet", - "query-id": "iguanadex-v3-etherlink-mainnet" - }, - "decentralized-network": { - "slug": "iguanadex-v3-etherlink-mainnet", - "query-id": "DNp3H73UxzbLMbK9sTr3MC2oLwF27aa6ptM7aYzsgxmt" - } - } - } - } - }, - "superlend": { - "schema": "lending", - "base": "aave-forks", - "protocol": "superlend", - "project": "superlend", - "deployments": { - "superlend-etherlink-mainnet": { - "network": "etherlink-mainnet", - "status": "prod", - "versions": { - "schema": "3.1.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "superlend.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "superlend-etherlink-mainnet", - "query-id": "superlend-etherlink-mainnet" - }, - "decentralized-network": { - "slug": "superlend-etherlink-mainnet", - "query-id": "HCzjsuU3dW7V6Z2BP4ncyzkkKYi3QXeuJFaboSak2U7V" - } - } - } - } - }, - "bob-fusion": { - "schema": "generic", - "base": "bob-fusion", - "protocol": "bob-fusion", - "project": "bob-fusion", - "deployments": { - "bob-fusion-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "bob-fusion.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": true - }, - "services": { - "hosted-service": { - "slug": "bob-fusion-ethereum", - "query-id": "bob-fusion-ethereum" - }, - "decentralized-network": { - "slug": "bob-fusion-ethereum", - "query-id": "FJCXWb8Z4n59Hkv9XsadRDyWcQE2GUh5GzJ1sPagU1r3" - } - } - } - } - }, - "fx-protocol": { - "schema": "generic", - "base": "fx-protocol", - "protocol": "fx-protocol", - "project": "fx-protocol", - "deployments": { - "fx-protocol-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "fx.protocol.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "fx-protocol-ethereum", - "query-id": "fx-protocol-ethereum" - }, - "decentralized-network": { - "slug": "fx-protocol-ethereum", - "query-id": "todo" - } - } - } - } - }, - "m0-power": { - "schema": "generic", - "base": "m0-power", - "protocol": "m0-power", - "project": "m0-power", - "deployments": { - "m0-power-ethereum": { - "network": "ethereum", - "status": "prod", - "versions": { - "schema": "3.0.0", - "subgraph": "1.0.0", - "methodology": "1.0.0" - }, - "files": { - "template": "m0.power.template.yaml" - }, - "options": { - "prepare:yaml": true, - "prepare:constants": false - }, - "services": { - "hosted-service": { - "slug": "m0-power-ethereum", - "query-id": "m0-power-ethereum" - }, - "decentralized-network": { - "slug": "m0-power-ethereum", - "query-id": "TODO" - } - } - } - } - } -} diff --git a/dashboard/src/scripts/prepare-deployment-data.js b/dashboard/src/scripts/prepare-deployment-data.js deleted file mode 100644 index 4f679f30b4..0000000000 --- a/dashboard/src/scripts/prepare-deployment-data.js +++ /dev/null @@ -1,142 +0,0 @@ -const fs = require("fs"); -const path = require("path"); -const https = require("https"); - -// GitHub raw URL for deployment.json -const GITHUB_DEPLOYMENT_URL = "https://raw.githubusercontent.com/messari/subgraphs/master/deployment/deployment.json"; - -// Output path -const DEST_PATH = path.resolve(__dirname, "../deployment-formatted.json"); - -// Function to download the deployment.json from GitHub -function downloadDeploymentJson() { - return new Promise((resolve, reject) => { - console.log("Downloading deployment.json from GitHub..."); - https - .get(GITHUB_DEPLOYMENT_URL, (response) => { - if (response.statusCode !== 200) { - reject(new Error(`Failed to download: ${response.statusCode}`)); - return; - } - - let data = ""; - response.on("data", (chunk) => { - data += chunk; - }); - - response.on("end", () => { - try { - const parsedData = JSON.parse(data); - console.log("Successfully downloaded deployment.json from GitHub"); - resolve(parsedData); - } catch (e) { - reject(new Error("Failed to parse downloaded JSON")); - } - }); - }) - .on("error", (err) => { - reject(err); - }); - }); -} - -// Process the deployment data -async function processDeploymentData() { - try { - // Always download from GitHub - const deploymentData = await downloadDeploymentJson(); - - console.log(`Processing ${Object.keys(deploymentData).length} protocols...`); - - // Transform the data to match the API response format - Object.keys(deploymentData).forEach((protocolName) => { - const protocol = deploymentData[protocolName]; - - if (protocol.deployments) { - Object.keys(protocol.deployments).forEach((deploymentKey) => { - const deployment = protocol.deployments[deploymentKey]; - - // Ensure services object exists - if (!deployment.services) { - deployment.services = {}; - } - - // Ensure hosted-service exists if needed - if (!deployment.services["hosted-service"]) { - deployment.services["hosted-service"] = { - slug: deploymentKey, - "query-id": deploymentKey, - health: [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - synced: false, - "indexed-percentage": "N/A", - "has-been-enhanced": true, - }, - ], - }; - } else if (deployment.services["hosted-service"] && !deployment.services["hosted-service"].health) { - deployment.services["hosted-service"].health = [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - synced: false, - "indexed-percentage": "N/A", - "has-been-enhanced": true, - }, - ]; - } - - // Ensure decentralized-network exists if needed - if (!deployment.services["decentralized-network"]) { - deployment.services["decentralized-network"] = { - slug: deploymentKey, - "query-id": "todo", - health: [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - synced: false, - "indexed-percentage": "N/A", - "has-been-enhanced": true, - }, - ], - }; - } else if ( - deployment.services["decentralized-network"] && - !deployment.services["decentralized-network"].health - ) { - deployment.services["decentralized-network"].health = [ - { - "start-block": "N/A", - "latest-block": "N/A", - "chain-head-block": "N/A", - "entity-count": "N/A", - synced: false, - "indexed-percentage": "N/A", - "has-been-enhanced": true, - }, - ]; - } - }); - } - }); - - // Write the transformed data to the destination file - fs.writeFileSync(DEST_PATH, JSON.stringify(deploymentData, null, 2)); - console.log("Successfully wrote formatted deployment data to:", DEST_PATH); - } catch (error) { - console.error("Error processing deployment data:", error); - process.exit(1); - } -} - -// Run the main function -processDeploymentData(); diff --git a/dashboard/src/utils/index.ts b/dashboard/src/utils/index.ts index 9d2f129439..80d9c44edd 100644 --- a/dashboard/src/utils/index.ts +++ b/dashboard/src/utils/index.ts @@ -545,3 +545,60 @@ function safeNumberConversion(value: any, defaultValue: number): number { const parsed = Number(value); return !isNaN(parsed) ? parsed : defaultValue; } + +/** + * Processes raw deployment data to ensure all deployments have the necessary health metrics structure. + * Similar to what the prepare-deployment-data.js script does, but performed at runtime. + * @param deploymentData Raw deployment data from GitHub + * @returns Processed deployment data with proper health metrics structure + */ +export function processDeploymentData(deploymentData: Record): Record { + // Create a deep copy to avoid modifying the original data + const processedData = JSON.parse(JSON.stringify(deploymentData)); + + // Process each protocol + Object.keys(processedData).forEach((protocolName) => { + const protocol = processedData[protocolName]; + + if (protocol.deployments) { + Object.keys(protocol.deployments).forEach((deploymentKey) => { + const deployment = protocol.deployments[deploymentKey]; + + // Ensure services object exists + if (!deployment.services) { + deployment.services = {}; + } + + // Ensure hosted-service exists if needed + if (!deployment.services["hosted-service"]) { + deployment.services["hosted-service"] = { + slug: deploymentKey, + "query-id": deploymentKey, + health: null, // Will be enhanced by enhanceHealthMetrics + }; + } else if (deployment.services["hosted-service"] && !deployment.services["hosted-service"].health) { + deployment.services["hosted-service"].health = null; + } + + // Ensure decentralized-network exists if needed + if (!deployment.services["decentralized-network"]) { + deployment.services["decentralized-network"] = { + slug: deploymentKey, + "query-id": "todo", + health: null, // Will be enhanced by enhanceHealthMetrics + }; + } else if ( + deployment.services["decentralized-network"] && + !deployment.services["decentralized-network"].health + ) { + deployment.services["decentralized-network"].health = null; + } + + // Apply the enhanceHealthMetrics function to add health metrics + protocol.deployments[deploymentKey] = enhanceHealthMetrics(deployment); + }); + } + }); + + return processedData; +}