gpu-compute-chain/proto/cosmostest/auction.proto

22 lines
421 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package cosmostest.cosmostest;
option go_package = "cosmos-test/x/cosmostest/types";
2022-08-27 19:32:06 -07:00
import "cosmostest/bid.proto";
message Auction {
string index = 1;
string name = 2;
string description = 3;
Bid best = 4;
2022-08-31 15:40:28 -07:00
uint64 deadline = 5;
2022-08-31 22:52:22 -07:00
string ceiling = 6;
string denom = 7;
string owner = 8;
2022-09-02 14:03:03 -07:00
uint64 leaseStart = 9;
uint64 leaseEnd = 10;
bool closed = 11;
string remaining = 12;
}