Skip to content

Commit

Permalink
feat: substreams graph updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sahra-karakoc committed Aug 8, 2023
1 parent 4b4f2fb commit a412037
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This subgraph makes available the following data:
Here is the graph of the modules of the substreams:

```mermaid
graph LR;
graph TD;
map_storage_changes[map: map_storage_changes];
sf.ethereum.type.v2.Block[source: sf.ethereum.type.v2.Block] --> map_storage_changes;
map_events[map: map_events];
Expand Down 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

0 comments on commit a412037

Please sign in to comment.