8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
blockFilter
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
The Mermaid graphs do not visualize the connection of blockFilter::module when using BlockIndex
blockFilter::module
BlockIndex
substreams.yaml
- name: index_transactions kind: blockIndex inputs: - map: map_transactions output: type: proto:sf.substreams.index.v1.Keys - name: map_transactions kind: map doc: Extracts Inscription transactions from the block inputs: - source: sf.ethereum.type.v2.Block output: type: proto:inscriptions.types.v1.Transactions - name: map_operations kind: map doc: Extracts Inscription operation events from the block inputs: - map: map_transactions blockFilter: module: index_transactions query: string: inscriptions params: false output: type: proto:inscriptions.types.v1.Operations
graph TD; map_transactions --> index_transactions; map_transactions[map: map_transactions]; sf.ethereum.type.v2.Block[source: sf.ethereum.type.v2.Block] --> map_transactions; map_operations[map: map_operations]; map_transactions --> map_operations;
by adding index_transactions -.-> |blockIndex| map_operations;
index_transactions -.-> |blockIndex| map_operations;
graph TD; map_transactions --> index_transactions; index_transactions -.-> |blockIndex| map_operations; map_transactions[map: map_transactions]; sf.ethereum.type.v2.Block[source: sf.ethereum.type.v2.Block] --> map_transactions; map_operations[map: map_operations]; map_transactions --> map_operations;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Mermaid graphs do not visualize the connection of
blockFilter::module
when usingBlockIndex
Example
substreams.yaml
❌ Current Mermiad
✅ Expected Mermaid
by adding
index_transactions -.-> |blockIndex| map_operations;
The text was updated successfully, but these errors were encountered: