@lodestar/prover 1.28.0-dev.a25ea77834 → 1.28.0-dev.b2ebe4921b
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/lib/types.d.ts +0 -1
- package/lib/utils/conversion.d.ts +3 -4
- package/lib/utils/req_resp.d.ts +0 -1
- package/lib/web3_proxy.d.ts +0 -1
- package/package.json +10 -10
package/lib/types.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { BlockData, HeaderData } from "@ethereumjs/block";
|
|
3
2
|
import { ELBlock, ELTransaction } from "../types.js";
|
|
4
3
|
export declare function numberToHex(num: number | bigint): string;
|
|
@@ -13,13 +12,13 @@ export declare function txDataFromELBlock(txInfo: ELTransaction): {
|
|
|
13
12
|
data: string;
|
|
14
13
|
gasPrice: bigint | null;
|
|
15
14
|
gasLimit: string;
|
|
16
|
-
to: Buffer | undefined;
|
|
15
|
+
to: Buffer<ArrayBufferLike> | undefined;
|
|
17
16
|
value: bigint | undefined;
|
|
18
17
|
maxFeePerGas: bigint | undefined;
|
|
19
18
|
maxPriorityFeePerGas: bigint | undefined;
|
|
20
19
|
type: string;
|
|
21
20
|
nonce: string;
|
|
22
|
-
chainId?: string
|
|
21
|
+
chainId?: string;
|
|
23
22
|
input: string;
|
|
24
23
|
gas: string;
|
|
25
24
|
blockHash: string;
|
|
@@ -33,7 +32,7 @@ export declare function txDataFromELBlock(txInfo: ELTransaction): {
|
|
|
33
32
|
accessList?: {
|
|
34
33
|
address: string;
|
|
35
34
|
storageKeys: string[];
|
|
36
|
-
}[]
|
|
35
|
+
}[];
|
|
37
36
|
};
|
|
38
37
|
export declare function blockDataFromELBlock(blockInfo: ELBlock): BlockData;
|
|
39
38
|
export declare function cleanObject<T extends Record<string, unknown> | unknown[]>(obj: T): T;
|
package/lib/utils/req_resp.d.ts
CHANGED
package/lib/web3_proxy.d.ts
CHANGED
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.28.0-dev.
|
|
14
|
+
"version": "1.28.0-dev.b2ebe4921b",
|
|
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.28.0-dev.
|
|
73
|
-
"@lodestar/config": "1.28.0-dev.
|
|
74
|
-
"@lodestar/light-client": "1.28.0-dev.
|
|
75
|
-
"@lodestar/logger": "1.28.0-dev.
|
|
76
|
-
"@lodestar/params": "1.28.0-dev.
|
|
77
|
-
"@lodestar/types": "1.28.0-dev.
|
|
78
|
-
"@lodestar/utils": "1.28.0-dev.
|
|
72
|
+
"@lodestar/api": "1.28.0-dev.b2ebe4921b",
|
|
73
|
+
"@lodestar/config": "1.28.0-dev.b2ebe4921b",
|
|
74
|
+
"@lodestar/light-client": "1.28.0-dev.b2ebe4921b",
|
|
75
|
+
"@lodestar/logger": "1.28.0-dev.b2ebe4921b",
|
|
76
|
+
"@lodestar/params": "1.28.0-dev.b2ebe4921b",
|
|
77
|
+
"@lodestar/types": "1.28.0-dev.b2ebe4921b",
|
|
78
|
+
"@lodestar/utils": "1.28.0-dev.b2ebe4921b",
|
|
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.28.0-dev.
|
|
87
|
+
"@lodestar/test-utils": "1.28.0-dev.b2ebe4921b",
|
|
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": "197ac0b79856d0cc03f961826e7519b2e4b88680"
|
|
103
103
|
}
|