Initialized with Ignite CLI

This commit is contained in:
Developer Experience team at Tendermint
2022-08-25 23:51:14 +00:00
commit 4ea2b97c14
417 changed files with 298980 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
package cosmostest.cosmostest;
import "gogoproto/gogo.proto";
import "cosmostest/params.proto";
// this line is used by starport scaffolding # genesis/proto/import
option go_package = "cosmos-test/x/cosmostest/types";
// GenesisState defines the cosmostest module's genesis state.
message GenesisState {
Params params = 1 [(gogoproto.nullable) = false];
// this line is used by starport scaffolding # genesis/proto/state
}

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package cosmostest.cosmostest;
import "gogoproto/gogo.proto";
option go_package = "cosmos-test/x/cosmostest/types";
// Params defines the parameters for the module.
message Params {
option (gogoproto.goproto_stringer) = false;
}

View File

@@ -0,0 +1,30 @@
syntax = "proto3";
package cosmostest.cosmostest;
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "cosmos/base/query/v1beta1/pagination.proto";
import "cosmostest/params.proto";
// this line is used by starport scaffolding # 1
option go_package = "cosmos-test/x/cosmostest/types";
// Query defines the gRPC querier service.
service Query {
// Parameters queries the parameters of the module.
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
option (google.api.http).get = "/cosmos-test/cosmostest/params";
}
// this line is used by starport scaffolding # 2
}
// QueryParamsRequest is request type for the Query/Params RPC method.
message QueryParamsRequest {}
// QueryParamsResponse is response type for the Query/Params RPC method.
message QueryParamsResponse {
// params holds all the parameters of this module.
Params params = 1 [(gogoproto.nullable) = false];
}
// this line is used by starport scaffolding # 3

13
proto/cosmostest/tx.proto Normal file
View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package cosmostest.cosmostest;
// this line is used by starport scaffolding # proto/tx/import
option go_package = "cosmos-test/x/cosmostest/types";
// Msg defines the Msg service.
service Msg {
// this line is used by starport scaffolding # proto/tx/rpc
}
// this line is used by starport scaffolding # proto/tx/message