19 lines
622 B
Protocol Buffer
19 lines
622 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmostest.cosmostest;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "cosmostest/params.proto";
|
|
import "cosmostest/next_auction.proto";
|
|
import "cosmostest/auction.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];
|
|
NextAuction nextAuction = 2;
|
|
repeated Auction auctionList = 3 [(gogoproto.nullable) = false];
|
|
// this line is used by starport scaffolding # genesis/proto/state
|
|
}
|