github.com/okex/exchain@v1.8.0/libs/ibc-go/proto/ibc/applications/interchain_accounts/controller/v1/query.proto (about)

     1  syntax = "proto3";
     2  
     3  package ibc.applications.interchain_accounts.controller.v1;
     4  
     5  option go_package = "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/controller/types";
     6  
     7  import "ibc/applications/interchain_accounts/controller/v1/controller.proto";
     8  import "google/api/annotations.proto";
     9  
    10  // Query provides defines the gRPC querier service.
    11  service Query {
    12    // Params queries all parameters of the ICA controller submodule.
    13    rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
    14      option (google.api.http).get = "/ibc/apps/interchain_accounts/controller/v1/params";
    15    }
    16  }
    17  
    18  // QueryParamsRequest is the request type for the Query/Params RPC method.
    19  message QueryParamsRequest {}
    20  
    21  // QueryParamsResponse is the response type for the Query/Params RPC method.
    22  message QueryParamsResponse {
    23    // params defines the parameters of the module.
    24    Params params = 1;
    25  }