@lodestar/prover 1.28.0-dev.9a2cf748d3 → 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 CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export type JsonRpcId = number | string;
3
2
  export type JsonRpcVersion = string & ("2.0" | "1.0");
4
3
  export interface JsonRpcRequestPayload<T = unknown[]> {
@@ -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 | undefined;
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
- }[] | undefined;
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;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import http from "node:http";
3
2
  import { JsonRpcRequestPayload, JsonRpcResponse } from "../types.js";
4
3
  export declare const fetchRequestPayload: (req: http.IncomingMessage) => Promise<JsonRpcRequestPayload>;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import http from "node:http";
3
2
  import { VerifiedExecutionInitOptions } from "./interfaces.js";
4
3
  import { ProofProvider } from "./proof_provider/proof_provider.js";
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.9a2cf748d3",
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.9a2cf748d3",
73
- "@lodestar/config": "1.28.0-dev.9a2cf748d3",
74
- "@lodestar/light-client": "1.28.0-dev.9a2cf748d3",
75
- "@lodestar/logger": "1.28.0-dev.9a2cf748d3",
76
- "@lodestar/params": "1.28.0-dev.9a2cf748d3",
77
- "@lodestar/types": "1.28.0-dev.9a2cf748d3",
78
- "@lodestar/utils": "1.28.0-dev.9a2cf748d3",
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.9a2cf748d3",
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": "bdc2a1d0e48a1c2e13a605290b56917b55b0a36c"
102
+ "gitHead": "197ac0b79856d0cc03f961826e7519b2e4b88680"
103
103
  }