@@ -73,10 +73,10 @@ message Params {
7373 ProtocolFees protocol_fees = 13 [(gogoproto.nullable ) = false ];
7474 // TSS params
7575 TSSParams tss_params = 14 [(gogoproto.nullable ) = false ];
76- // IBC params
77- IBCParams ibc_params = 15 [(gogoproto.nullable ) = false ];
7876 // Rate limit params
79- RateLimitParams rate_limit_params = 16 [(gogoproto.nullable ) = false ];
77+ RateLimitParams rate_limit_params = 15 [(gogoproto.nullable ) = false ];
78+ // IBC params
79+ IBCParams ibc_params = 16 [(gogoproto.nullable ) = false ];
8080 // Fee sponsorship params
8181 FeeSponsorshipParams fee_sponsorship_params = 17 [(gogoproto.nullable ) = false ];
8282}
@@ -134,6 +134,14 @@ message ProtocolFees {
134134 string collector = 3 ;
135135}
136136
137+ // TSSParams defines the params related to TSS
138+ message TSSParams {
139+ // Timeout duration for DKG request
140+ google.protobuf.Duration dkg_timeout_period = 1 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
141+ // Transition period after which TSS participants update process is completed
142+ google.protobuf.Duration participant_update_transition_period = 2 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
143+ }
144+
137145// RateLimitParams defines the params related to the rate limit for BTC withdrawal
138146message RateLimitParams {
139147 // Global rate limit params
@@ -158,14 +166,6 @@ message AddressRateLimitParams {
158166 int64 quota = 2 ;
159167}
160168
161- // TSSParams defines the params related to TSS
162- message TSSParams {
163- // Timeout duration for DKG request
164- google.protobuf.Duration dkg_timeout_period = 1 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
165- // Transition period after which TSS participants update process is completed
166- google.protobuf.Duration participant_update_transition_period = 2 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
167- }
168-
169169// IBCParams defines the params related to IBC
170170message IBCParams {
171171 // Timeout height offset relative to the current client height
0 commit comments