@lodestar/prover 1.41.0 → 1.42.0-dev.4118b5b440

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 CHANGED
@@ -148,7 +148,7 @@ If your project is using some provider type which is not among above list, you h
148
148
 
149
149
  ## What you need
150
150
 
151
- You will need to go over the [specification](https://github.com/ethereum/beacon-apis). You will also need to have a [basic understanding of lightclient](https://github.com/ethereum/consensus-specs/blob/dev/specs/altair/light-client/light-client.md).
151
+ You will need to go over the [specification](https://github.com/ethereum/beacon-apis). You will also need to have a [basic understanding of lightclient](https://github.com/ethereum/consensus-specs/blob/v1.6.1/specs/altair/light-client/light-client.md).
152
152
 
153
153
  ## Getting started
154
154
 
package/lib/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- // https://github.com/ethereum/consensus-specs/blob/dev/specs/altair/light-client/p2p-interface.md#configuration
1
+ // https://github.com/ethereum/consensus-specs/blob/v1.6.1/specs/altair/light-client/p2p-interface.md#configuration
2
2
  export const MAX_REQUEST_LIGHT_CLIENT_UPDATES = 128;
3
3
  export const MAX_PAYLOAD_HISTORY = 32;
4
4
  export const VERIFICATION_FAILED_RESPONSE_CODE = -33091;
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,gHAAgH;AAChH,MAAM,CAAC,MAAM,gCAAgC,GAAG,GAAG,CAAC;AACpD,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,CAAC;AACtC,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,KAAK,CAAC;AACxD,MAAM,CAAC,MAAM,YAAY,GAAG,4CAA4C,CAAC;AACzE,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,mHAAmH;AACnH,MAAM,CAAC,MAAM,gCAAgC,GAAG,GAAG,CAAC;AACpD,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,CAAC;AACtC,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,KAAK,CAAC;AACxD,MAAM,CAAC,MAAM,YAAY,GAAG,4CAA4C,CAAC;AACzE,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC"}
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.41.0",
14
+ "version": "1.42.0-dev.4118b5b440",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -60,13 +60,13 @@
60
60
  "@ethereumjs/tx": "^4.1.2",
61
61
  "@ethereumjs/util": "^8.0.6",
62
62
  "@ethereumjs/vm": "^6.4.2",
63
- "@lodestar/api": "^1.41.0",
64
- "@lodestar/config": "^1.41.0",
65
- "@lodestar/light-client": "^1.41.0",
66
- "@lodestar/logger": "^1.41.0",
67
- "@lodestar/params": "^1.41.0",
68
- "@lodestar/types": "^1.41.0",
69
- "@lodestar/utils": "^1.41.0",
63
+ "@lodestar/api": "^1.42.0-dev.4118b5b440",
64
+ "@lodestar/config": "^1.42.0-dev.4118b5b440",
65
+ "@lodestar/light-client": "^1.42.0-dev.4118b5b440",
66
+ "@lodestar/logger": "^1.42.0-dev.4118b5b440",
67
+ "@lodestar/params": "^1.42.0-dev.4118b5b440",
68
+ "@lodestar/types": "^1.42.0-dev.4118b5b440",
69
+ "@lodestar/utils": "^1.42.0-dev.4118b5b440",
70
70
  "ethereum-cryptography": "^2.0.0",
71
71
  "find-up": "^6.3.0",
72
72
  "http-proxy": "^1.18.1",
@@ -75,7 +75,7 @@
75
75
  "yargs": "^17.7.1"
76
76
  },
77
77
  "devDependencies": {
78
- "@lodestar/test-utils": "^1.41.0",
78
+ "@lodestar/test-utils": "^1.42.0-dev.4118b5b440",
79
79
  "@types/http-proxy": "^1.17.10",
80
80
  "@types/js-yaml": "^4.0.5",
81
81
  "@types/yargs": "^17.0.24",
@@ -92,5 +92,5 @@
92
92
  "blockchain",
93
93
  "prover"
94
94
  ],
95
- "gitHead": "13e882a3a430d6df25a408b61b24954277e1f8e8"
95
+ "gitHead": "5dbcd019abb7c965d07bfb513a6699a87fbc49ad"
96
96
  }
package/src/constants.ts CHANGED
@@ -1,4 +1,4 @@
1
- // https://github.com/ethereum/consensus-specs/blob/dev/specs/altair/light-client/p2p-interface.md#configuration
1
+ // https://github.com/ethereum/consensus-specs/blob/v1.6.1/specs/altair/light-client/p2p-interface.md#configuration
2
2
  export const MAX_REQUEST_LIGHT_CLIENT_UPDATES = 128;
3
3
  export const MAX_PAYLOAD_HISTORY = 32;
4
4
  export const VERIFICATION_FAILED_RESPONSE_CODE = -33091;