-
Notifications
You must be signed in to change notification settings - Fork 0
/
reflection.proto
41 lines (34 loc) · 1.57 KB
/
reflection.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
syntax = "proto3";
package cosmos.base.reflection.v1beta1;
message ListAllInterfacesRequest {}
message ListAllInterfacesResponse {
repeated string interface_names = 1;
}
message ListImplementationsRequest {
string interface_name = 1;
}
message ListImplementationsResponse {
repeated string implementation_message_names = 1;
}
message GetAuthnDescriptorRequest {}
message GetAuthnDescriptorResponse {}
message GetChainDescriptorRequest {}
message GetChainDescriptorResponse {}
message GetCodecDescriptorRequest {}
message GetCodecDescriptorResponse {}
message GetConfigurationDescriptorRequest {}
message GetConfigurationDescriptorResponse {}
message GetQueryServicesDescriptorRequest {}
message GetQueryServicesDescriptorResponse {}
message GetTxDescriptorRequest {}
message GetTxDescriptorResponse {}
service ReflectionService {
rpc ListAllInterfaces(ListAllInterfacesRequest) returns (ListAllInterfacesResponse);
rpc ListImplementations(ListImplementationsRequest) returns (ListImplementationsResponse);
rpc GetAuthnDescriptor(GetAuthnDescriptorRequest) returns (GetAuthnDescriptorResponse);
rpc GetChainDescriptor(GetChainDescriptorRequest) returns (GetChainDescriptorResponse);
rpc GetCodecDescriptor(GetCodecDescriptorRequest) returns (GetCodecDescriptorResponse);
rpc GetConfigurationDescriptor(GetConfigurationDescriptorRequest) returns (GetConfigurationDescriptorResponse);
rpc GetQueryServicesDescriptor(GetQueryServicesDescriptorRequest) returns (GetQueryServicesDescriptorResponse);
rpc GetTxDescriptor(GetTxDescriptorRequest) returns (GetTxDescriptorResponse);
}