mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
34 lines
1.1 KiB
Protocol Buffer
34 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.eth.v1alpha1;
|
|
|
|
import "google/api/annotations.proto";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
option csharp_namespace = "Ethereum.Eth.V1alpha1";
|
|
option go_package = "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1;eth";
|
|
option java_multiple_files = true;
|
|
option java_outer_classname = "HealthProto";
|
|
option java_package = "org.ethereum.eth.v1alpha1";
|
|
option php_namespace = "Ethereum\\Eth\\v1alpha1";
|
|
|
|
// Health service API
|
|
//
|
|
// The health service is able to return important metadata about a beacon node
|
|
// such being able to stream logs via gRPC.
|
|
// DEPRECATED: This endpoint doesn't appear to be used and have been marked for deprecation.
|
|
service Health {
|
|
rpc StreamBeaconLogs(google.protobuf.Empty) returns (stream LogsResponse) {
|
|
option deprecated = true;
|
|
option (google.api.http) = {
|
|
get: "/eth/v1alpha1/health/logs/stream"
|
|
};
|
|
}
|
|
}
|
|
|
|
// DEPRECATED: StreamBeaconLogs endpoint doesn't appear to be used and have been marked for deprecation.
|
|
message LogsResponse {
|
|
option deprecated = true;
|
|
repeated string logs = 1;
|
|
}
|