2022-08-25 16:51:14 -07:00
|
|
|
syntax = "proto3";
|
2022-09-05 16:03:12 -07:00
|
|
|
package colinear.colinearcore;
|
2022-08-25 16:51:14 -07:00
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2022-09-06 15:18:09 -07:00
|
|
|
import "colinearcore/params.proto";
|
|
|
|
import "colinearcore/next_auction.proto";
|
|
|
|
import "colinearcore/auction.proto";
|
2022-09-07 13:25:57 -07:00
|
|
|
import "colinearcore/locked_users.proto";
|
2022-08-25 16:51:14 -07:00
|
|
|
// this line is used by starport scaffolding # genesis/proto/import
|
|
|
|
|
2022-09-06 15:18:09 -07:00
|
|
|
option go_package = "colinear/x/colinearcore/types";
|
2022-08-25 16:51:14 -07:00
|
|
|
|
2022-09-05 16:03:12 -07:00
|
|
|
// GenesisState defines the colinear module's genesis state.
|
2022-08-25 16:51:14 -07:00
|
|
|
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-09-07 13:25:57 -07:00
|
|
|
LockedUsers lockedUsers = 4;
|
2022-08-25 16:51:14 -07:00
|
|
|
// this line is used by starport scaffolding # genesis/proto/state
|
|
|
|
}
|