@lodestar/prover 1.28.0-dev.d1f9f7b32a → 1.28.0-dev.d9bd50bec2
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 +13 -16
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.d9bd50bec2",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -51,12 +51,9 @@
|
|
|
51
51
|
"lint": "biome check src/ test/",
|
|
52
52
|
"lint:fix": "yarn run lint --write",
|
|
53
53
|
"test": "yarn test:unit && yarn test:e2e",
|
|
54
|
-
"test:unit": "vitest
|
|
55
|
-
"test:browsers": "
|
|
56
|
-
"test:
|
|
57
|
-
"test:browsers:firefox": "vitest --run --browser firefox --config ./vitest.browser.config.ts --dir test/unit",
|
|
58
|
-
"test:browsers:electron": "echo 'Electron tests will be introduced back in the future as soon vitest supports electron.'",
|
|
59
|
-
"test:e2e": "LODESTAR_PRESET=minimal vitest --run --config vitest.e2e.config.ts --dir test/e2e",
|
|
54
|
+
"test:unit": "vitest run --dir test/unit/",
|
|
55
|
+
"test:browsers": "vitest run --config ./vitest.browser.config.ts --dir test/unit",
|
|
56
|
+
"test:e2e": "LODESTAR_PRESET=minimal vitest run --config vitest.e2e.config.ts --dir test/e2e",
|
|
60
57
|
"check-readme": "typescript-docs-verifier",
|
|
61
58
|
"generate-fixtures": "node --loader ts-node/esm scripts/generate_fixtures.ts"
|
|
62
59
|
},
|
|
@@ -69,13 +66,13 @@
|
|
|
69
66
|
"@ethereumjs/tx": "^4.1.2",
|
|
70
67
|
"@ethereumjs/util": "^8.0.6",
|
|
71
68
|
"@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.
|
|
69
|
+
"@lodestar/api": "1.28.0-dev.d9bd50bec2",
|
|
70
|
+
"@lodestar/config": "1.28.0-dev.d9bd50bec2",
|
|
71
|
+
"@lodestar/light-client": "1.28.0-dev.d9bd50bec2",
|
|
72
|
+
"@lodestar/logger": "1.28.0-dev.d9bd50bec2",
|
|
73
|
+
"@lodestar/params": "1.28.0-dev.d9bd50bec2",
|
|
74
|
+
"@lodestar/types": "1.28.0-dev.d9bd50bec2",
|
|
75
|
+
"@lodestar/utils": "1.28.0-dev.d9bd50bec2",
|
|
79
76
|
"ethereum-cryptography": "^2.0.0",
|
|
80
77
|
"find-up": "^6.3.0",
|
|
81
78
|
"http-proxy": "^1.18.1",
|
|
@@ -84,7 +81,7 @@
|
|
|
84
81
|
"yargs": "^17.7.1"
|
|
85
82
|
},
|
|
86
83
|
"devDependencies": {
|
|
87
|
-
"@lodestar/test-utils": "1.28.0-dev.
|
|
84
|
+
"@lodestar/test-utils": "1.28.0-dev.d9bd50bec2",
|
|
88
85
|
"@types/http-proxy": "^1.17.10",
|
|
89
86
|
"@types/yargs": "^17.0.24",
|
|
90
87
|
"axios": "^1.3.4",
|
|
@@ -99,5 +96,5 @@
|
|
|
99
96
|
"blockchain",
|
|
100
97
|
"prover"
|
|
101
98
|
],
|
|
102
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "e388da60234ff2ec3be360417d100074aadaa142"
|
|
103
100
|
}
|