terra-proto 0.5.16-beta.1

Terra Core Protobuf Builds
Documentation
syntax = "proto3";
package terra.market.v1beta1;

import "gogoproto/gogo.proto";
import "terra/market/v1beta1/market.proto";

option go_package = "github.com/terra-money/core/x/market/types";

// GenesisState defines the market module's genesis state.
message GenesisState {
  // params defines all the paramaters of the module.
  Params params = 1 [(gogoproto.nullable) = false];

  // the gap between the TerraPool and the BasePool
  bytes terra_pool_delta = 2
      [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false];
}