envio 2.0.0-rc.3 → 2.0.0-rc.4

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.
Files changed (2) hide show
  1. package/evm.schema.json +16 -1
  2. package/package.json +6 -6
package/evm.schema.json CHANGED
@@ -65,6 +65,13 @@
65
65
  "$ref": "#/$defs/Network"
66
66
  }
67
67
  },
68
+ "raw_events": {
69
+ "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)",
70
+ "type": [
71
+ "boolean",
72
+ "null"
73
+ ]
74
+ },
68
75
  "rollback_on_reorg": {
69
76
  "description": "A flag to indicate if the indexer should rollback to the last known valid block on a reorg (default: false)",
70
77
  "type": [
@@ -394,7 +401,15 @@
394
401
  "number",
395
402
  "null"
396
403
  ],
397
- "format": "float"
404
+ "format": "double"
405
+ },
406
+ "fallback_stall_timeout": {
407
+ "type": [
408
+ "integer",
409
+ "null"
410
+ ],
411
+ "format": "uint32",
412
+ "minimum": 0
398
413
  },
399
414
  "initial_block_interval": {
400
415
  "type": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envio",
3
- "version": "v2.0.0-rc.3",
3
+ "version": "v2.0.0-rc.4",
4
4
  "description": "A latency and sync speed optimized, developer friendly blockchain data indexer.",
5
5
  "bin": "lib/index.js",
6
6
  "scripts": {
@@ -36,11 +36,11 @@
36
36
  "typescript": "^4.9.4"
37
37
  },
38
38
  "optionalDependencies": {
39
- "envio-linux-x64": "v2.0.0-rc.3",
40
- "envio-linux-arm64": "v2.0.0-rc.3",
41
- "envio-darwin-x64": "v2.0.0-rc.3",
42
- "envio-darwin-arm64": "v2.0.0-rc.3",
43
- "envio-win32-x64": "v2.0.0-rc.3"
39
+ "envio-linux-x64": "v2.0.0-rc.4",
40
+ "envio-linux-arm64": "v2.0.0-rc.4",
41
+ "envio-darwin-x64": "v2.0.0-rc.4",
42
+ "envio-darwin-arm64": "v2.0.0-rc.4",
43
+ "envio-win32-x64": "v2.0.0-rc.4"
44
44
  },
45
45
  "eslintConfig": {
46
46
  "extends": [