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

14 lines
241 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package cosmostest.cosmostest;
option go_package = "cosmos-test/x/cosmostest/types";
message Auction {
string index = 1;
string name = 2;
string description = 3;
2022-08-27 18:20:29 -07:00
uint32 bids = 4;
uint32 highestBid = 5;
}