@lodestar/beacon-node 1.28.0-dev.d1f9f7b32a → 1.28.0-dev.d60218eecb

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.
Files changed (48) hide show
  1. package/lib/api/impl/config/constants.d.ts +13 -13
  2. package/lib/api/rest/activeSockets.d.ts +0 -1
  3. package/lib/api/rest/base.js +3 -2
  4. package/lib/api/rest/base.js.map +1 -1
  5. package/lib/api/rest/swaggerUI.d.ts +2 -3
  6. package/lib/chain/archiver/archiver.d.ts +1 -1
  7. package/lib/chain/archiver/strategies/frequencyStateArchiveStrategy.d.ts +1 -1
  8. package/lib/chain/beaconProposerCache.d.ts +1 -1
  9. package/lib/chain/blocks/index.js +5 -6
  10. package/lib/chain/blocks/index.js.map +1 -1
  11. package/lib/chain/chain.d.ts +5 -0
  12. package/lib/chain/chain.js +18 -3
  13. package/lib/chain/chain.js.map +1 -1
  14. package/lib/chain/emitter.d.ts +3 -2
  15. package/lib/chain/interface.d.ts +1 -0
  16. package/lib/chain/regen/regen.d.ts +13 -0
  17. package/lib/chain/regen/regen.js +31 -4
  18. package/lib/chain/regen/regen.js.map +1 -1
  19. package/lib/chain/serializeState.js +12 -5
  20. package/lib/chain/serializeState.js.map +1 -1
  21. package/lib/chain/stateCache/persistentCheckpointsCache.js +39 -12
  22. package/lib/chain/stateCache/persistentCheckpointsCache.js.map +1 -1
  23. package/lib/constants/constants.d.ts +2 -3
  24. package/lib/db/repositories/backfilledRanges.d.ts +0 -1
  25. package/lib/db/repositories/block.d.ts +0 -1
  26. package/lib/db/repositories/blockArchive.d.ts +0 -1
  27. package/lib/db/repositories/depositDataRoot.d.ts +0 -1
  28. package/lib/db/repositories/eth1Data.d.ts +0 -1
  29. package/lib/eth1/eth1DepositDataTracker.js +1 -1
  30. package/lib/eth1/eth1DepositDataTracker.js.map +1 -1
  31. package/lib/eth1/provider/jsonRpcHttpClient.d.ts +12 -11
  32. package/lib/eth1/provider/jwt.d.ts +0 -1
  33. package/lib/execution/engine/payloadIdCache.d.ts +1 -1
  34. package/lib/network/core/events.d.ts +3 -1
  35. package/lib/network/discv5/index.d.ts +3 -2
  36. package/lib/network/events.d.ts +3 -1
  37. package/lib/network/gossip/constants.d.ts +2 -3
  38. package/lib/network/gossip/topic.d.ts +5 -1
  39. package/lib/node/utils/interop/state.d.ts +1 -2
  40. package/lib/sync/backfill/backfill.d.ts +3 -2
  41. package/lib/sync/range/range.d.ts +3 -2
  42. package/lib/util/bufferPool.d.ts +0 -1
  43. package/lib/util/clock.d.ts +0 -1
  44. package/lib/util/graffiti.d.ts +0 -1
  45. package/lib/util/hex.d.ts +0 -1
  46. package/lib/util/multifork.d.ts +0 -1
  47. package/lib/util/workerEvents.d.ts +0 -1
  48. package/package.json +25 -25
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.d1f9f7b32a",
14
+ "version": "1.28.0-dev.d60218eecb",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -78,18 +78,18 @@
78
78
  "lint": "biome check src/ test/",
79
79
  "lint:fix": "yarn run lint --write",
80
80
  "test": "yarn test:unit && yarn test:e2e",
81
- "test:unit:minimal": "LODESTAR_PRESET=minimal vitest --run --dir test/unit/",
82
- "test:unit:mainnet": "LODESTAR_PRESET=mainnet vitest --run --dir test/unit-mainnet",
81
+ "test:unit:minimal": "LODESTAR_PRESET=minimal vitest run --dir test/unit/",
82
+ "test:unit:mainnet": "LODESTAR_PRESET=mainnet vitest run --dir test/unit-mainnet",
83
83
  "test:unit": "wrapper() { yarn test:unit:minimal $@ && yarn test:unit:mainnet $@; }; wrapper",
84
- "test:e2e": "LODESTAR_PRESET=minimal vitest --run --config vitest.e2e.config.ts --dir test/e2e",
85
- "test:sim": "vitest --run test/sim/**/*.test.ts",
86
- "test:sim:mergemock": "vitest --run test/sim/mergemock.test.ts",
87
- "test:sim:blobs": "vitest --run test/sim/4844-interop.test.ts",
84
+ "test:e2e": "LODESTAR_PRESET=minimal vitest run --config vitest.e2e.config.ts --dir test/e2e",
85
+ "test:sim": "vitest run test/sim/**/*.test.ts",
86
+ "test:sim:mergemock": "vitest run test/sim/mergemock.test.ts",
87
+ "test:sim:blobs": "vitest run test/sim/4844-interop.test.ts",
88
88
  "download-spec-tests": "node --loader=ts-node/esm test/spec/downloadTests.ts",
