Skip to content

Commit

Permalink
FIX: Prysm Validator Import for existing Setups (#1969)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoPlays authored Jul 22, 2024
1 parent a2705ab commit 3382fa5
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions launcher/src/backend/ethereum-services/PrysmValidatorService.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,22 @@ export class PrysmValidatorService extends NodeService {
image, //image
"v3.1.1", //imageVersion
'/app/cmd/validator/validator --accept-terms-of-use=true --beacon-rpc-provider="' +
provider +
'" --beacon-rpc-gateway-provider="' +
providerGateway +
'" --web --' +
network +
"=true --datadir=" +
dataDir +
" --wallet-dir=" +
walletDir +
" --wallet-password-file=" +
passwordDir +
'/wallet-password --monitoring-host=0.0.0.0 --grpc-gateway-port=7500 --grpc-gateway-host=0.0.0.0 --grpc-gateway-corsdomain="*" --monitoring-host=0.0.0.0 --monitoring-port=8081 --suggested-fee-recipient=0x0000000000000000000000000000000000000000' +
" --graffiti-file=" +
graffitiDir +
"/graffitis.yaml --enable-builder=true --enable-doppelganger=true", //command
provider +
'" --beacon-rpc-gateway-provider="' +
providerGateway +
'" --web --' +
network +
"=true --datadir=" +
dataDir +
" --keymanager-token-file=" + walletDir + "/auth-token" +
" --wallet-dir=" +
walletDir +
" --wallet-password-file=" +
passwordDir +
'/wallet-password --monitoring-host=0.0.0.0 --grpc-gateway-port=7500 --grpc-gateway-host=0.0.0.0 --grpc-gateway-corsdomain="*" --monitoring-host=0.0.0.0 --monitoring-port=8081 --suggested-fee-recipient=0x0000000000000000000000000000000000000000' +
" --graffiti-file=" +
graffitiDir +
"/graffitis.yaml --enable-builder=true --enable-doppelganger=true", //command
null, // entrypoint
null, // env
ports, //ports
Expand Down

0 comments on commit 3382fa5

Please sign in to comment.