@@ -90,11 +90,9 @@ message MsgImportMorseClaimableAccounts {
9090message MsgImportMorseClaimableAccountsResponse {
9191 // Next free index: 3
9292
93- // On-chain computed sha256 hash of the morse_account_state provided in the corresponding MsgCreateMorseAccountState.
94- bytes state_hash = 1 [(gogoproto.jsontag ) = "state_hash" ];
95-
96- // Number of claimable accounts (EOAs) collected from Morse state export.
97- uint64 num_accounts = 2 [(gogoproto.jsontag ) = "num_accounts" ];
93+ // bytes state_hash = 1 [(gogoproto.jsontag) = "state_hash"];
94+ // uint64 num_accounts = 2 [(gogoproto.jsontag) = "num_accounts"];
95+ reserved 1 , 2 ;
9896}
9997
10098// MsgClaimMorseAccount is used to:
@@ -136,15 +134,10 @@ message MsgClaimMorseAccount {
136134message MsgClaimMorseAccountResponse {
137135 // Next free index: 4
138136
139- // The hex-encoded address of the Morse account whose balance will be claimed.
140- // E.g.: 00f9900606fa3d5c9179fc0c8513078a53a2073e
141- string morse_src_address = 1 [(gogoproto.jsontag ) = "morse_src_address" ];
142-
143- // The balance which was claimed.
144- cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.jsontag ) = "claimed_balance" , (gogoproto.nullable ) = false ];
145-
146- // The session end height (on Shannon) in which the claim was committed (i.e. claimed).
147- int64 session_end_height = 3 [(gogoproto.jsontag ) = "session_end_height" ];
137+ // string morse_src_address = 1 [(gogoproto.jsontag) = "morse_src_address"];
138+ // cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.jsontag) = "claimed_balance", (gogoproto.nullable) = false];
139+ // int64 session_end_height = 3 [(gogoproto.jsontag) = "session_end_height"];
140+ reserved 1 , 2 , 3 ;
148141}
149142
150143// MsgClaimMorseApplication is used to:
@@ -190,21 +183,12 @@ message MsgClaimMorseApplication {
190183message MsgClaimMorseApplicationResponse {
191184 // Next free index: 6
192185
193- // The hex-encoded address of the Morse account whose balance will be claimed.
194- string morse_src_address = 1 [(gogoproto.jsontag ) = "morse_src_address" ];
195-
196- // The unstaked balance which was claimed.
197- cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.jsontag ) = "claimed_balance" , (gogoproto.nullable ) = false ];
198-
199- // The stake of the application which was staked as a result of the claim.
200- // If the application was already staked, this amount does not include the initial stake (i.e. only the portion which was "claimed").
201- cosmos.base.v1beta1.Coin claimedApplicationStake = 3 [(gogoproto.jsontag ) = "claimed_application_stake" , (gogoproto.nullable ) = false ];
202-
203- // The session end height (on Shannon) in which the claim was committed (i.e. claimed).
204- int64 session_end_height = 4 [(gogoproto.jsontag ) = "session_end_height" ];
205-
206- // The application which was staked as a result of the claim.
207- application.Application application = 5 [(gogoproto.jsontag ) = "application" ];
186+ // string morse_src_address = 1 [(gogoproto.jsontag) = "morse_src_address"];
187+ // cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.jsontag) = "claimed_balance", (gogoproto.nullable) = false];
188+ // cosmos.base.v1beta1.Coin claimedApplicationStake = 3 [(gogoproto.jsontag) = "claimed_application_stake", (gogoproto.nullable) = false];
189+ // int64 session_end_height = 4 [(gogoproto.jsontag) = "session_end_height"];
190+ // application.Application application = 5 [(gogoproto.jsontag) = "application"];
191+ reserved 1 , 2 , 3 , 4 , 5 ;
208192}
209193
210194// MsgClaimMorseSupplier is used to:
@@ -279,39 +263,14 @@ message MsgClaimMorseSupplier {
279263message MsgClaimMorseSupplierResponse {
280264 // Next free index: 10
281265
282- reserved 1 ;
283-
284- // The hex-encoded address of the Morse non-custodial (i.e. operator) account.
285- // - Unstaked balance will be migrated 1:1
286- // - Stake will be migrated 1:1 from morse_node_address to shannon_operator_address
287- // - Morse non-custodial (i.e. operator) address.
288- // If morse_output_address is not set, this is the custodial address.
289- // - See 'pocket nodes --help' for more information. Note that this refers to the Morse CLI.
290- // E.g.: 00f9900606fa3d5c9179fc0c8513078a53a2073e
291- string morse_node_address = 9 [(gogoproto.jsontag ) = "morse_node_address" ];
292-
293- // Hex-encoded address of the Morse output account/wallet associated with the Morse node/supplier.
294- // - E.g.: 00f9900606fa3d5c9179fc0c8513078a53a2073e
295- // - Morse custodial (i.e. owner) address, which owns the staked tokens of the operator.
296- // See 'pocket nodes --help' for more information. Note that this refers to the Morse CLI.
297- string morse_output_address = 8 [(gogoproto.jsontag ) = "morse_output_address" ];
298-
299- // The type of supplier claim signer, indicating which actor executed the claim
300- // and whether it was a custodial or non-custodial claim.
301- // - MORSE_SUPPLIER_CLAIM_SIGNER_TYPE_NON_CUSTODIAL_SIGNED_BY_ADDR
302- // - MORSE_SUPPLIER_CLAIM_SIGNER_TYPE_CUSTODIAL_SIGNED_BY_OPERATOR
303- // - MORSE_SUPPLIER_CLAIM_SIGNER_TYPE_CUSTODIAL_SIGNED_BY_OWNER
304- MorseSupplierClaimSignerType claim_signer_type = 7 [(gogoproto.jsontag ) = "claim_signer_type" ];
305-
306- // The unstaked balance which was claimed.
307- cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "claimed_balance" ];
308- cosmos.base.v1beta1.Coin claimed_supplier_stake = 3 [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "claimed_supplier_stake" ];
309-
310- // The session end height (on Shannon) in which the claim was committed (i.e. claimed).
311- int64 session_end_height = 4 [(gogoproto.jsontag ) = "session_end_height" ];
312-
313- // The supplier which was staked as a result of the claim.
314- shared.Supplier supplier = 5 [(gogoproto.jsontag ) = "supplier" ];
266+ // string morse_node_address = 9 [(gogoproto.jsontag) = "morse_node_address"];
267+ // string morse_output_address = 8 [(gogoproto.jsontag) = "morse_output_address"];
268+ // MorseSupplierClaimSignerType claim_signer_type = 7 [(gogoproto.jsontag) = "claim_signer_type"];
269+ // cosmos.base.v1beta1.Coin claimed_balance = 2 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "claimed_balance"];
270+ // cosmos.base.v1beta1.Coin claimed_supplier_stake = 3 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "claimed_supplier_stake"];
271+ // int64 session_end_height = 4 [(gogoproto.jsontag) = "session_end_height"];
272+ // shared.Supplier supplier = 5 [(gogoproto.jsontag) = "supplier"];
273+ reserved 1 , 2 , 3 , 4 , 5 , 7 , 8 , 9 ;
315274}
316275
317276// MsgRecoverMorseAccount is used to:
@@ -353,23 +312,11 @@ message MsgRecoverMorseAccount {
353312message MsgRecoverMorseAccountResponse {
354313 // Next free index: 5
355314
356- // EITHER:
357- // - The hex-encoded address of the Morse account whose stake(s) and/or balances were recovered.
358- // This address MAY be invalid but NEVER empty.
359- // E.g.: 00f9900606fa3d5c9179fc0c8513078a53a2073e
360- // - The name of a Morse module account whose balance was recovered.
361- // E.g. "dao" or "fee-collector"
362- string morse_src_address = 1 [(gogoproto.jsontag ) = "morse_src_address" ];
363-
364- // The sum of any unstaked and staked balances which were recovered.
365- cosmos.base.v1beta1.Coin recovered_balance = 2 [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "recovered_balance" ];
366-
367- // The session end height (on Shannon) in which the recovery was committed (i.e. recovered).
368- int64 session_end_height = 3 [(gogoproto.jsontag ) = "session_end_height" ];
369-
370- // The bech32-encoded address of the Shannon account to which the Morse account's stake(s) and/or
371- // balance(s) were recovered.
372- string shannon_dest_address = 4 [(cosmos_proto.scalar ) = "cosmos.AddressString", (gogoproto.jsontag) = "shannon_dest_address" ];
315+ // string morse_src_address = 1 [(gogoproto.jsontag) = "morse_src_address"];
316+ // cosmos.base.v1beta1.Coin recovered_balance = 2 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "recovered_balance"];
317+ // int64 session_end_height = 3 [(gogoproto.jsontag) = "session_end_height"];
318+ // string shannon_dest_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", (gogoproto.jsontag) = "shannon_dest_address"];
319+ reserved 1 , 2 , 3 , 4 ;
373320
374321 // TODO_MAINNET_MIGRATION(@bryanchriswhite): Add shannon_dest_address to MsgRecoverMorseAccountResponse.
375322}
0 commit comments