envio-linux-x64 3.0.0-alpha.21 → 3.0.0-alpha.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/{bin/envio → envio.node} +0 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -107,9 +107,9 @@ This scaffolds your entire indexer project, config, schema, and handler function
|
|
|
107
107
|
|
|
108
108
|
From there, three files define your indexer:
|
|
109
109
|
|
|
110
|
-
- `config.yaml
|
|
111
|
-
- `schema.graphql
|
|
112
|
-
- `src/EventHandlers
|
|
110
|
+
- `config.yaml`: networks, contracts, events, and indexing behaviour
|
|
111
|
+
- `schema.graphql`: the shape of your indexed data
|
|
112
|
+
- `src/EventHandlers.*`: your handler logic in TypeScript, JavaScript, or ReScript
|
|
113
113
|
|
|
114
114
|
[Full getting started guide →](https://docs.envio.dev/docs/HyperIndex/getting-started)
|
|
115
115
|
|
package/{bin/envio → envio.node}
RENAMED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envio-linux-x64",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.23",
|
|
4
|
+
"main": "./envio.node",
|
|
4
5
|
"description": "A latency and sync speed optimized, developer friendly blockchain data indexer.",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -24,5 +25,8 @@
|
|
|
24
25
|
],
|
|
25
26
|
"cpu": [
|
|
26
27
|
"x64"
|
|
28
|
+
],
|
|
29
|
+
"libc": [
|
|
30
|
+
"glibc"
|
|
27
31
|
]
|
|
28
32
|
}
|