Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat: graph network (partial) paused field added #56

Merged
merged 13 commits into from
Aug 10, 2023
Merged
59 changes: 31 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,21 @@ graph LR;
map_events --> store_subgraph_deployment_id;
store_cumulative_curator_burned[store: store_cumulative_curator_burned];
map_events --> store_cumulative_curator_burned;
store_query_fee_rebates[store: store_query_fee_rebates];
map_events --> store_query_fee_rebates;
store_query_fees_amount[store: store_query_fees_amount];
map_events --> store_query_fees_amount;
store_curator_fee_rewards[store: store_curator_fee_rewards];
map_events --> store_curator_fee_rewards;
store_curator_rewards[store: store_curator_rewards];
map_events --> store_curator_rewards;
store_signal_amount[store: store_signal_amount];
map_events --> store_signal_amount;
store_subgraph_deployment_rewards[store: store_subgraph_deployment_rewards];
map_indexing_rewards --> store_subgraph_deployment_rewards;
graph_out[map: graph_out];
sf.substreams.v1.Clock[source: sf.substreams.v1.Clock] --> graph_out;
map_events --> graph_out;
store_grt_global -- deltas --> graph_out;
store_grt_balances -- deltas --> graph_out;
store_graph_account_indexer -- deltas --> graph_out;
Expand All @@ -73,6 +87,12 @@ graph LR;
store_cumulative_curator_signalled -- deltas --> graph_out;
store_cumulative_curator_burned -- deltas --> graph_out;
store_total_signalled -- deltas --> graph_out;
store_query_fee_rebates -- deltas --> graph_out;
store_query_fees_amount -- deltas --> graph_out;
store_curator_fee_rewards -- deltas --> graph_out;
store_curator_rewards -- deltas --> graph_out;
store_signal_amount -- deltas --> graph_out;
store_subgraph_deployment_rewards -- deltas --> graph_out;
map_indexing_rewards --> graph_out;
```

Expand Down
Loading
Loading