envio 2.2.3 → 2.3.0
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/fuel.schema.json +31 -0
- package/package.json +5 -5
package/fuel.schema.json
CHANGED
|
@@ -42,6 +42,13 @@
|
|
|
42
42
|
"items": {
|
|
43
43
|
"$ref": "#/$defs/Network"
|
|
44
44
|
}
|
|
45
|
+
},
|
|
46
|
+
"raw_events": {
|
|
47
|
+
"description": "If true, the indexer will store the raw event data in the database. This is useful for debugging, but will increase the size of the database and the amount of time it takes to process events (default: false)",
|
|
48
|
+
"type": [
|
|
49
|
+
"boolean",
|
|
50
|
+
"null"
|
|
51
|
+
]
|
|
45
52
|
}
|
|
46
53
|
},
|
|
47
54
|
"additionalProperties": false,
|
|
@@ -130,6 +137,17 @@
|
|
|
130
137
|
],
|
|
131
138
|
"format": "int32"
|
|
132
139
|
},
|
|
140
|
+
"hyperfuel_config": {
|
|
141
|
+
"description": "Optional HyperFuel Config for additional fine-tuning",
|
|
142
|
+
"anyOf": [
|
|
143
|
+
{
|
|
144
|
+
"$ref": "#/$defs/HyperfuelConfig"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"type": "null"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
133
151
|
"contracts": {
|
|
134
152
|
"description": "All the contracts that should be indexed on the given network",
|
|
135
153
|
"type": "array",
|
|
@@ -145,6 +163,19 @@
|
|
|
145
163
|
"contracts"
|
|
146
164
|
]
|
|
147
165
|
},
|
|
166
|
+
"HyperfuelConfig": {
|
|
167
|
+
"type": "object",
|
|
168
|
+
"properties": {
|
|
169
|
+
"url": {
|
|
170
|
+
"description": "URL of the HyperFuel endpoint (default: The most stable HyperFuel endpoint for the network)",
|
|
171
|
+
"type": "string"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"additionalProperties": false,
|
|
175
|
+
"required": [
|
|
176
|
+
"url"
|
|
177
|
+
]
|
|
178
|
+
},
|
|
148
179
|
"NetworkContract_for_ContractConfig": {
|
|
149
180
|
"type": "object",
|
|
150
181
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envio",
|
|
3
|
-
"version": "v2.
|
|
3
|
+
"version": "v2.3.0",
|
|
4
4
|
"description": "A latency and sync speed optimized, developer friendly blockchain data indexer.",
|
|
5
5
|
"bin": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"typescript": "^4.9.4"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"envio-linux-x64": "v2.
|
|
40
|
-
"envio-linux-arm64": "v2.
|
|
41
|
-
"envio-darwin-x64": "v2.
|
|
42
|
-
"envio-darwin-arm64": "v2.
|
|
39
|
+
"envio-linux-x64": "v2.3.0",
|
|
40
|
+
"envio-linux-arm64": "v2.3.0",
|
|
41
|
+
"envio-darwin-x64": "v2.3.0",
|
|
42
|
+
"envio-darwin-arm64": "v2.3.0"
|
|
43
43
|
},
|
|
44
44
|
"eslintConfig": {
|
|
45
45
|
"extends": [
|