synthquestTOTAL Top Subgraphs Per Network copy
Updated 2023-09-12
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from Mainnet Top Subgraphs Per Network @ https://flipsidecrypto.xyz/edit/queries/a33d852d-e558-49cf-a869-9a72a4db0351
-- forked from Kwenta Smartmargin Subgraph Pull - Owners @ https://flipsidecrypto.xyz/edit/queries/8d470a2b-eef9-4185-815d-1e88cbca83b0
with thegraph_Mainnet as (
with raw as (
SELECT
livequery.live.udf_api(
'POST',
'https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum',
{'Content-Type': 'application/json'},
{'query':'{
networks(where: {id: "mainnet"}) {
deployments(
orderBy: indexingRewardAmount
orderDirection: desc
where: {indexingRewardAmount_gt: "0", network_contains: "mainnet"}
) {
originalName
queryFeesAmount
indexingRewardAmount
id
curatorFeeRewards
indexingIndexerRewardAmount
indexingDelegatorRewardAmount
}
}
}
',
'variables':{}
}
) as rawoutput
)
Run a query to Download Data