scaffold new auction tx

This commit is contained in:
2022-08-27 21:19:03 +00:00
parent 9a08bf8989
commit ef35b58e10
19 changed files with 1165 additions and 22 deletions

View File

@@ -7,7 +7,19 @@ option go_package = "cosmos-test/x/cosmostest/types";
// Msg defines the Msg service.
service Msg {
// this line is used by starport scaffolding # proto/tx/rpc
rpc NewAuction(MsgNewAuction) returns (MsgNewAuctionResponse);
// this line is used by starport scaffolding # proto/tx/rpc
}
message MsgNewAuction {
string creator = 1;
string owner = 2;
string name = 3;
string description = 4;
}
message MsgNewAuctionResponse {
string auctionId = 1;
}
// this line is used by starport scaffolding # proto/tx/message