basic linear vesting payouts (manual claim)

This commit is contained in:
2022-09-14 21:36:30 +00:00
parent edba09b124
commit 7f71e0be9e
15 changed files with 689 additions and 33 deletions

View File

@@ -12,6 +12,7 @@ service Msg {
rpc LockFunds(MsgLockFunds) returns (MsgLockFundsResponse);
rpc UnlockFunds(MsgUnlockFunds) returns (MsgUnlockFundsResponse);
rpc UnlockAllFunds(MsgUnlockAllFunds) returns (MsgUnlockAllFundsResponse);
rpc ClaimFunds(MsgClaimFunds) returns (MsgClaimFundsResponse);
// this line is used by starport scaffolding # proto/tx/rpc
}
@@ -63,4 +64,12 @@ message MsgUnlockAllFunds {
message MsgUnlockAllFundsResponse {
}
message MsgClaimFunds {
string creator = 1;
string auctionId = 2;
}
message MsgClaimFundsResponse {
}
// this line is used by starport scaffolding # proto/tx/message