18 lines
327 B
Protocol Buffer
18 lines
327 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmostest.cosmostest;
|
|
|
|
option go_package = "cosmos-test/x/cosmostest/types";
|
|
|
|
import "cosmostest/bid.proto";
|
|
|
|
message Auction {
|
|
string index = 1;
|
|
string name = 2;
|
|
string description = 3;
|
|
Bid best = 4;
|
|
uint64 deadline = 5;
|
|
string ceiling = 6;
|
|
string denom = 7;
|
|
string owner = 8;
|
|
}
|