scaffold unlock-funds message

This commit is contained in:
2022-09-08 21:49:56 +00:00
parent 275230dc76
commit 04795f8e9e
12 changed files with 613 additions and 25 deletions

View File

@@ -10,6 +10,7 @@ service Msg {
rpc NewAuction(MsgNewAuction) returns (MsgNewAuctionResponse);
rpc NewBid(MsgNewBid) returns (MsgNewBidResponse);
rpc LockFunds(MsgLockFunds) returns (MsgLockFundsResponse);
rpc UnlockFunds(MsgUnlockFunds) returns (MsgUnlockFundsResponse);
// this line is used by starport scaffolding # proto/tx/rpc
}
@@ -43,4 +44,12 @@ message MsgLockFunds {
message MsgLockFundsResponse {
}
message MsgUnlockFunds {
string creator = 1;
string amount = 2;
}
message MsgUnlockFundsResponse {
}
// this line is used by starport scaffolding # proto/tx/message