gpu-compute-chain/proto/colinearcore/genesis.proto

21 lines
698 B
Protocol Buffer
Raw Permalink Normal View History

2022-08-25 16:51:14 -07:00
syntax = "proto3";
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
// GenesisState defines the colinear module's genesis state.
2022-08-25 16:51:14 -07:00
message GenesisState {
Params params = 1 [(gogoproto.nullable) = false];
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
}