mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
7c3027801b
* updating some protos * updating proto endpoints * updating generated code * fixing linting * updating protos * updating based on feedback. also removing unused storage protos * adding in deprecation notice on the server functions * Update proto/prysm/v1alpha1/beacon_chain.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/prysm/v1alpha1/beacon_chain.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/prysm/v1alpha1/health.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/prysm/v1alpha1/validator.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/prysm/v1alpha1/debug.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/eth/v1/beacon_chain.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/prysm/v1alpha1/health.proto Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/eth/service/beacon_chain_service.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/eth/service/beacon_chain_service.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Update proto/eth/service/beacon_chain_service.proto Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * addressing feedback * rewording comment * updating comments --------- Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
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/v3/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;
|
|
}
|