Preston Van Loon
91b44360fc
Validator: Remove early context cancellation. ( #15369 )
...
This is causing issues where submitting validator registrations and proposer settings were failing about 50% of the time in testing.
v6.0.4-rc.1
v6.0.4
2025-06-02 19:38:14 +00:00
Alleysira
472c5da49e
Fix getEpochCommittees when slot not in given epoch ( #15356 )
...
* fix getCommittees when slot not in given epoch
* add changelog file
* add unit test & fix changelog file format
---------
Co-authored-by: Radosław Kapka <rkapka@wp.pl >
2025-06-02 14:29:42 +00:00
Manu NALEPA
a0060fa794
PeerDAS: Implement blockchain. ( #15350 )
...
* PeerDAS: Implement blockchain.
* Fix forkchoice spectest panic.
* Update beacon-chain/blockchain/error.go
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
* Fix Preston's comment.
* Fix Preston's comment.
* Fix Preston's comment.
* Fix Preston's comment.
* Fix Preston's comment.
* Fix Preston's comment.
---------
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
2025-06-02 11:33:07 +00:00
terence
341c7abd7f
Change default hoodi testnet builder gas limit to 60m ( #15361 )
v6.0.4-rc.0
2025-05-30 18:12:44 +00:00
Rose Jethani
3300866572
Fix validator export failing when validator.db is in nested directory ( #15351 )
...
* files changed
* added changelog file
* added tests and formatting changes
* fixed bugs
* fixed formatting
2025-05-30 14:53:19 +00:00
james-prysm
711984d942
moving event channel and removing close channel there to prevent potential panic ( #15359 )
2025-05-30 13:57:06 +00:00
Preston Van Loon
9b626864f0
Spectests: Use a flat structure for faster test ingestion ( #15313 )
...
* Flatten spectests directory: Move all spectests to a single directory per network.
Commands ran:
```
cd testing/spectest/
```
Then for each network, I ran the following command twice.
```
find . -type f -name '*_test.go' -exec bash -c '
for file; do
dir=$(dirname "$file")
base=$(basename "$file" _test.go)
new_name="./${dir#./}__${base}_test.go"
git mv "$file" "$new_name"
done
' bash {} +
```
Then updated the packages with a command like
```
sed -i 's/package [a-zA-Z0-9_]\+/package mainnet/g' *.go
```
Updated commit from 5edadd7b to address @Kasey's feedback.
* Fix panic when checking types. String is not compatible with DeepEqual.
* Docs: add commentary on the filename convention
* Add a section about nightly tests to the spectest readme. Ref https://github.com/OffchainLabs/prysm/pull/15312
* Set shard_count to optimal value... one!
* Changelog fragment
* use latest unclog release
* Update spectest build instructions after #9122
---------
Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com >
2025-05-29 14:17:34 +00:00
Manu NALEPA
3a3bd3902c
PeerDAS: Implement P2P ( #15347 )
...
* PeerDAS: Implement P2P.
* Fix Terence's comment.
* Fix Terence's comment.
* Fix Terence's comment.
* Fix Preston's comment.
* Fix Preston's comment.
* `TopicFromMessage`: Exit early.
* Fix Preston's comment.
* `TestService_BroadcastDataColumn`: Avoid ugly sleep.
* Fix Kasey's comment.
* Fix Kasey's comment.
* Fix Kasey's comment.
* Fix Kasey's comment.
2025-05-28 15:23:19 +00:00
terence
2c09bc65a4
Clean up verification package ( #15353 )
2025-05-28 14:03:23 +00:00
james-prysm
ba860fd96b
fixing links ( #15354 )
2025-05-28 01:57:44 +00:00
james-prysm
0d5a52d20d
merge builder and structs payload types ( #15283 )
...
* wip
* more wip
* commenting out builder redefinition of payload types
* removing unneeded commented out code and unused type conversions
* fixing unit tests and removing irrelevant unit tests
* gaz
* adding changelog
* Update api/server/structs/conversions_block_execution.go
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
* Update api/server/structs/conversions_block_execution.go
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
* Revert some changes to test files, change the minimum to support the new type changes
* Remove commented block
* fixing import
---------
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
2025-05-27 20:34:24 +00:00
terence
994565acdd
Fix seen blob cache size at start up ( #15348 )
...
* Fix seen blob cache size at start up
* Fix tests
* Manus feedback
* Use electra max blob size
2025-05-27 15:08:39 +00:00
james-prysm
e34313c752
move account changed channel into validator for code cleanup ( #15298 )
...
* move account changed channel into validator for code cleanup
* gaz
2025-05-27 14:58:28 +00:00
Manu NALEPA
00204ffa6a
PeerDAS: Implement the validation pipeline for data column sidecars received via gossip ( #15310 )
...
* PeerDAS: Implement the validation pipeline for data column sidecars received via gossip
* Fix Terence's comment
* Fix Terence's comment.
* Fix Terence's comment.
2025-05-25 22:31:09 +00:00
Justin Traglia
f8d895a5ed
Add support for nightly test vectors ( #15312 )
...
* Add tool to download spec tests
* Rename consensus_spec_tests deps
* Make _get_redirected_url more portable
* Rename env variable
* Add a debug print for sanity
* Add changelog file
* Update newly added fulu tests
* Delete some unnecessary white space
* PR fixes
---------
Co-authored-by: Preston Van Loon <preston@pvl.dev >
2025-05-23 14:15:34 +00:00
Manu NALEPA
58b5aac201
PeerDAS: Refactor reconstruction and improve DataColumnStorage.Get. ( #15309 )
...
* PeerDAS: Refactor reconstruction.
* DB Columns filesystem: Add missing tests and exit early in `Get`.
* Add changelog.
* Fix Preston's comment.
* Fix `TestDataColumnsAlignWithBlock`.
2025-05-23 13:22:53 +00:00
terence
58f08672c0
Add fulu spec tests for random and fork choice ( #15287 )
...
* Add fulu spec tests for random and fork choice
* Remove unused set fork epoch
2025-05-22 16:58:32 +00:00
Preston Van Loon
ec74bac725
Changelog for v6.0.3 release. ( #15311 )
...
* Changelog for v6.0.3
* Add changelog preamble
* Changelog fragment
2025-05-22 16:39:13 +00:00
terence
99cd90f335
Add blob schedule support ( #15272 )
...
* Add blob schedule support
* Feedback
* Fix e2e test
* adding in temporary fix until web3signer is supported for blob schedule in config
* Add fallback
* Uncomment blob schedule from plcae holder fields for test
* Log blob limit increase
* Sort
---------
Co-authored-by: james-prysm <james@prysmaticlabs.com >
2025-05-22 03:19:03 +00:00
Preston Van Loon
74aca49741
Changelog v6.0.2 ( #15270 )
...
* Run unclog for v6.0.2
* Notes on v6.0.2
2025-05-21 20:40:42 +00:00
hardlydearly
3dfd3d0416
refactor: replace context.WithCancel with t.Context in tests ( #15233 )
...
Signed-off-by: hardlydearly <799511800@qq.com >
2025-05-21 17:11:02 +00:00
Bastin
b20821dd8e
Fix wording/typo in lc spec tests ( #15307 )
...
* fix wording
* changelog
2025-05-21 11:02:45 +00:00
Manu NALEPA
e2f0b057b0
Implement data columns filesystem. ( #15257 )
...
* Logging: Add `DataColumnFields`.
* `RODataColumn`: Implement `Slot`, `ParentRoot` and `ProposerIndex`.
* Implement verification for data column sidecars.
* Add changelog.
* Fix Terence's comment.
* Implement data columns filesystem.
* Reduce const verbosity (Kasey's comment).
* `prune`: Aquire `mu` only when needed.
* `Save`: Call `dcs.DataColumnFeed.Send` in a goroutine.
* Fix Terence's comment.
* Fix Terence's comment.
* Fix Terence's comment.
* Fix Terence's comment.
* Fix Terence`s comment.
* Implement a new solution for subscriber.
* Fix Kasey's comment.
2025-05-21 09:35:48 +00:00
Manu NALEPA
3d4e2c5568
Implement data column sidecars verifications. ( #15232 )
...
* Logging: Add `DataColumnFields`.
* `RODataColumn`: Implement `Slot`, `ParentRoot` and `ProposerIndex`.
* Implement verification for data column sidecars.
* Add changelog.
* Fix Terence's comment.
* Fix Terence's comment.
* `SidecarProposerExpected`: Stop returning "sidecar was not proposed by the expected proposer_index" when there is any error in the function.
* `SidecarProposerExpected` & `ValidProposerSignature`: Cache the parent state.
* `VerifyDataColumnsSidecarKZGProofs`: Add benchmarks.
* Fix Kasey's comment.
* Add additional benchmark.
* Fix Kasey's comment.
* Fix Kasey's comment.
* Fix Kasey's comment.
* Fix Preston's comment.
* Fix Preston's comment.
* Fix Preston's comment.
2025-05-20 21:15:29 +00:00
terence
fa744ff78f
Update spec tests to v1.6.0-alpha.0 ( #15306 )
2025-05-20 20:52:09 +00:00
Radosław Kapka
bb5807fd08
Update Beacon API evaluator ( #15304 )
...
* Update Beacon API evaluator
* cleanup and changelog
* changelog message fix
2025-05-20 17:09:01 +00:00
Nilav Prajapati
d6bbfff8b7
Fix cyclical dependency ( #15248 )
...
* fix cyclical dependency
* fix bazel file
* fix comments
* fix: Break cyclical dependency by importing GetRandBlob directly from crypto/random
* add changelog
2025-05-20 16:19:36 +00:00
terence
a8ce85f8de
Add fulu spec tests for operation and epoch processing ( #15284 )
...
* Add fulu spec tets for operation and epoch processing
* Fix operation test version
* Fix RunDepositRequestsTest
2025-05-20 16:18:04 +00:00
Bastin
00bb3ff2b8
Add Light Client Minimal Spec Tests Part 1 ( #15297 )
...
* single merkle proof - altair
* single merkle proof - bellatrix - mainnet
* single merkle proof - capella - mainnet
* single merkle proof - deneb - mainnet
* single merkle proof - electra - mainnet
* changelog entry
* typo
* merge all into common
* update ranking
* single merkle proof
* changelog entry
* update exclusions.txt
2025-05-20 16:08:41 +00:00
Bastin
edab145001
endpoint registration behind flag ( #15303 )
2025-05-20 12:29:07 +00:00
Preston Van Loon
7fd3902b75
Added prysm build data to otel tracing spans ( #15302 )
2025-05-19 17:04:30 +00:00
Joe Clapis
6b6370bc59
Added a symlink to the Docker image from /bin/sh -> /bin/bash ( #15294 )
...
* Added a symlink to the Docker image from /bin/sh -> /bin/bash
* Added changelog fragment
---------
Co-authored-by: Preston Van Loon <preston@pvl.dev >
2025-05-19 16:29:27 +00:00
Potuz
17204ca817
Use independent context when updating domain data ( #15268 )
...
* Use independent context when updating domain data
* Terence's review
* don't cancel immediately
* fix e2e panic
* add new context for roles
2025-05-19 16:14:03 +00:00
Bastin
5bbcfe5237
Enable Light Client req/resp domain ( #15281 )
...
* add rpc toppic mappings and types
* placeholder funcs
* bootstrap write chunk
* add rpc toppic mappings and types
* placeholder funcs
* bootstrap write chunk
* deps
* add messageMapping entries
* add handlers and register RPC
* deps
* tests
* read context in tests
* add tests
* add flag and changelog entry
* fix linter
* deps
* increase topic count in ratelimiter test
* handle flag
2025-05-19 15:15:13 +00:00
terence
c1b99b74c7
Use current slot helper whenever possible ( #15301 )
2025-05-18 16:06:54 +00:00
terence
f02955676b
Remove unused protobuf import ( #15300 )
2025-05-18 16:05:00 +00:00
Bastin
1dea6857d5
Add Light Client Mainnet Spec Tests ( #15295 )
...
* single merkle proof - altair
* single merkle proof - bellatrix - mainnet
* single merkle proof - capella - mainnet
* single merkle proof - deneb - mainnet
* single merkle proof - electra - mainnet
* changelog entry
* typo
* merge all into common
* fail for unsupported test types
2025-05-18 12:22:45 +00:00
terence
eafef8c7c8
Add fulu spec tests for sanity and reward ( #15285 )
...
* Add fulu spec tests for sanity and reward
* Delete setting electra fork epoch to 0
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
---------
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
v6.0.3-rc.0
v6.0.3
2025-05-16 14:03:06 +00:00
terence
0b3289361c
Add fulu spec tests for finality and merkle proof ( #15286 )
2025-05-15 23:59:11 +00:00
Radosław Kapka
c4abdef874
Add {state_id} to Prysm endpoints ( #15245 )
...
* Add `{state_id}` to Prysm endpoints
* Revert "Add `{state_id}` to Prysm endpoints"
This reverts commit 88670e9cc1 .
* update changelog
* update bastin feedback
---------
Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com >
Co-authored-by: james-prysm <james@prysmaticlabs.com >
Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com >
2025-05-15 14:25:05 +00:00
james-prysm
64cbaec326
fixing attester slashing v2 endpoint ( #15291 )
2025-05-15 14:03:35 +00:00
james-prysm
63a0641957
fixing wrong pending consolidations handler for api ( #15290 )
2025-05-15 13:13:56 +00:00
Nishant Das
2737ace5a8
Disable Deposit Log processing after Deposit Requests are Activated ( #15274 )
...
* Disable Log Processing
* Changelog
* Kasey's review
---------
Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com >
2025-05-14 18:23:45 +00:00
Preston Van Loon
9e3d73c1c2
Changelog v6.0.1 ( #15269 )
...
* Run unclog for v6.0.1
* Changelog narrative
* Changelog fragment
2025-05-14 15:14:09 +00:00
terence
325ec97355
Add fulu spec tets for ssz static ( #15279 )
2025-05-14 14:00:38 +00:00
Preston Van Loon
eea53eb6dc
tracing: Add spans to various methods related to GetDuties ( #15271 )
...
* Adding spans for troubleshooting GetDuties latency
* Changelog fragment
2025-05-13 21:50:12 +00:00
Preston Van Loon
6f9a93ac89
spectests: Fix sha256 ( #15278 )
...
* spectests: Fix sha256
* Changelog fragment
2025-05-13 19:01:20 +00:00
terence
93a5fdd8f3
Remove unused variables, functions and more ( #15264 )
2025-05-12 13:25:26 +00:00
Potuz
0251fd78e9
Remove unused fieldparams ( #15263 )
...
Fixes #15262
2025-05-11 13:08:59 +00:00
terence
b4a66a0993
Increase sepolia gas limit to 60m ( #15253 )
v6.0.2-rc.0
v6.0.2
2025-05-08 16:30:50 +00:00