@@ -14,15 +14,15 @@ option go_package = "github.com/milkyway-labs/milkyway/x/liquidvesting/types";
14
14
service Msg {
15
15
option (cosmos.msg.v1.service ) = true ;
16
16
17
- // MintVestedRepresentation defines the operation to mint a user's staked
18
- // vested tokens representation that can be used in the liquid vesting module.
19
- rpc MintVestedRepresentation ( MsgMintVestedRepresentation )
20
- returns (MsgMintVestedRepresentationResponse );
17
+ // MintLockedRepresentation defines the operation to mint a user's staked
18
+ // locked tokens representation that can be used in the liquid vesting module.
19
+ rpc MintLockedRepresentation ( MsgMintLockedRepresentation )
20
+ returns (MsgMintLockedRepresentationResponse );
21
21
22
- // BurnVestedRepresentation defines the operation to burn a user's staked
23
- // vested tokens representation.
24
- rpc BurnVestedRepresentation ( MsgBurnVestedRepresentation )
25
- returns (MsgBurnVestedRepresentationResponse );
22
+ // BurnLockedRepresentation defines the operation to burn a user's staked
23
+ // locked tokens representation.
24
+ rpc BurnLockedRepresentation ( MsgBurnLockedRepresentation )
25
+ returns (MsgBurnLockedRepresentationResponse );
26
26
27
27
// WithdrawInsuranceFund defines the operation to withdraw an amount
28
28
// of tokens from the user's insurance fund.
@@ -39,13 +39,13 @@ service Msg {
39
39
rpc UpdateParams (MsgUpdateParams ) returns (MsgUpdateParamsResponse );
40
40
}
41
41
42
- // MsgMintVestedRepresentation defines the message structure for the
43
- // MintVestedRepresentation gRPC service method. It allows an authorized
44
- // account to mint a user's staked vested tokens representation that can be
42
+ // MsgMintLockedRepresentation defines the message structure for the
43
+ // MintLockedRepresentation gRPC service method. It allows an authorized
44
+ // account to mint a user's staked locked tokens representation that can be
45
45
// used in the liquid vesting module.
46
- message MsgMintVestedRepresentation {
46
+ message MsgMintLockedRepresentation {
47
47
option (cosmos.msg.v1.signer ) = "sender" ;
48
- option (amino.name ) = "milkyway/MsgMintVestedRepresentation " ;
48
+ option (amino.name ) = "milkyway/MsgMintLockedRepresentation " ;
49
49
50
50
// User that want to trigger the tokens mint.
51
51
string sender = 1 [ (cosmos_proto.scalar ) = "cosmos.AddressString" ];
@@ -61,16 +61,16 @@ message MsgMintVestedRepresentation {
61
61
];
62
62
}
63
63
64
- // MsgMintVestedRepresentationResponse is the return value of
65
- // MsgMintVestedRepresentation .
66
- message MsgMintVestedRepresentationResponse {}
64
+ // MsgMintLockedRepresentationResponse is the return value of
65
+ // MsgMintLockedRepresentation .
66
+ message MsgMintLockedRepresentationResponse {}
67
67
68
- // MsgBurnVestedRepresentation defines the message structure for the
69
- // BurnVestedRepresentation gRPC service method. It allows an authorized
70
- // account to burn a user's staked vested tokens representation.
71
- message MsgBurnVestedRepresentation {
68
+ // MsgBurnLockedRepresentation defines the message structure for the
69
+ // BurnLockedRepresentation gRPC service method. It allows an authorized
70
+ // account to burn a user's staked locked tokens representation.
71
+ message MsgBurnLockedRepresentation {
72
72
option (cosmos.msg.v1.signer ) = "sender" ;
73
- option (amino.name ) = "milkyway/MsgBurnVestedRepresentation " ;
73
+ option (amino.name ) = "milkyway/MsgBurnLockedRepresentation " ;
74
74
75
75
// User that want to trigger the tokens burn.
76
76
string sender = 1 [ (cosmos_proto.scalar ) = "cosmos.AddressString" ];
@@ -86,9 +86,9 @@ message MsgBurnVestedRepresentation {
86
86
];
87
87
}
88
88
89
- // MsgBurnVestedRepresentationResponse is the return value of
90
- // MsgBurnVestedRepresentation .
91
- message MsgBurnVestedRepresentationResponse {}
89
+ // MsgBurnLockedRepresentationResponse is the return value of
90
+ // MsgBurnLockedRepresentation .
91
+ message MsgBurnLockedRepresentationResponse {}
92
92
93
93
// MsgWithdrawInsuranceFund defines the message structure for the
94
94
// WithdrawInsuranceFund gRPC service method.
0 commit comments