lighthouse/validator_client/src
Michael Sproul e961ff60b4 Implement standard keystore API (#2736)
## Issue Addressed

Implements the standard key manager API from https://ethereum.github.io/keymanager-APIs/, formerly https://github.com/ethereum/beacon-APIs/pull/151
Related to https://github.com/sigp/lighthouse/issues/2557

## Proposed Changes

- [x] Add all of the new endpoints from the standard API: GET, POST and DELETE.
- [x] Add a `validators.enabled` column to the slashing protection database to support atomic disable + export.
- [x] Add tests for all the common sequential accesses of the API
- [x] Add tests for interactions with remote signer validators
- [x] Add end-to-end tests for migration of validators from one VC to another
- [x] Implement the authentication scheme from the standard (token bearer auth)

## Additional Info

The `enabled` column in the validators SQL database is necessary to prevent a race condition when exporting slashing protection data. Without the slashing protection database having a way of knowing that a key has been disabled, a concurrent request to sign a message could insert a new record into the database. The `delete_concurrent_with_signing` test exercises this code path, and was indeed failing before the `enabled` column was added.

The validator client authentication has been modified from basic auth to bearer auth, with basic auth preserved for backwards compatibility.
2022-01-30 23:22:04 +00:00
..
duties_service Web3Signer support for VC (#2522) 2021-09-16 03:26:33 +00:00
http_api Implement standard keystore API (#2736) 2022-01-30 23:22:04 +00:00
http_metrics Web3Signer support for VC (#2522) 2021-09-16 03:26:33 +00:00
signing_method Handle merge fork in web3signer (#2631) 2021-12-02 14:26:51 +11:00
attestation_service.rs Web3Signer support for VC (#2522) 2021-09-16 03:26:33 +00:00
beacon_node_fallback.rs VC: don't warn if BN config doesn't match exactly (#2952) 2022-01-24 22:33:04 +00:00
block_service.rs Check proposer index during block production (#2740) 2021-11-01 07:44:40 +00:00
check_synced.rs Remove duplicate log in BN fallback (#2116) 2021-01-06 03:01:48 +00:00
cli.rs Allow custom certificates when connecting to BN (#2703) 2021-10-15 00:07:11 +00:00
config.rs 1.57.0 lints (#2850) 2021-12-03 04:44:30 +00:00
doppelganger_service.rs Fix log output for INFO Found no doppelganger (#2551) 2021-08-29 23:29:47 +00:00
duties_service.rs Web3Signer support for VC (#2522) 2021-09-16 03:26:33 +00:00
graffiti_file.rs Rust 1.54.0 lints (#2483) 2021-07-30 01:11:47 +00:00
initialized_validators.rs Implement standard keystore API (#2736) 2022-01-30 23:22:04 +00:00
key_cache.rs Enable Compatibility with Windows (#2333) 2021-05-19 23:05:16 +00:00
lib.rs 1.57.0 lints (#2850) 2021-12-03 04:44:30 +00:00
notifier.rs Add docs for doppelganger protection (#2496) 2021-08-06 02:13:16 +00:00
signing_method.rs Implement standard keystore API (#2736) 2022-01-30 23:22:04 +00:00
sync_committee_service.rs Web3Signer support for VC (#2522) 2021-09-16 03:26:33 +00:00
validator_store.rs Implement standard keystore API (#2736) 2022-01-30 23:22:04 +00:00