2022-08-25 18:49:35 -07:00
|
|
|
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";
|
|
|
|
|
2022-08-25 18:49:35 -07:00
|
|
|
message Auction {
|
|
|
|
string index = 1;
|
|
|
|
string name = 2;
|
|
|
|
string description = 3;
|
2022-08-31 19:02:23 -07:00
|
|
|
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-08-25 18:49:35 -07:00
|
|
|
}
|