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

15 lines
245 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 topBid = 4;
}