mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
28 lines
976 B
Protocol Buffer
28 lines
976 B
Protocol Buffer
|
// Since: cosmos-sdk 0.47
|
||
|
syntax = "proto3";
|
||
|
package cosmos.consensus.v1;
|
||
|
|
||
|
import "google/api/annotations.proto";
|
||
|
import "tendermint/types/params.proto";
|
||
|
|
||
|
option go_package = "github.com/cosmos/cosmos-sdk/x/consensus/types";
|
||
|
|
||
|
// Query defines the gRPC querier service.
|
||
|
service Query {
|
||
|
// Params queries the parameters of x/consensus_param module.
|
||
|
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
|
||
|
option (google.api.http).get = "/cosmos/consensus/v1/params";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// QueryParamsRequest defines the request type for querying x/consensus parameters.
|
||
|
message QueryParamsRequest {}
|
||
|
|
||
|
// QueryParamsResponse defines the response type for querying x/consensus parameters.
|
||
|
message QueryParamsResponse {
|
||
|
// params are the tendermint consensus params stored in the consensus module.
|
||
|
// Please note that `params.version` is not populated in this response, it is
|
||
|
// tracked separately in the x/upgrade module.
|
||
|
tendermint.types.ConsensusParams params = 1;
|
||
|
}
|