mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 06:34:26 -08:00
scaffold new auction tx
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user