You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/pages/en/developing/creating-a-subgraph.mdx
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,8 @@ dataSources:
146
146
147
147
The important entries to update for the manifest are:
148
148
149
+
- `specVersion`: a semver version that identifies the supported manifest structure and functionality for the subgraph. The latest version is `1.2.0`. See [specVersion releases](#specversion-releases) section to see more details on features & releases.
150
+
149
151
- `description`: a human-readable description of what the subgraph is. This description is displayed in Graph Explorer when the subgraph is deployed to Subgraph Studio.
150
152
151
153
- `repository`: the URL of the repository where the subgraph manifest can be found. This is also displayed in Graph Explorer.
@@ -186,6 +188,20 @@ These ordering rules are subject to change.
186
188
187
189
> **Note:** When new [dynamic data source](#data-source-templates-for-dynamically-created-contracts) are created, the handlers defined for dynamic data sources will only start processing after all existing data source handlers are processed, and will repeat in the same sequence whenever triggered.
188
190
191
+
### SpecVersion Releases
192
+
193
+
| Version | Release notes |
194
+
| :-: | --- |
195
+
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
196
+
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
197
+
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
198
+
| 0.0.9 | Supports `endBlock` feature |
199
+
| 0.0.8 | Added support for polling [Block Handlers](developing/creating-a-subgraph/#polling-filter) and [Initialisation Handlers](developing/creating-a-subgraph/#once-filter). |
200
+
| 0.0.7 | Added support for [File Data Sources](developing/creating-a-subgraph/#file-data-sources). |
201
+
| 0.0.6 | Supports fast [Proof of Indexing](/network/indexing/#what-is-a-proof-of-indexing-poi) calculation variant. |
202
+
| 0.0.5 | Added support for event handlers having access to transaction receipts. |
203
+
| 0.0.4 | Added support for managing subgraph features. |
204
+
189
205
### Getting The ABIs
190
206
191
207
The ABI file(s) must match your contract(s). There are a few ways to obtain ABI files:
0 commit comments