19 lines
625 B
Protocol Buffer
19 lines
625 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package colinear.colinearcore;
|
||
|
|
||
|
import "gogoproto/gogo.proto";
|
||
|
import "colinearcore/params.proto";
|
||
|
import "colinearcore/next_auction.proto";
|
||
|
import "colinearcore/auction.proto";
|
||
|
// this line is used by starport scaffolding # genesis/proto/import
|
||
|
|
||
|
option go_package = "colinear/x/colinearcore/types";
|
||
|
|
||
|
// GenesisState defines the colinear 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
|
||
|
}
|