File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66- [ Supported Clients] ( supported-clients.md )
77 - [ Geth] ( clients/geth.md )
88 - [ Lighthouse] ( clients/lighthouse.md )
9+ - [ Prysm] ( clients/prysm.md )
910- [ Getting Started] ( getting-started.md )
1011- [ Advanced Usage] ( advanced/index.md )
1112 - [ Customize Client Settings] ( advanced/client-settings.md )
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ use crate::clients::lighthouse_bootnode::LighthouseBootnode;
55use crate :: clients:: lighthouse_vc:: LighthouseValidatorClient ;
66use crate :: clients:: prometheus:: Prometheus ;
77use crate :: clients:: prysm:: Prysm ;
8+ use crate :: clients:: prysm_vc:: PrysmValidatorClient ;
89use crate :: clients:: reth:: Reth ;
910use crate :: clients:: Client ;
1011use crate :: config:: one_or_many:: OneOrMany ;
@@ -349,6 +350,7 @@ impl EthShadowConfig {
349350 self . add_builtin_client ( "geth" , Geth :: default ( ) ) ;
350351 self . add_builtin_client ( "reth" , Reth :: default ( ) ) ;
351352 self . add_builtin_client ( "prysm" , Prysm :: default ( ) ) ;
353+ self . add_builtin_client ( "prysm_vc" , PrysmValidatorClient :: default ( ) ) ;
352354 self . add_builtin_client ( "lighthouse" , Lighthouse :: default ( ) ) ;
353355 self . add_builtin_client ( "lighthouse_vc" , LighthouseValidatorClient :: default ( ) ) ;
354356 self . add_builtin_client ( "prometheus" , Prometheus :: default ( ) ) ;
You can’t perform that action at this time.
0 commit comments