@lodestar/prover 1.20.0-dev.48e6bac36b → 1.20.0-dev.514b6057ea
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 +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ lodestar-prover proxy \
|
|
|
74
74
|
|
|
75
75
|
There can be different implementations of the web3 providers and each can handle the RPC request differently. We call those different provider types. We had provided builtin support for common providers e.g. web3.js, ethers or any eip1193 compatible providers. We inspect given provider instance at runtime to detect the correct provider type.
|
|
76
76
|
|
|
77
|
-
If your project is using some provider type which is not among above list, you have the option to register a custom provider type with the `createVerifiedExecutionProvider` with the option `providerTypes` which will be an array of your supported provider types. Your custom provider types will have higher priority than default provider types. Please see [existing provide types implementations](
|
|
77
|
+
If your project is using some provider type which is not among above list, you have the option to register a custom provider type with the `createVerifiedExecutionProvider` with the option `providerTypes` which will be an array of your supported provider types. Your custom provider types will have higher priority than default provider types. Please see [existing provide types implementations](https://github.com/ChainSafe/lodestar/tree/unstable/packages/prover/src/provider_types) to know how to implement your own if needed.
|
|
78
78
|
|
|
79
79
|
## Supported Web3 Methods
|
|
80
80
|
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/ChainSafe/lodestar/issues"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.20.0-dev.
|
|
14
|
+
"version": "1.20.0-dev.514b6057ea",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -69,13 +69,13 @@
|
|
|
69
69
|
"@ethereumjs/tx": "^4.1.2",
|
|
70
70
|
"@ethereumjs/util": "^8.0.6",
|
|
71
71
|
"@ethereumjs/vm": "^6.4.2",
|
|
72
|
-
"@lodestar/api": "1.20.0-dev.
|
|
73
|
-
"@lodestar/config": "1.20.0-dev.
|
|
74
|
-
"@lodestar/light-client": "1.20.0-dev.
|
|
75
|
-
"@lodestar/logger": "1.20.0-dev.
|
|
76
|
-
"@lodestar/params": "1.20.0-dev.
|
|
77
|
-
"@lodestar/types": "1.20.0-dev.
|
|
78
|
-
"@lodestar/utils": "1.20.0-dev.
|
|
72
|
+
"@lodestar/api": "1.20.0-dev.514b6057ea",
|
|
73
|
+
"@lodestar/config": "1.20.0-dev.514b6057ea",
|
|
74
|
+
"@lodestar/light-client": "1.20.0-dev.514b6057ea",
|
|
75
|
+
"@lodestar/logger": "1.20.0-dev.514b6057ea",
|
|
76
|
+
"@lodestar/params": "1.20.0-dev.514b6057ea",
|
|
77
|
+
"@lodestar/types": "1.20.0-dev.514b6057ea",
|
|
78
|
+
"@lodestar/utils": "1.20.0-dev.514b6057ea",
|
|
79
79
|
"ethereum-cryptography": "^2.0.0",
|
|
80
80
|
"find-up": "^6.3.0",
|
|
81
81
|
"http-proxy": "^1.18.1",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"yargs": "^17.7.1"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@lodestar/test-utils": "1.20.0-dev.
|
|
87
|
+
"@lodestar/test-utils": "1.20.0-dev.514b6057ea",
|
|
88
88
|
"@types/http-proxy": "^1.17.10",
|
|
89
89
|
"@types/yargs": "^17.0.24",
|
|
90
90
|
"axios": "^1.3.4",
|
|
@@ -99,5 +99,5 @@
|
|
|
99
99
|
"blockchain",
|
|
100
100
|
"prover"
|
|
101
101
|
],
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "9b42057161e4e8ae35f2225617ba341858de12c7"
|
|
103
103
|
}
|