mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-05 14:04:25 -08:00
scaffold newBid tx
This commit is contained in:
@@ -8,6 +8,7 @@ option go_package = "cosmos-test/x/cosmostest/types";
|
||||
// Msg defines the Msg service.
|
||||
service Msg {
|
||||
rpc NewAuction(MsgNewAuction) returns (MsgNewAuctionResponse);
|
||||
rpc NewBid(MsgNewBid) returns (MsgNewBidResponse);
|
||||
// this line is used by starport scaffolding # proto/tx/rpc
|
||||
}
|
||||
|
||||
@@ -22,4 +23,13 @@ message MsgNewAuctionResponse {
|
||||
string auctionId = 1;
|
||||
}
|
||||
|
||||
message MsgNewBid {
|
||||
string creator = 1;
|
||||
string auctionIndex = 2;
|
||||
string amount = 3;
|
||||
}
|
||||
|
||||
message MsgNewBidResponse {
|
||||
}
|
||||
|
||||
// this line is used by starport scaffolding # proto/tx/message
|
||||
|
||||
Reference in New Issue
Block a user