github.com/InjectiveLabs/sdk-go@v1.53.0/proto/injective/auction/v1beta1/genesis.proto (about)

     1  syntax = "proto3";
     2  package injective.auction.v1beta1;
     3  
     4  import "injective/auction/v1beta1/auction.proto";
     5  import "gogoproto/gogo.proto";
     6  
     7  option go_package = "github.com/InjectiveLabs/injective-core/injective-chain/modules/auction/types";
     8  
     9  // GenesisState defines the auction module's genesis state.
    10  message GenesisState {
    11    // params defines all the parameters of related to auction.
    12    Params params = 1 [ (gogoproto.nullable) = false ];
    13  
    14    // current auction round
    15    uint64 auction_round = 2;
    16  
    17    // current highest bid
    18    Bid highest_bid = 3;
    19  
    20    // auction ending timestamp
    21    int64 auction_ending_timestamp = 4;
    22  
    23    // last auction result
    24    LastAuctionResult last_auction_result = 5;
    25  }