realbigsean
efb8a01e91
Merge branch 'unstable' of https://github.com/sigp/lighthouse into electra_attestation_changes
2024-06-20 09:36:56 -04:00
dapplion
dec7cff9c7
Dedup attestation constructor logic in attester cache
2024-06-19 11:31:50 +02:00
dapplion
3ec21a2435
Dedup match_attestation_data
2024-06-19 11:31:50 +02:00
dapplion
dd0d5e2d93
Remove unwraps in Attestation construction
2024-06-19 11:31:50 +02:00
dapplion
d87541c045
De-dup attestation constructor logic
2024-06-19 11:31:50 +02:00
kevaundray
a87f19d801
chore: change impl Into<T> for U to impl From<U> for T ( #5948 )
...
* chore: Change Into trait impl for KzgProof to From trait impl
* chore: change `impl Into <T> for U` to `impl From<U> for T`
* chore: remove `from-over-into` clippy lint exception
2024-06-19 05:02:26 +00:00
Michael Sproul
d5aa2d8dfe
Merge remote-tracking branch 'origin/unstable' into electra_attestation_changes
2024-06-14 12:32:47 +10:00
realbigsean
a74098044a
Rust 1.79 lints ( #5927 )
...
* max_value -> MAX
* remove unnecesary closures
* a couple more max_value -> MAX
* a couple more max_value -> MAX
* Revert "a couple more max_value -> MAX"
This reverts commit 807fe7cae9 .
* unused spec field -> phantom data
* ignore some dead code warnings
* update kurtosis repo location
2024-06-13 23:04:30 +00:00
realbigsean
77c630bc2e
Merge branch 'unstable' of https://github.com/sigp/lighthouse into electra_attestation_changes
2024-06-13 14:45:49 -04:00
realbigsean
c24b2f39b3
Beta compiler fixes ( #5916 )
...
* remove or update unused cfg
2024-06-13 01:32:05 +00:00
Michael Sproul
947e2e8db1
Undo some CLI flag breakages ( #5902 )
...
* Undo some CLI breakages
* Update CLI book docs
2024-06-07 12:40:40 +00:00
realbigsean
49de63f792
Merge branch 'unstable' of https://github.com/sigp/lighthouse into electra_attestation_changes
2024-05-31 08:49:04 -04:00
Eitan Seri-Levi
e340998241
Fix failing attestation tests and misc electra attestation cleanup ( #5810 )
...
* - get attestation related beacon chain tests to pass
- observed attestations are now keyed off of data + committee index
- rename op pool attestationref to compactattestationref
- remove unwraps in agg pool and use options instead
- cherry pick some changes from ef-tests-electra
* cargo fmt
* fix failing test
* Revert dockerfile changes
* make committee_index return option
* function args shouldnt be a ref to attestation ref
* fmt
* fix dup imports
---------
Co-authored-by: realbigsean <seananderson33@GMAIL.com >
2024-05-30 11:51:34 -04:00
Eitan Seri-Levi
df983a83e1
upgrade clap to v4.5 ( #5273 )
...
* upgrade clap to v4.5
* cli fixes
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli
* value parser for mnemonic
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli
* merge unstable
* default --format val
* fix eth sim
* fix eth sim
* merge conflicts
* resolve beta compiler issue
* add num args, version
* add custom flag parser, make rate limiter flags clap friendly
* remove unneeded check
* fmt
* update
* alphabetic order
* resolve merge conflict
* fix test
* resolve conflicts
* fix test
* revert removed if statement
* fmt got me again
* fix broken flag
* make cli
* make cli
* update
* remove -e files
* update
* cli help updates
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli
* cli help updates
* md files
* merge conflict
* merge conflicts
* md
* help text, text width, and a few flag fixes
* fmt
* merge
* revert
* revert
* resolve merge conflicts
* merge conflicts
* revert simulator changes
* require at least one arg
* fix eth sim cli
* resolve merge conflicts
* book changes
* md changes
* cli check
* cli check
* retry cli check
* retry cli check
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli
* cli
* Merge remote-tracking branch 'origin/unstable' into upgrade-clap-cli
* Update CLI docs for Goerli removal
* Fix cargo lock
2024-05-28 05:46:39 +00:00
realbigsean
3f169ef17a
Merge pull request #5835 from realbigsean/fix-validator-logic
...
Fix validator logic
2024-05-24 10:52:32 -04:00
Mark Mackey
bb734afa1d
just one more check bro plz..
2024-05-24 10:50:11 -04:00
Mark Mackey
154b7a7b8a
Publish all aggregates
2024-05-24 10:50:04 -04:00
Pawan Dhananjay
82858bc04e
Send unagg attestation based on fork
2024-05-24 10:49:53 -04:00
Mark Mackey
987abe07f9
Merge remote-tracking branch 'upstream/unstable'
2024-05-24 13:24:37 +02:00
Jimmy Chen
52e31121df
Reduce frequency of polling unknown validators to avoid overwhelming the Beacon Node ( #5628 )
...
* Reduce frequency of polling unknown validators.
* Move slot calculation into for loop.
* Simplify logic.
Co-authored-by: Michael Sproul <micsproul@gmail.com >
* Fix formatting
2024-05-22 00:52:40 +00:00
realbigsean
9f6de8e5d7
Merge remote-tracking branch 'sigp/unstable' into electra_attestation_changes
2024-05-06 17:26:43 -04:00
ethDreamer
19a9479234
Superstruct AggregateAndProof ( #5715 )
...
* Upgrade `superstruct` to `0.8.0`
* superstruct `AggregateAndProof`
2024-05-06 10:09:22 -05:00
Lukas Rusak
da9d38698d
web3Signer: set header "Accept: application/json" as we expect json in the response ( #5692 )
...
* web3Signer: set header "Accept: application/json" as we expect json in the response
The web3signer handler in lighthouse requires a json response.
Setting the header "Accept: application/json" indicates to the web3signer that json is an acceptable response.
Signed-off-by: Lukas Rusak <lorusak@gmail.com >
* fixup! web3Signer: set header "Accept: application/json" as we expect json in the response
2024-05-06 03:02:47 +00:00
Michael Sproul
d3d429ff5c
Improve logging and metrics for block publication ( #5699 )
...
* Improve logging and metrics for block publication
* Add better buckets
* Bump SQL connection timeout for tests.
2024-05-03 08:24:49 +00:00
Mark Mackey
3a41e137d1
Merge remote-tracking branch 'upstream/unstable' into electra_attestation_changes
2024-05-02 18:23:32 -05:00
ethDreamer
e6c7f145dd
superstruct the AttesterSlashing (#5636 )
...
* `superstruct` Attester Fork Variants
* Push a little further
* Deal with Encode / Decode of AttesterSlashing
* not so sure about this..
* Stop Encode/Decode Bounds from Propagating Out
* Tons of Changes..
* More Conversions to AttestationRef
* Add AsReference trait (#15 )
* Add AsReference trait
* Fix some snafus
* Got it Compiling! :D
* Got Tests Building
* Get beacon chain tests compiling
---------
Co-authored-by: Michael Sproul <micsproul@gmail.com >
2024-05-02 18:00:21 -05:00
Michael Sproul
ee974db0ba
Add metric for current epoch total balance ( #5688 )
...
* Add metric for current epoch total balance
2024-05-02 04:50:30 +00:00
Eitan Seri-Levi
3b7132bc0d
Attestation superstruct changes for EIP 7549 ( #5644 )
...
* update
* experiment
* superstruct changes
* revert
* superstruct changes
* fix tests
* indexed attestation
* indexed attestation superstruct
* updated TODOs
2024-04-30 11:49:08 -05:00
Roman Krasiuk
c8ffafb3f8
fix(validator_client): raise soft fd limit ( #4796 )
...
* fix(validator_client): raise soft fd limit
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into rkrasiuk/raise-vc-fdlimit
* cargo lock
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into rkrasiuk/raise-vc-fdlimit
2024-04-29 22:55:23 +00:00
realbigsean
c33edc82eb
Beta compiler fix ( #5659 )
...
* fix beta compiler compilation
* remove unused import
* Revert "remove unused import"
This reverts commit 0bef36b05b .
* Revert "fix beta compiler compilation"
This reverts commit 23152cf4cc .
* rename ununsed fields
* allow dead code on some error variants
* remove unused blob download queue
* add back debug to backfill error
* more allow dead code on errors
2024-04-29 20:45:54 +00:00
Mac L
13f94ef0f3
Rename Merge to Bellatrix ( #5601 )
...
* Rename Merge to Bellatrix
* Remove tree-hash-cache which got readded from the rebase
2024-04-25 20:19:41 +00:00
Mac L
67f8405921
Update Simulator tests ( #5520 )
...
* Rewrite Simulator
* Add fallback simulator
* Try Sean's test fix
* More fixes
* Cleanup
* Merge branch 'unstable' into update-simulator
* Update cli.rs
* Add sync sim to basic sim
* Formatting
* Add fixes and new block production check
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into update-simulator
* fix compile
2024-04-22 15:08:36 +00:00
chonghe
5c30afbc7c
Revise secrets-dir flag in the VC ( #5480 )
...
* Update docs on secrets-dir
* Hidden secrets-dir flag
* Remove conflicts_with
* Restore description
* make cli
* Update book/src/validator-management.md
2024-04-18 07:14:59 +00:00
Michael Sproul
49617f3e82
Set web3signer keep-alive to 20s by default ( #5587 )
...
* Set web3signer keep-alive to 20s by default
* add tests
2024-04-17 15:09:09 +00:00
Mac L
969d12dc6f
Use E for EthSpec globally ( #5264 )
...
* Use `E` for `EthSpec` globally
* Fix tests
* Merge branch 'unstable' into e-ethspec
* Merge branch 'unstable' into e-ethspec
# Conflicts:
# beacon_node/execution_layer/src/engine_api.rs
# beacon_node/execution_layer/src/engine_api/http.rs
# beacon_node/execution_layer/src/engine_api/json_structures.rs
# beacon_node/execution_layer/src/test_utils/handle_rpc.rs
# beacon_node/store/src/partial_beacon_state.rs
# consensus/types/src/beacon_block.rs
# consensus/types/src/beacon_block_body.rs
# consensus/types/src/beacon_state.rs
# consensus/types/src/config_and_preset.rs
# consensus/types/src/execution_payload.rs
# consensus/types/src/execution_payload_header.rs
# consensus/types/src/light_client_optimistic_update.rs
# consensus/types/src/payload.rs
# lcli/src/parse_ssz.rs
2024-04-02 15:12:25 +00:00
Mac L
f8fdb71f50
Add Electra fork boilerplate ( #5122 )
...
* Add Electra fork boilerplate
* Remove electra from spec tests
* Fix tests
* Remove sneaky log file
* Fix more tests
* Fix even more tests and add suggestions
* Remove unrelated lcli addition
* Update more tests
* Merge branch 'unstable' into electra
* Add comment for test-suite lcli override
* Merge branch 'unstable' into electra
* Cleanup
* Merge branch 'unstable' into electra
* Apply suggestions
* Merge branch 'unstable' into electra
* Merge sigp/unstable into electra
* Merge branch 'unstable' into electra
2024-04-02 12:35:02 +00:00
Eitan Seri-Levi
01ec42e75a
Fix Rust beta compiler errors 1.78.0-beta.1 ( #5439 )
...
* remove redundant imports
* fix test
* contains key
* fmt
* Merge branch 'unstable' into fix-beta-compiler
2024-03-20 05:17:02 +00:00
Krishang Shah
b9614571a3
Fix 5288: Doesn't POST if attestations is empty. ( #5318 )
...
* changed to is_empty() and removed WARN
* added log argument
* fix: issue 5288
2024-03-07 08:49:18 +00:00
Michael Sproul
cff6258bb1
Fix duties override bug in VC ( #5305 )
...
* Fix duties override bug in VC
* Use initial request efficiently
* Prevent expired subscriptions by construction
* Clean up selection proof logic
* Add test
2024-03-04 23:15:05 +00:00
Michael Sproul
88b37a10df
Optimise no-op PATCH ops in VC HTTP API ( #5064 )
...
* Optimise no-op changes in VC API
* Handle another no-op case
* Merge remote-tracking branch 'origin/unstable' into opt-vc-patch-api
2024-02-29 01:51:07 +00:00
João Oliveira
65c4ff0775
remove exit-future ( #5183 )
...
* remove exit-future usage,
as it is non maintained, and replace with async-channel which is already in the repo.
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into remove-exit-future
* Merge branch 'unstable' of https://github.com/sigp/lighthouse into remove-exit-future
2024-02-27 22:12:44 +00:00
Age Manning
49536ff103
Add distributed flag to VC to enable support for DVT ( #4867 )
...
* Initial flag building
* Update validator_client/src/cli.rs
Co-authored-by: Abhishek Kumar <43061995+xenowits@users.noreply.github.com >
* Merge latest unstable
* Per slot aggregates
* One slot lookahead for sync committee aggregates
* Update validator_client/src/duties_service.rs
Co-authored-by: Abhishek Kumar <43061995+xenowits@users.noreply.github.com >
* Rename selection_look_ahead
* Merge branch 'unstable' into vc-distributed
* Merge remote-tracking branch 'origin/unstable' into vc-distributed
* Update CLI text
2024-02-15 12:23:58 +00:00
Michael Sproul
7bec3f9b59
Optional slashing protection for remote keys ( #4981 )
...
* Optional slashing protection for remote keys
* Merge remote-tracking branch 'origin/unstable' into disable-slashing-protection-web3signer
* Start writing tests
* Merge remote-tracking branch 'origin/unstable' into disable-slashing-protection-web3signer
* Merge remote-tracking branch 'michael/disable-slashing-protection-web3signer' into disable-slashing-protection-web3signer
* Make half-written tests compile
* Make tests work
* Update help text
* Update book CLI text
* Merge remote-tracking branch 'origin/unstable' into disable-slashing-protection-web3signer
* More logging & CLI tests
* CLI tweaks
2024-02-06 01:30:31 +00:00
Michael Sproul
8fb6989801
Config for web3signer keep-alive ( #5007 )
...
* Allow tweaking connection pool settings
* Build docker image
* Fix imports
* Merge tag 'v4.6.0' into web3signer-keep-alive
v4.6.0
* Delete temp docker build stuff
* Fix tests
* Merge remote-tracking branch 'origin/unstable' into web3signer-keep-alive
* Update CLI text
2024-02-01 08:35:14 +00:00
Michael Sproul
d2aef1b35c
Fix bug in --builder-proposals ( #5151 )
...
* Fix bug in `--builder-proposals`
* Add tests
* More sensible test order
* Fix duplicate builder-boost test case
* Cargo fmt and rename
2024-01-31 05:25:55 +00:00
Eitan Seri-Levi
f9e36c94ed
Expose additional builder booster related flags in the vc ( #5086 )
...
* expose builder booster flags in vc, enable options in validator endpoints, update tests
* resolve failing test
* fix issues related to CreateConfig and MoveConfig
* remove unneeded val, change how boost factor flag logic in the vc, add some additional documentation
* fix typos
* fix typos
* assume builder-proosals flag if one of other two vc builder flags are present
* fmt
* typo
* typo
* Fix CLI help text
* Prioritise per validator builder boost configurations over CLI flags.
* Add http test for builder boost factor with process defaults.
* Fix issue with PATCH request
* Add prefer builder proposals
* Add more builder boost factor tests.
---------
Co-authored-by: Mac L <mjladson@pm.me >
Co-authored-by: Jimmy Chen <jchen.tc@gmail.com >
Co-authored-by: Paul Hauner <paul@paulhauner.com >
2024-01-25 09:09:47 +11:00
Michael Sproul
a403138ed0
Reduce size of futures in HTTP API to prevent stack overflows ( #5104 )
...
* Box::pin a few big futures
* Arc the blocks early in publication
* Fix more tests
2024-01-23 15:32:07 +11:00
Eitan Seri-Levi
5c8c8da8b1
Use blocks v3 endpoint in the VC ( #4813 )
...
* block v3 endpoint init
* block v3 flow
* block v3 flow
* continue refactor
* the full flow...
* add api logic
* add api logic
* add new endpoint version
* added v3 endpoint
* some debugging
* merge v2 flow with v3
* debugging
* tests passing
* tests passing
* revert cargo lock
* initial v3 test
* blinded payload test case passing
* fix clippy issues
* cleanup
* cleanup
* remove dead code
* fixed logs
* add block value
* block value fix
* linting
* merge unstable
* refactor
* add consensus block value
* lint
* update header name to consensus block value
* prevent setting the participation flag
* clone get_epoch_participation result
* fmt
* clone epoch participation outside of the loop
* add block v3 to vc
* add v3 logic into vc
* add produce-block-v3
* refactor based on feedback
* update
* remove comments
* refactor
* header bugfix
* fmt
* resolve merge conflicts
* fix merge
* fix merge
* refactor
* refactor
* cleanup
* lint
* changes based on feedback
* revert
* remove block v3 fallback to v2
* publish_block_v3 should return irrecoveerable errors
* comments
* comments
* fixed issues from merge
* merge conflicts
* Don't activate at fork; support builder_proposals
* Update CLI flags & book
* Remove duplicate `current_slot` parameter in `publish_block` function, and remove unnecessary clone.
* Revert changes on making block errors irrecoverable.
---------
Co-authored-by: Michael Sproul <michael@sigmaprime.io >
Co-authored-by: Jimmy Chen <jchen.tc@gmail.com >
2024-01-08 16:12:39 -05:00
Michael Sproul
af11e78ae1
Clean up blockv3 metadata and client ( #5015 )
...
* Improve block production v3 client
* Delete wayward line
* Overhaul JSON endpoint as well
* Rename timeout param
* Update tests
* I broke everything
* Ah this is an insane fix
* Remove unnecessary optionals
* Doc fix
2023-12-22 09:39:17 -05:00
Eitan Seri-Levi
8ba39cbf2c
Implement graffiti management API ( #4951 )
...
* implement get graffiti
* add set graffiti
* add set graffiti
* delete graffiti
* set graffiti
* set graffiti
* fmt
* added tests
* add graffiti file check
* update
* fixed delete req
* remove unused code
* changes based on feedback
* changes based on feedback
* invalid auth test plus lint
* fmt
* remove unneeded async
2023-12-07 12:02:46 +11:00