diff --git a/beacon-chain/entrypoint.sh b/beacon-chain/entrypoint.sh index a89e686..2e4e0a5 100755 --- a/beacon-chain/entrypoint.sh +++ b/beacon-chain/entrypoint.sh @@ -66,9 +66,9 @@ FLAGS="--accept-terms-of-use \ --jwt-secret=$JWT_FILE_PATH \ --execution-endpoint=$ENGINE_URL \ --monitoring-host=0.0.0.0 \ - --grpc-gateway-host=0.0.0.0 \ - --grpc-gateway-port=$BEACON_API_PORT \ - --grpc-gateway-corsdomain=$CORSDOMAIN \ + --http-host=0.0.0.0 \ + --http-port=$BEACON_API_PORT \ + --http-cors-domain=$CORSDOMAIN \ --rpc-host=0.0.0.0 \ --verbosity=$VERBOSITY \ --p2p-tcp-port=$P2P_TCP_PORT \ diff --git a/validator/entrypoint.sh b/validator/entrypoint.sh index 4cec0af..c2e6fa0 100755 --- a/validator/entrypoint.sh +++ b/validator/entrypoint.sh @@ -52,9 +52,9 @@ FLAGS="--datadir=$DATA_DIR \ --beacon-rpc-provider=$BEACON_RPC_PROVIDER \ --beacon-rpc-gateway-provider=$BEACON_RPC_GATEWAY_PROVIDER \ --validators-external-signer-url=$SIGNER_API_URL \ - --grpc-gateway-host=0.0.0.0 \ - --grpc-gateway-port=$VALIDATOR_API_PORT \ - --grpc-gateway-corsdomain=http://0.0.0.0:$VALIDATOR_API_PORT \ + --http-host=0.0.0.0 \ + --http-port=$VALIDATOR_API_PORT \ + --http-cors-domain=http://0.0.0.0:$VALIDATOR_API_PORT \ --graffiti=$VALID_GRAFFITI \ --suggested-fee-recipient=$VALID_FEE_RECIPIENT \ --verbosity=$VERBOSITY \