upgrade auction structure ton include denom + no owner in tx

This commit is contained in:
2022-09-01 04:49:24 +00:00
parent 9727e246ee
commit ed2061213e
9 changed files with 227 additions and 98 deletions

View File

@@ -11,5 +11,6 @@ message Auction {
string description = 3;
Bid best = 4;
uint64 deadline = 5;
string denom = 6;
string owner = 7;
}

View File

@@ -14,9 +14,9 @@ service Msg {
message MsgNewAuction {
string creator = 1;
string owner = 2;
string name = 3;
string description = 4;
string name = 2;
string description = 3;
string denom = 4;
}
message MsgNewAuctionResponse {