2022-08-25 16:51:14 -07:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmostest.cosmostest;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cosmostest/params.proto";
|
2022-08-25 18:49:35 -07:00
|
|
|
import "cosmostest/next_auction.proto";
|
|
|
|
import "cosmostest/auction.proto";
|
2022-08-25 16:51:14 -07:00
|
|
|
// 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];
|
2022-08-25 18:49:35 -07:00
|
|
|
NextAuction nextAuction = 2;
|
|
|
|
repeated Auction auctionList = 3 [(gogoproto.nullable) = false];
|
2022-08-25 16:51:14 -07:00
|
|
|
// this line is used by starport scaffolding # genesis/proto/state
|
|
|
|
}
|