89
- "test:spec:bls": "vitest --run --config vitest.spec.config.ts --dir test/spec/bls/",
90
- "test:spec:general": "vitest --run --config vitest.spec.config.ts --dir test/spec/general/",
91
- "test:spec:minimal": "LODESTAR_PRESET=minimal vitest --run --config vitest.spec.config.ts --dir test/spec/presets/",
92
- "test:spec:mainnet": "LODESTAR_PRESET=mainnet vitest --run --config vitest.spec.config.ts --dir test/spec/presets/",
89
+ "test:spec:bls": "vitest run --config vitest.spec.config.ts --dir test/spec/bls/",
90
+ "test:spec:general": "vitest run --config vitest.spec.config.ts --dir test/spec/general/",
91
+ "test:spec:minimal": "LODESTAR_PRESET=minimal vitest run --config vitest.spec.config.ts --dir test/spec/presets/",
92
+ "test:spec:mainnet": "LODESTAR_PRESET=mainnet vitest run --config vitest.spec.config.ts --dir test/spec/presets/",
93
93
  "test:spec": "yarn test:spec:bls && yarn test:spec:general && yarn test:spec:minimal && yarn test:spec:mainnet",
94
94
  "check-readme": "typescript-docs-verifier"
95
95
  },
@@ -120,24 +120,24 @@
120
120
  "@libp2p/peer-id-factory": "^4.1.0",
121
121
  "@libp2p/prometheus-metrics": "^3.0.21",
122
122
  "@libp2p/tcp": "9.0.23",
123
- "@lodestar/api": "1.28.0-dev.d1f9f7b32a",
124
- "@lodestar/config": "1.28.0-dev.d1f9f7b32a",
125
- "@lodestar/db": "1.28.0-dev.d1f9f7b32a",
126
- "@lodestar/fork-choice": "1.28.0-dev.d1f9f7b32a",
127
- "@lodestar/light-client": "1.28.0-dev.d1f9f7b32a",
128
- "@lodestar/logger": "1.28.0-dev.d1f9f7b32a",
129
- "@lodestar/params": "1.28.0-dev.d1f9f7b32a",
130
- "@lodestar/reqresp": "1.28.0-dev.d1f9f7b32a",
131
- "@lodestar/state-transition": "1.28.0-dev.d1f9f7b32a",
132
- "@lodestar/types": "1.28.0-dev.d1f9f7b32a",
133
- "@lodestar/utils": "1.28.0-dev.d1f9f7b32a",
134
- "@lodestar/validator": "1.28.0-dev.d1f9f7b32a",
123
+ "@lodestar/api": "1.28.0-dev.d60218eecb",
124
+ "@lodestar/config": "1.28.0-dev.d60218eecb",
125
+ "@lodestar/db": "1.28.0-dev.d60218eecb",
126
+ "@lodestar/fork-choice": "1.28.0-dev.d60218eecb",
127
+ "@lodestar/light-client": "1.28.0-dev.d60218eecb",
128
+ "@lodestar/logger": "1.28.0-dev.d60218eecb",
129
+ "@lodestar/params": "1.28.0-dev.d60218eecb",
130
+ "@lodestar/reqresp": "1.28.0-dev.d60218eecb",
131
+ "@lodestar/state-transition": "1.28.0-dev.d60218eecb",
132
+ "@lodestar/types": "1.28.0-dev.d60218eecb",
133
+ "@lodestar/utils": "1.28.0-dev.d60218eecb",
134
+ "@lodestar/validator": "1.28.0-dev.d60218eecb",
135
135
  "@multiformats/multiaddr": "^12.1.3",
136
136
  "c-kzg": "^2.1.2",
137
137
  "datastore-core": "^9.1.1",
138
138
  "datastore-level": "^10.1.1",
139
139
  "deepmerge": "^4.3.1",
140
- "fastify": "^5.0.0",
140
+ "fastify": "^5.2.1",
141
141
  "interface-datastore": "^8.2.7",
142
142
  "it-all": "^3.0.4",
143
143
  "it-pipe": "^3.0.1",
@@ -168,5 +168,5 @@
168
168
  "beacon",
169
169
  "blockchain"
170
170
  ],
171
- "gitHead": "b13ebb7404f5fd254d47414d1cfb400e9c5bd142"
171
+ "gitHead": "8edf6631c06e15503bf75c259f0ce6a7a86aa2b2"
172
172
  }