coreum-js 2.5.11 → 2.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/cosmos/authz/v1beta1/authz.d.ts +167 -0
- package/dist/main/cosmos/authz/v1beta1/authz.js +320 -0
- package/dist/main/cosmos/authz/v1beta1/event.d.ts +80 -0
- package/dist/main/cosmos/authz/v1beta1/event.js +163 -0
- package/dist/main/cosmos/authz/v1beta1/genesis.d.ts +121 -0
- package/dist/main/cosmos/authz/v1beta1/genesis.js +69 -0
- package/dist/main/cosmos/authz/v1beta1/pagination.d.ts +128 -0
- package/dist/main/cosmos/authz/v1beta1/pagination.js +228 -0
- package/dist/main/cosmos/authz/v1beta1/query.d.ts +616 -0
- package/dist/main/cosmos/authz/v1beta1/query.js +513 -0
- package/dist/main/cosmos/authz/v1beta1/tx.d.ts +264 -0
- package/dist/main/cosmos/authz/v1beta1/tx.js +436 -0
- package/dist/main/cosmos/index.d.ts +307 -0
- package/dist/main/cosmos/index.js +72 -2
- package/dist/main/cosmos/staking/v1beta1/authz.d.ts +145 -0
- package/dist/main/cosmos/staking/v1beta1/authz.js +225 -0
- package/dist/main/cosmos/staking/v1beta1/genesis.d.ts +899 -0
- package/dist/main/cosmos/staking/v1beta1/genesis.js +306 -0
- package/dist/main/cosmos/staking/v1beta1/pagination.d.ts +128 -0
- package/dist/main/cosmos/staking/v1beta1/pagination.js +228 -0
- package/dist/main/cosmos/staking/v1beta1/query.d.ts +4165 -0
- package/dist/main/cosmos/staking/v1beta1/query.js +2020 -0
- package/dist/main/cosmos/staking/v1beta1/staking.d.ts +2059 -0
- package/dist/main/cosmos/staking/v1beta1/staking.js +2128 -0
- package/dist/main/cosmos/staking/v1beta1/tx.d.ts +748 -0
- package/dist/main/cosmos/staking/v1beta1/tx.js +1142 -0
- package/dist/main/tendermint/abci/types.d.ts +7075 -0
- package/dist/main/tendermint/abci/types.js +4934 -0
- package/dist/main/tendermint/crypto/keys.d.ts +38 -0
- package/dist/main/tendermint/crypto/keys.js +118 -0
- package/dist/main/tendermint/crypto/proof.d.ts +226 -0
- package/dist/main/tendermint/crypto/proof.js +427 -0
- package/dist/main/tendermint/types/params.d.ts +313 -0
- package/dist/main/tendermint/types/params.js +488 -0
- package/dist/main/tendermint/types/types.d.ts +1970 -0
- package/dist/main/tendermint/types/types.js +1602 -0
- package/dist/main/tendermint/types/validator.d.ts +277 -0
- package/dist/main/tendermint/types/validator.js +303 -0
- package/dist/main/tendermint/version/types.d.ts +71 -0
- package/dist/main/tendermint/version/types.js +162 -0
- package/dist/module/cosmos/authz/v1beta1/authz.d.ts +167 -0
- package/dist/module/cosmos/authz/v1beta1/authz.js +310 -0
- package/dist/module/cosmos/authz/v1beta1/event.d.ts +80 -0
- package/dist/module/cosmos/authz/v1beta1/event.js +155 -0
- package/dist/module/cosmos/authz/v1beta1/genesis.d.ts +121 -0
- package/dist/module/cosmos/authz/v1beta1/genesis.js +62 -0
- package/dist/module/cosmos/authz/v1beta1/pagination.d.ts +128 -0
- package/dist/module/cosmos/authz/v1beta1/pagination.js +220 -0
- package/dist/module/cosmos/authz/v1beta1/query.d.ts +616 -0
- package/dist/module/cosmos/authz/v1beta1/query.js +502 -0
- package/dist/module/cosmos/authz/v1beta1/tx.d.ts +264 -0
- package/dist/module/cosmos/authz/v1beta1/tx.js +427 -0
- package/dist/module/cosmos/index.d.ts +307 -0
- package/dist/module/cosmos/index.js +71 -1
- package/dist/module/cosmos/staking/v1beta1/authz.d.ts +145 -0
- package/dist/module/cosmos/staking/v1beta1/authz.js +215 -0
- package/dist/module/cosmos/staking/v1beta1/genesis.d.ts +899 -0
- package/dist/module/cosmos/staking/v1beta1/genesis.js +298 -0
- package/dist/module/cosmos/staking/v1beta1/pagination.d.ts +128 -0
- package/dist/module/cosmos/staking/v1beta1/pagination.js +220 -0
- package/dist/module/cosmos/staking/v1beta1/query.d.ts +4165 -0
- package/dist/module/cosmos/staking/v1beta1/query.js +1996 -0
- package/dist/module/cosmos/staking/v1beta1/staking.d.ts +2059 -0
- package/dist/module/cosmos/staking/v1beta1/staking.js +2098 -0
- package/dist/module/cosmos/staking/v1beta1/tx.d.ts +748 -0
- package/dist/module/cosmos/staking/v1beta1/tx.js +1128 -0
- package/dist/module/tendermint/abci/types.d.ts +7075 -0
- package/dist/module/tendermint/abci/types.js +4878 -0
- package/dist/module/tendermint/crypto/keys.d.ts +38 -0
- package/dist/module/tendermint/crypto/keys.js +111 -0
- package/dist/module/tendermint/crypto/proof.d.ts +226 -0
- package/dist/module/tendermint/crypto/proof.js +416 -0
- package/dist/module/tendermint/types/params.d.ts +313 -0
- package/dist/module/tendermint/types/params.js +477 -0
- package/dist/module/tendermint/types/types.d.ts +1970 -0
- package/dist/module/tendermint/types/types.js +1581 -0
- package/dist/module/tendermint/types/validator.d.ts +277 -0
- package/dist/module/tendermint/types/validator.js +294 -0
- package/dist/module/tendermint/version/types.d.ts +71 -0
- package/dist/module/tendermint/version/types.js +154 -0
- package/package.json +2 -2
|
@@ -0,0 +1,4165 @@
|
|
|
1
|
+
import _m0 from "protobufjs/minimal";
|
|
2
|
+
import { PageRequest, PageResponse } from "./pagination";
|
|
3
|
+
import { DelegationResponse, HistoricalInfo, Params, Pool, RedelegationResponse, UnbondingDelegation, Validator } from "./staking";
|
|
4
|
+
export declare const protobufPackage = "cosmos.staking.v1beta1";
|
|
5
|
+
/** QueryValidatorsRequest is request type for Query/Validators RPC method. */
|
|
6
|
+
export interface QueryValidatorsRequest {
|
|
7
|
+
/** status enables to query for validators matching a given status. */
|
|
8
|
+
status: string;
|
|
9
|
+
/** pagination defines an optional pagination for the request. */
|
|
10
|
+
pagination: PageRequest | undefined;
|
|
11
|
+
}
|
|
12
|
+
/** QueryValidatorsResponse is response type for the Query/Validators RPC method */
|
|
13
|
+
export interface QueryValidatorsResponse {
|
|
14
|
+
/** validators contains all the queried validators. */
|
|
15
|
+
validators: Validator[];
|
|
16
|
+
/** pagination defines the pagination in the response. */
|
|
17
|
+
pagination: PageResponse | undefined;
|
|
18
|
+
}
|
|
19
|
+
/** QueryValidatorRequest is response type for the Query/Validator RPC method */
|
|
20
|
+
export interface QueryValidatorRequest {
|
|
21
|
+
/** validator_addr defines the validator address to query for. */
|
|
22
|
+
validatorAddr: string;
|
|
23
|
+
}
|
|
24
|
+
/** QueryValidatorResponse is response type for the Query/Validator RPC method */
|
|
25
|
+
export interface QueryValidatorResponse {
|
|
26
|
+
/** validator defines the validator info. */
|
|
27
|
+
validator: Validator | undefined;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* QueryValidatorDelegationsRequest is request type for the
|
|
31
|
+
* Query/ValidatorDelegations RPC method
|
|
32
|
+
*/
|
|
33
|
+
export interface QueryValidatorDelegationsRequest {
|
|
34
|
+
/** validator_addr defines the validator address to query for. */
|
|
35
|
+
validatorAddr: string;
|
|
36
|
+
/** pagination defines an optional pagination for the request. */
|
|
37
|
+
pagination: PageRequest | undefined;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* QueryValidatorDelegationsResponse is response type for the
|
|
41
|
+
* Query/ValidatorDelegations RPC method
|
|
42
|
+
*/
|
|
43
|
+
export interface QueryValidatorDelegationsResponse {
|
|
44
|
+
delegationResponses: DelegationResponse[];
|
|
45
|
+
/** pagination defines the pagination in the response. */
|
|
46
|
+
pagination: PageResponse | undefined;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
50
|
+
* Query/ValidatorUnbondingDelegations RPC method
|
|
51
|
+
*/
|
|
52
|
+
export interface QueryValidatorUnbondingDelegationsRequest {
|
|
53
|
+
/** validator_addr defines the validator address to query for. */
|
|
54
|
+
validatorAddr: string;
|
|
55
|
+
/** pagination defines an optional pagination for the request. */
|
|
56
|
+
pagination: PageRequest | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
60
|
+
* Query/ValidatorUnbondingDelegations RPC method.
|
|
61
|
+
*/
|
|
62
|
+
export interface QueryValidatorUnbondingDelegationsResponse {
|
|
63
|
+
unbondingResponses: UnbondingDelegation[];
|
|
64
|
+
/** pagination defines the pagination in the response. */
|
|
65
|
+
pagination: PageResponse | undefined;
|
|
66
|
+
}
|
|
67
|
+
/** QueryDelegationRequest is request type for the Query/Delegation RPC method. */
|
|
68
|
+
export interface QueryDelegationRequest {
|
|
69
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
70
|
+
delegatorAddr: string;
|
|
71
|
+
/** validator_addr defines the validator address to query for. */
|
|
72
|
+
validatorAddr: string;
|
|
73
|
+
}
|
|
74
|
+
/** QueryDelegationResponse is response type for the Query/Delegation RPC method. */
|
|
75
|
+
export interface QueryDelegationResponse {
|
|
76
|
+
/** delegation_responses defines the delegation info of a delegation. */
|
|
77
|
+
delegationResponse: DelegationResponse | undefined;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* QueryUnbondingDelegationRequest is request type for the
|
|
81
|
+
* Query/UnbondingDelegation RPC method.
|
|
82
|
+
*/
|
|
83
|
+
export interface QueryUnbondingDelegationRequest {
|
|
84
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
85
|
+
delegatorAddr: string;
|
|
86
|
+
/** validator_addr defines the validator address to query for. */
|
|
87
|
+
validatorAddr: string;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
91
|
+
* RPC method.
|
|
92
|
+
*/
|
|
93
|
+
export interface QueryUnbondingDelegationResponse {
|
|
94
|
+
/** unbond defines the unbonding information of a delegation. */
|
|
95
|
+
unbond: UnbondingDelegation | undefined;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* QueryDelegatorDelegationsRequest is request type for the
|
|
99
|
+
* Query/DelegatorDelegations RPC method.
|
|
100
|
+
*/
|
|
101
|
+
export interface QueryDelegatorDelegationsRequest {
|
|
102
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
103
|
+
delegatorAddr: string;
|
|
104
|
+
/** pagination defines an optional pagination for the request. */
|
|
105
|
+
pagination: PageRequest | undefined;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* QueryDelegatorDelegationsResponse is response type for the
|
|
109
|
+
* Query/DelegatorDelegations RPC method.
|
|
110
|
+
*/
|
|
111
|
+
export interface QueryDelegatorDelegationsResponse {
|
|
112
|
+
/** delegation_responses defines all the delegations' info of a delegator. */
|
|
113
|
+
delegationResponses: DelegationResponse[];
|
|
114
|
+
/** pagination defines the pagination in the response. */
|
|
115
|
+
pagination: PageResponse | undefined;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
119
|
+
* Query/DelegatorUnbondingDelegations RPC method.
|
|
120
|
+
*/
|
|
121
|
+
export interface QueryDelegatorUnbondingDelegationsRequest {
|
|
122
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
123
|
+
delegatorAddr: string;
|
|
124
|
+
/** pagination defines an optional pagination for the request. */
|
|
125
|
+
pagination: PageRequest | undefined;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
129
|
+
* Query/UnbondingDelegatorDelegations RPC method.
|
|
130
|
+
*/
|
|
131
|
+
export interface QueryDelegatorUnbondingDelegationsResponse {
|
|
132
|
+
unbondingResponses: UnbondingDelegation[];
|
|
133
|
+
/** pagination defines the pagination in the response. */
|
|
134
|
+
pagination: PageResponse | undefined;
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
138
|
+
* method.
|
|
139
|
+
*/
|
|
140
|
+
export interface QueryRedelegationsRequest {
|
|
141
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
142
|
+
delegatorAddr: string;
|
|
143
|
+
/** src_validator_addr defines the validator address to redelegate from. */
|
|
144
|
+
srcValidatorAddr: string;
|
|
145
|
+
/** dst_validator_addr defines the validator address to redelegate to. */
|
|
146
|
+
dstValidatorAddr: string;
|
|
147
|
+
/** pagination defines an optional pagination for the request. */
|
|
148
|
+
pagination: PageRequest | undefined;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
152
|
+
* method.
|
|
153
|
+
*/
|
|
154
|
+
export interface QueryRedelegationsResponse {
|
|
155
|
+
redelegationResponses: RedelegationResponse[];
|
|
156
|
+
/** pagination defines the pagination in the response. */
|
|
157
|
+
pagination: PageResponse | undefined;
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* QueryDelegatorValidatorsRequest is request type for the
|
|
161
|
+
* Query/DelegatorValidators RPC method.
|
|
162
|
+
*/
|
|
163
|
+
export interface QueryDelegatorValidatorsRequest {
|
|
164
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
165
|
+
delegatorAddr: string;
|
|
166
|
+
/** pagination defines an optional pagination for the request. */
|
|
167
|
+
pagination: PageRequest | undefined;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* QueryDelegatorValidatorsResponse is response type for the
|
|
171
|
+
* Query/DelegatorValidators RPC method.
|
|
172
|
+
*/
|
|
173
|
+
export interface QueryDelegatorValidatorsResponse {
|
|
174
|
+
/** validators defines the validators' info of a delegator. */
|
|
175
|
+
validators: Validator[];
|
|
176
|
+
/** pagination defines the pagination in the response. */
|
|
177
|
+
pagination: PageResponse | undefined;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* QueryDelegatorValidatorRequest is request type for the
|
|
181
|
+
* Query/DelegatorValidator RPC method.
|
|
182
|
+
*/
|
|
183
|
+
export interface QueryDelegatorValidatorRequest {
|
|
184
|
+
/** delegator_addr defines the delegator address to query for. */
|
|
185
|
+
delegatorAddr: string;
|
|
186
|
+
/** validator_addr defines the validator address to query for. */
|
|
187
|
+
validatorAddr: string;
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* QueryDelegatorValidatorResponse response type for the
|
|
191
|
+
* Query/DelegatorValidator RPC method.
|
|
192
|
+
*/
|
|
193
|
+
export interface QueryDelegatorValidatorResponse {
|
|
194
|
+
/** validator defines the validator info. */
|
|
195
|
+
validator: Validator | undefined;
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
199
|
+
* method.
|
|
200
|
+
*/
|
|
201
|
+
export interface QueryHistoricalInfoRequest {
|
|
202
|
+
/** height defines at which height to query the historical info. */
|
|
203
|
+
height: number;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
207
|
+
* method.
|
|
208
|
+
*/
|
|
209
|
+
export interface QueryHistoricalInfoResponse {
|
|
210
|
+
/** hist defines the historical info at the given height. */
|
|
211
|
+
hist: HistoricalInfo | undefined;
|
|
212
|
+
}
|
|
213
|
+
/** QueryPoolRequest is request type for the Query/Pool RPC method. */
|
|
214
|
+
export interface QueryPoolRequest {
|
|
215
|
+
}
|
|
216
|
+
/** QueryPoolResponse is response type for the Query/Pool RPC method. */
|
|
217
|
+
export interface QueryPoolResponse {
|
|
218
|
+
/** pool defines the pool info. */
|
|
219
|
+
pool: Pool | undefined;
|
|
220
|
+
}
|
|
221
|
+
/** QueryParamsRequest is request type for the Query/Params RPC method. */
|
|
222
|
+
export interface QueryParamsRequest {
|
|
223
|
+
}
|
|
224
|
+
/** QueryParamsResponse is response type for the Query/Params RPC method. */
|
|
225
|
+
export interface QueryParamsResponse {
|
|
226
|
+
/** params holds all the parameters of this module. */
|
|
227
|
+
params: Params | undefined;
|
|
228
|
+
}
|
|
229
|
+
export declare const QueryValidatorsRequest: {
|
|
230
|
+
encode(message: QueryValidatorsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
231
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsRequest;
|
|
232
|
+
fromJSON(object: any): QueryValidatorsRequest;
|
|
233
|
+
toJSON(message: QueryValidatorsRequest): unknown;
|
|
234
|
+
create<I extends {
|
|
235
|
+
status?: string;
|
|
236
|
+
pagination?: {
|
|
237
|
+
key?: Uint8Array;
|
|
238
|
+
offset?: number;
|
|
239
|
+
limit?: number;
|
|
240
|
+
countTotal?: boolean;
|
|
241
|
+
reverse?: boolean;
|
|
242
|
+
};
|
|
243
|
+
} & {
|
|
244
|
+
status?: string;
|
|
245
|
+
pagination?: {
|
|
246
|
+
key?: Uint8Array;
|
|
247
|
+
offset?: number;
|
|
248
|
+
limit?: number;
|
|
249
|
+
countTotal?: boolean;
|
|
250
|
+
reverse?: boolean;
|
|
251
|
+
} & {
|
|
252
|
+
key?: Uint8Array;
|
|
253
|
+
offset?: number;
|
|
254
|
+
limit?: number;
|
|
255
|
+
countTotal?: boolean;
|
|
256
|
+
reverse?: boolean;
|
|
257
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
258
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryValidatorsRequest>]: never; }>(base?: I): QueryValidatorsRequest;
|
|
259
|
+
fromPartial<I_1 extends {
|
|
260
|
+
status?: string;
|
|
261
|
+
pagination?: {
|
|
262
|
+
key?: Uint8Array;
|
|
263
|
+
offset?: number;
|
|
264
|
+
limit?: number;
|
|
265
|
+
countTotal?: boolean;
|
|
266
|
+
reverse?: boolean;
|
|
267
|
+
};
|
|
268
|
+
} & {
|
|
269
|
+
status?: string;
|
|
270
|
+
pagination?: {
|
|
271
|
+
key?: Uint8Array;
|
|
272
|
+
offset?: number;
|
|
273
|
+
limit?: number;
|
|
274
|
+
countTotal?: boolean;
|
|
275
|
+
reverse?: boolean;
|
|
276
|
+
} & {
|
|
277
|
+
key?: Uint8Array;
|
|
278
|
+
offset?: number;
|
|
279
|
+
limit?: number;
|
|
280
|
+
countTotal?: boolean;
|
|
281
|
+
reverse?: boolean;
|
|
282
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
283
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryValidatorsRequest>]: never; }>(object: I_1): QueryValidatorsRequest;
|
|
284
|
+
};
|
|
285
|
+
export declare const QueryValidatorsResponse: {
|
|
286
|
+
encode(message: QueryValidatorsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
287
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsResponse;
|
|
288
|
+
fromJSON(object: any): QueryValidatorsResponse;
|
|
289
|
+
toJSON(message: QueryValidatorsResponse): unknown;
|
|
290
|
+
create<I extends {
|
|
291
|
+
validators?: {
|
|
292
|
+
operatorAddress?: string;
|
|
293
|
+
consensusPubkey?: {
|
|
294
|
+
typeUrl?: string;
|
|
295
|
+
value?: Uint8Array;
|
|
296
|
+
};
|
|
297
|
+
jailed?: boolean;
|
|
298
|
+
status?: import("./staking").BondStatus;
|
|
299
|
+
tokens?: string;
|
|
300
|
+
delegatorShares?: string;
|
|
301
|
+
description?: {
|
|
302
|
+
moniker?: string;
|
|
303
|
+
identity?: string;
|
|
304
|
+
website?: string;
|
|
305
|
+
securityContact?: string;
|
|
306
|
+
details?: string;
|
|
307
|
+
};
|
|
308
|
+
unbondingHeight?: number;
|
|
309
|
+
unbondingTime?: Date;
|
|
310
|
+
commission?: {
|
|
311
|
+
commissionRates?: {
|
|
312
|
+
rate?: string;
|
|
313
|
+
maxRate?: string;
|
|
314
|
+
maxChangeRate?: string;
|
|
315
|
+
};
|
|
316
|
+
updateTime?: Date;
|
|
317
|
+
};
|
|
318
|
+
minSelfDelegation?: string;
|
|
319
|
+
unbondingOnHoldRefCount?: number;
|
|
320
|
+
unbondingIds?: number[];
|
|
321
|
+
}[];
|
|
322
|
+
pagination?: {
|
|
323
|
+
nextKey?: Uint8Array;
|
|
324
|
+
total?: number;
|
|
325
|
+
};
|
|
326
|
+
} & {
|
|
327
|
+
validators?: {
|
|
328
|
+
operatorAddress?: string;
|
|
329
|
+
consensusPubkey?: {
|
|
330
|
+
typeUrl?: string;
|
|
331
|
+
value?: Uint8Array;
|
|
332
|
+
};
|
|
333
|
+
jailed?: boolean;
|
|
334
|
+
status?: import("./staking").BondStatus;
|
|
335
|
+
tokens?: string;
|
|
336
|
+
delegatorShares?: string;
|
|
337
|
+
description?: {
|
|
338
|
+
moniker?: string;
|
|
339
|
+
identity?: string;
|
|
340
|
+
website?: string;
|
|
341
|
+
securityContact?: string;
|
|
342
|
+
details?: string;
|
|
343
|
+
};
|
|
344
|
+
unbondingHeight?: number;
|
|
345
|
+
unbondingTime?: Date;
|
|
346
|
+
commission?: {
|
|
347
|
+
commissionRates?: {
|
|
348
|
+
rate?: string;
|
|
349
|
+
maxRate?: string;
|
|
350
|
+
maxChangeRate?: string;
|
|
351
|
+
};
|
|
352
|
+
updateTime?: Date;
|
|
353
|
+
};
|
|
354
|
+
minSelfDelegation?: string;
|
|
355
|
+
unbondingOnHoldRefCount?: number;
|
|
356
|
+
unbondingIds?: number[];
|
|
357
|
+
}[] & ({
|
|
358
|
+
operatorAddress?: string;
|
|
359
|
+
consensusPubkey?: {
|
|
360
|
+
typeUrl?: string;
|
|
361
|
+
value?: Uint8Array;
|
|
362
|
+
};
|
|
363
|
+
jailed?: boolean;
|
|
364
|
+
status?: import("./staking").BondStatus;
|
|
365
|
+
tokens?: string;
|
|
366
|
+
delegatorShares?: string;
|
|
367
|
+
description?: {
|
|
368
|
+
moniker?: string;
|
|
369
|
+
identity?: string;
|
|
370
|
+
website?: string;
|
|
371
|
+
securityContact?: string;
|
|
372
|
+
details?: string;
|
|
373
|
+
};
|
|
374
|
+
unbondingHeight?: number;
|
|
375
|
+
unbondingTime?: Date;
|
|
376
|
+
commission?: {
|
|
377
|
+
commissionRates?: {
|
|
378
|
+
rate?: string;
|
|
379
|
+
maxRate?: string;
|
|
380
|
+
maxChangeRate?: string;
|
|
381
|
+
};
|
|
382
|
+
updateTime?: Date;
|
|
383
|
+
};
|
|
384
|
+
minSelfDelegation?: string;
|
|
385
|
+
unbondingOnHoldRefCount?: number;
|
|
386
|
+
unbondingIds?: number[];
|
|
387
|
+
} & {
|
|
388
|
+
operatorAddress?: string;
|
|
389
|
+
consensusPubkey?: {
|
|
390
|
+
typeUrl?: string;
|
|
391
|
+
value?: Uint8Array;
|
|
392
|
+
} & {
|
|
393
|
+
typeUrl?: string;
|
|
394
|
+
value?: Uint8Array;
|
|
395
|
+
} & { [K in Exclude<keyof I["validators"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
396
|
+
jailed?: boolean;
|
|
397
|
+
status?: import("./staking").BondStatus;
|
|
398
|
+
tokens?: string;
|
|
399
|
+
delegatorShares?: string;
|
|
400
|
+
description?: {
|
|
401
|
+
moniker?: string;
|
|
402
|
+
identity?: string;
|
|
403
|
+
website?: string;
|
|
404
|
+
securityContact?: string;
|
|
405
|
+
details?: string;
|
|
406
|
+
} & {
|
|
407
|
+
moniker?: string;
|
|
408
|
+
identity?: string;
|
|
409
|
+
website?: string;
|
|
410
|
+
securityContact?: string;
|
|
411
|
+
details?: string;
|
|
412
|
+
} & { [K_1 in Exclude<keyof I["validators"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
413
|
+
unbondingHeight?: number;
|
|
414
|
+
unbondingTime?: Date;
|
|
415
|
+
commission?: {
|
|
416
|
+
commissionRates?: {
|
|
417
|
+
rate?: string;
|
|
418
|
+
maxRate?: string;
|
|
419
|
+
maxChangeRate?: string;
|
|
420
|
+
};
|
|
421
|
+
updateTime?: Date;
|
|
422
|
+
} & {
|
|
423
|
+
commissionRates?: {
|
|
424
|
+
rate?: string;
|
|
425
|
+
maxRate?: string;
|
|
426
|
+
maxChangeRate?: string;
|
|
427
|
+
} & {
|
|
428
|
+
rate?: string;
|
|
429
|
+
maxRate?: string;
|
|
430
|
+
maxChangeRate?: string;
|
|
431
|
+
} & { [K_2 in Exclude<keyof I["validators"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
432
|
+
updateTime?: Date;
|
|
433
|
+
} & { [K_3 in Exclude<keyof I["validators"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
434
|
+
minSelfDelegation?: string;
|
|
435
|
+
unbondingOnHoldRefCount?: number;
|
|
436
|
+
unbondingIds?: number[] & number[] & { [K_4 in Exclude<keyof I["validators"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
437
|
+
} & { [K_5 in Exclude<keyof I["validators"][number], keyof Validator>]: never; })[] & { [K_6 in Exclude<keyof I["validators"], keyof {
|
|
438
|
+
operatorAddress?: string;
|
|
439
|
+
consensusPubkey?: {
|
|
440
|
+
typeUrl?: string;
|
|
441
|
+
value?: Uint8Array;
|
|
442
|
+
};
|
|
443
|
+
jailed?: boolean;
|
|
444
|
+
status?: import("./staking").BondStatus;
|
|
445
|
+
tokens?: string;
|
|
446
|
+
delegatorShares?: string;
|
|
447
|
+
description?: {
|
|
448
|
+
moniker?: string;
|
|
449
|
+
identity?: string;
|
|
450
|
+
website?: string;
|
|
451
|
+
securityContact?: string;
|
|
452
|
+
details?: string;
|
|
453
|
+
};
|
|
454
|
+
unbondingHeight?: number;
|
|
455
|
+
unbondingTime?: Date;
|
|
456
|
+
commission?: {
|
|
457
|
+
commissionRates?: {
|
|
458
|
+
rate?: string;
|
|
459
|
+
maxRate?: string;
|
|
460
|
+
maxChangeRate?: string;
|
|
461
|
+
};
|
|
462
|
+
updateTime?: Date;
|
|
463
|
+
};
|
|
464
|
+
minSelfDelegation?: string;
|
|
465
|
+
unbondingOnHoldRefCount?: number;
|
|
466
|
+
unbondingIds?: number[];
|
|
467
|
+
}[]>]: never; };
|
|
468
|
+
pagination?: {
|
|
469
|
+
nextKey?: Uint8Array;
|
|
470
|
+
total?: number;
|
|
471
|
+
} & {
|
|
472
|
+
nextKey?: Uint8Array;
|
|
473
|
+
total?: number;
|
|
474
|
+
} & { [K_7 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
475
|
+
} & { [K_8 in Exclude<keyof I, keyof QueryValidatorsResponse>]: never; }>(base?: I): QueryValidatorsResponse;
|
|
476
|
+
fromPartial<I_1 extends {
|
|
477
|
+
validators?: {
|
|
478
|
+
operatorAddress?: string;
|
|
479
|
+
consensusPubkey?: {
|
|
480
|
+
typeUrl?: string;
|
|
481
|
+
value?: Uint8Array;
|
|
482
|
+
};
|
|
483
|
+
jailed?: boolean;
|
|
484
|
+
status?: import("./staking").BondStatus;
|
|
485
|
+
tokens?: string;
|
|
486
|
+
delegatorShares?: string;
|
|
487
|
+
description?: {
|
|
488
|
+
moniker?: string;
|
|
489
|
+
identity?: string;
|
|
490
|
+
website?: string;
|
|
491
|
+
securityContact?: string;
|
|
492
|
+
details?: string;
|
|
493
|
+
};
|
|
494
|
+
unbondingHeight?: number;
|
|
495
|
+
unbondingTime?: Date;
|
|
496
|
+
commission?: {
|
|
497
|
+
commissionRates?: {
|
|
498
|
+
rate?: string;
|
|
499
|
+
maxRate?: string;
|
|
500
|
+
maxChangeRate?: string;
|
|
501
|
+
};
|
|
502
|
+
updateTime?: Date;
|
|
503
|
+
};
|
|
504
|
+
minSelfDelegation?: string;
|
|
505
|
+
unbondingOnHoldRefCount?: number;
|
|
506
|
+
unbondingIds?: number[];
|
|
507
|
+
}[];
|
|
508
|
+
pagination?: {
|
|
509
|
+
nextKey?: Uint8Array;
|
|
510
|
+
total?: number;
|
|
511
|
+
};
|
|
512
|
+
} & {
|
|
513
|
+
validators?: {
|
|
514
|
+
operatorAddress?: string;
|
|
515
|
+
consensusPubkey?: {
|
|
516
|
+
typeUrl?: string;
|
|
517
|
+
value?: Uint8Array;
|
|
518
|
+
};
|
|
519
|
+
jailed?: boolean;
|
|
520
|
+
status?: import("./staking").BondStatus;
|
|
521
|
+
tokens?: string;
|
|
522
|
+
delegatorShares?: string;
|
|
523
|
+
description?: {
|
|
524
|
+
moniker?: string;
|
|
525
|
+
identity?: string;
|
|
526
|
+
website?: string;
|
|
527
|
+
securityContact?: string;
|
|
528
|
+
details?: string;
|
|
529
|
+
};
|
|
530
|
+
unbondingHeight?: number;
|
|
531
|
+
unbondingTime?: Date;
|
|
532
|
+
commission?: {
|
|
533
|
+
commissionRates?: {
|
|
534
|
+
rate?: string;
|
|
535
|
+
maxRate?: string;
|
|
536
|
+
maxChangeRate?: string;
|
|
537
|
+
};
|
|
538
|
+
updateTime?: Date;
|
|
539
|
+
};
|
|
540
|
+
minSelfDelegation?: string;
|
|
541
|
+
unbondingOnHoldRefCount?: number;
|
|
542
|
+
unbondingIds?: number[];
|
|
543
|
+
}[] & ({
|
|
544
|
+
operatorAddress?: string;
|
|
545
|
+
consensusPubkey?: {
|
|
546
|
+
typeUrl?: string;
|
|
547
|
+
value?: Uint8Array;
|
|
548
|
+
};
|
|
549
|
+
jailed?: boolean;
|
|
550
|
+
status?: import("./staking").BondStatus;
|
|
551
|
+
tokens?: string;
|
|
552
|
+
delegatorShares?: string;
|
|
553
|
+
description?: {
|
|
554
|
+
moniker?: string;
|
|
555
|
+
identity?: string;
|
|
556
|
+
website?: string;
|
|
557
|
+
securityContact?: string;
|
|
558
|
+
details?: string;
|
|
559
|
+
};
|
|
560
|
+
unbondingHeight?: number;
|
|
561
|
+
unbondingTime?: Date;
|
|
562
|
+
commission?: {
|
|
563
|
+
commissionRates?: {
|
|
564
|
+
rate?: string;
|
|
565
|
+
maxRate?: string;
|
|
566
|
+
maxChangeRate?: string;
|
|
567
|
+
};
|
|
568
|
+
updateTime?: Date;
|
|
569
|
+
};
|
|
570
|
+
minSelfDelegation?: string;
|
|
571
|
+
unbondingOnHoldRefCount?: number;
|
|
572
|
+
unbondingIds?: number[];
|
|
573
|
+
} & {
|
|
574
|
+
operatorAddress?: string;
|
|
575
|
+
consensusPubkey?: {
|
|
576
|
+
typeUrl?: string;
|
|
577
|
+
value?: Uint8Array;
|
|
578
|
+
} & {
|
|
579
|
+
typeUrl?: string;
|
|
580
|
+
value?: Uint8Array;
|
|
581
|
+
} & { [K_9 in Exclude<keyof I_1["validators"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
582
|
+
jailed?: boolean;
|
|
583
|
+
status?: import("./staking").BondStatus;
|
|
584
|
+
tokens?: string;
|
|
585
|
+
delegatorShares?: string;
|
|
586
|
+
description?: {
|
|
587
|
+
moniker?: string;
|
|
588
|
+
identity?: string;
|
|
589
|
+
website?: string;
|
|
590
|
+
securityContact?: string;
|
|
591
|
+
details?: string;
|
|
592
|
+
} & {
|
|
593
|
+
moniker?: string;
|
|
594
|
+
identity?: string;
|
|
595
|
+
website?: string;
|
|
596
|
+
securityContact?: string;
|
|
597
|
+
details?: string;
|
|
598
|
+
} & { [K_10 in Exclude<keyof I_1["validators"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
599
|
+
unbondingHeight?: number;
|
|
600
|
+
unbondingTime?: Date;
|
|
601
|
+
commission?: {
|
|
602
|
+
commissionRates?: {
|
|
603
|
+
rate?: string;
|
|
604
|
+
maxRate?: string;
|
|
605
|
+
maxChangeRate?: string;
|
|
606
|
+
};
|
|
607
|
+
updateTime?: Date;
|
|
608
|
+
} & {
|
|
609
|
+
commissionRates?: {
|
|
610
|
+
rate?: string;
|
|
611
|
+
maxRate?: string;
|
|
612
|
+
maxChangeRate?: string;
|
|
613
|
+
} & {
|
|
614
|
+
rate?: string;
|
|
615
|
+
maxRate?: string;
|
|
616
|
+
maxChangeRate?: string;
|
|
617
|
+
} & { [K_11 in Exclude<keyof I_1["validators"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
618
|
+
updateTime?: Date;
|
|
619
|
+
} & { [K_12 in Exclude<keyof I_1["validators"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
620
|
+
minSelfDelegation?: string;
|
|
621
|
+
unbondingOnHoldRefCount?: number;
|
|
622
|
+
unbondingIds?: number[] & number[] & { [K_13 in Exclude<keyof I_1["validators"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
623
|
+
} & { [K_14 in Exclude<keyof I_1["validators"][number], keyof Validator>]: never; })[] & { [K_15 in Exclude<keyof I_1["validators"], keyof {
|
|
624
|
+
operatorAddress?: string;
|
|
625
|
+
consensusPubkey?: {
|
|
626
|
+
typeUrl?: string;
|
|
627
|
+
value?: Uint8Array;
|
|
628
|
+
};
|
|
629
|
+
jailed?: boolean;
|
|
630
|
+
status?: import("./staking").BondStatus;
|
|
631
|
+
tokens?: string;
|
|
632
|
+
delegatorShares?: string;
|
|
633
|
+
description?: {
|
|
634
|
+
moniker?: string;
|
|
635
|
+
identity?: string;
|
|
636
|
+
website?: string;
|
|
637
|
+
securityContact?: string;
|
|
638
|
+
details?: string;
|
|
639
|
+
};
|
|
640
|
+
unbondingHeight?: number;
|
|
641
|
+
unbondingTime?: Date;
|
|
642
|
+
commission?: {
|
|
643
|
+
commissionRates?: {
|
|
644
|
+
rate?: string;
|
|
645
|
+
maxRate?: string;
|
|
646
|
+
maxChangeRate?: string;
|
|
647
|
+
};
|
|
648
|
+
updateTime?: Date;
|
|
649
|
+
};
|
|
650
|
+
minSelfDelegation?: string;
|
|
651
|
+
unbondingOnHoldRefCount?: number;
|
|
652
|
+
unbondingIds?: number[];
|
|
653
|
+
}[]>]: never; };
|
|
654
|
+
pagination?: {
|
|
655
|
+
nextKey?: Uint8Array;
|
|
656
|
+
total?: number;
|
|
657
|
+
} & {
|
|
658
|
+
nextKey?: Uint8Array;
|
|
659
|
+
total?: number;
|
|
660
|
+
} & { [K_16 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
661
|
+
} & { [K_17 in Exclude<keyof I_1, keyof QueryValidatorsResponse>]: never; }>(object: I_1): QueryValidatorsResponse;
|
|
662
|
+
};
|
|
663
|
+
export declare const QueryValidatorRequest: {
|
|
664
|
+
encode(message: QueryValidatorRequest, writer?: _m0.Writer): _m0.Writer;
|
|
665
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorRequest;
|
|
666
|
+
fromJSON(object: any): QueryValidatorRequest;
|
|
667
|
+
toJSON(message: QueryValidatorRequest): unknown;
|
|
668
|
+
create<I extends {
|
|
669
|
+
validatorAddr?: string;
|
|
670
|
+
} & {
|
|
671
|
+
validatorAddr?: string;
|
|
672
|
+
} & { [K in Exclude<keyof I, "validatorAddr">]: never; }>(base?: I): QueryValidatorRequest;
|
|
673
|
+
fromPartial<I_1 extends {
|
|
674
|
+
validatorAddr?: string;
|
|
675
|
+
} & {
|
|
676
|
+
validatorAddr?: string;
|
|
677
|
+
} & { [K_1 in Exclude<keyof I_1, "validatorAddr">]: never; }>(object: I_1): QueryValidatorRequest;
|
|
678
|
+
};
|
|
679
|
+
export declare const QueryValidatorResponse: {
|
|
680
|
+
encode(message: QueryValidatorResponse, writer?: _m0.Writer): _m0.Writer;
|
|
681
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorResponse;
|
|
682
|
+
fromJSON(object: any): QueryValidatorResponse;
|
|
683
|
+
toJSON(message: QueryValidatorResponse): unknown;
|
|
684
|
+
create<I extends {
|
|
685
|
+
validator?: {
|
|
686
|
+
operatorAddress?: string;
|
|
687
|
+
consensusPubkey?: {
|
|
688
|
+
typeUrl?: string;
|
|
689
|
+
value?: Uint8Array;
|
|
690
|
+
};
|
|
691
|
+
jailed?: boolean;
|
|
692
|
+
status?: import("./staking").BondStatus;
|
|
693
|
+
tokens?: string;
|
|
694
|
+
delegatorShares?: string;
|
|
695
|
+
description?: {
|
|
696
|
+
moniker?: string;
|
|
697
|
+
identity?: string;
|
|
698
|
+
website?: string;
|
|
699
|
+
securityContact?: string;
|
|
700
|
+
details?: string;
|
|
701
|
+
};
|
|
702
|
+
unbondingHeight?: number;
|
|
703
|
+
unbondingTime?: Date;
|
|
704
|
+
commission?: {
|
|
705
|
+
commissionRates?: {
|
|
706
|
+
rate?: string;
|
|
707
|
+
maxRate?: string;
|
|
708
|
+
maxChangeRate?: string;
|
|
709
|
+
};
|
|
710
|
+
updateTime?: Date;
|
|
711
|
+
};
|
|
712
|
+
minSelfDelegation?: string;
|
|
713
|
+
unbondingOnHoldRefCount?: number;
|
|
714
|
+
unbondingIds?: number[];
|
|
715
|
+
};
|
|
716
|
+
} & {
|
|
717
|
+
validator?: {
|
|
718
|
+
operatorAddress?: string;
|
|
719
|
+
consensusPubkey?: {
|
|
720
|
+
typeUrl?: string;
|
|
721
|
+
value?: Uint8Array;
|
|
722
|
+
};
|
|
723
|
+
jailed?: boolean;
|
|
724
|
+
status?: import("./staking").BondStatus;
|
|
725
|
+
tokens?: string;
|
|
726
|
+
delegatorShares?: string;
|
|
727
|
+
description?: {
|
|
728
|
+
moniker?: string;
|
|
729
|
+
identity?: string;
|
|
730
|
+
website?: string;
|
|
731
|
+
securityContact?: string;
|
|
732
|
+
details?: string;
|
|
733
|
+
};
|
|
734
|
+
unbondingHeight?: number;
|
|
735
|
+
unbondingTime?: Date;
|
|
736
|
+
commission?: {
|
|
737
|
+
commissionRates?: {
|
|
738
|
+
rate?: string;
|
|
739
|
+
maxRate?: string;
|
|
740
|
+
maxChangeRate?: string;
|
|
741
|
+
};
|
|
742
|
+
updateTime?: Date;
|
|
743
|
+
};
|
|
744
|
+
minSelfDelegation?: string;
|
|
745
|
+
unbondingOnHoldRefCount?: number;
|
|
746
|
+
unbondingIds?: number[];
|
|
747
|
+
} & {
|
|
748
|
+
operatorAddress?: string;
|
|
749
|
+
consensusPubkey?: {
|
|
750
|
+
typeUrl?: string;
|
|
751
|
+
value?: Uint8Array;
|
|
752
|
+
} & {
|
|
753
|
+
typeUrl?: string;
|
|
754
|
+
value?: Uint8Array;
|
|
755
|
+
} & { [K in Exclude<keyof I["validator"]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
756
|
+
jailed?: boolean;
|
|
757
|
+
status?: import("./staking").BondStatus;
|
|
758
|
+
tokens?: string;
|
|
759
|
+
delegatorShares?: string;
|
|
760
|
+
description?: {
|
|
761
|
+
moniker?: string;
|
|
762
|
+
identity?: string;
|
|
763
|
+
website?: string;
|
|
764
|
+
securityContact?: string;
|
|
765
|
+
details?: string;
|
|
766
|
+
} & {
|
|
767
|
+
moniker?: string;
|
|
768
|
+
identity?: string;
|
|
769
|
+
website?: string;
|
|
770
|
+
securityContact?: string;
|
|
771
|
+
details?: string;
|
|
772
|
+
} & { [K_1 in Exclude<keyof I["validator"]["description"], keyof import("./staking").Description>]: never; };
|
|
773
|
+
unbondingHeight?: number;
|
|
774
|
+
unbondingTime?: Date;
|
|
775
|
+
commission?: {
|
|
776
|
+
commissionRates?: {
|
|
777
|
+
rate?: string;
|
|
778
|
+
maxRate?: string;
|
|
779
|
+
maxChangeRate?: string;
|
|
780
|
+
};
|
|
781
|
+
updateTime?: Date;
|
|
782
|
+
} & {
|
|
783
|
+
commissionRates?: {
|
|
784
|
+
rate?: string;
|
|
785
|
+
maxRate?: string;
|
|
786
|
+
maxChangeRate?: string;
|
|
787
|
+
} & {
|
|
788
|
+
rate?: string;
|
|
789
|
+
maxRate?: string;
|
|
790
|
+
maxChangeRate?: string;
|
|
791
|
+
} & { [K_2 in Exclude<keyof I["validator"]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
792
|
+
updateTime?: Date;
|
|
793
|
+
} & { [K_3 in Exclude<keyof I["validator"]["commission"], keyof import("./staking").Commission>]: never; };
|
|
794
|
+
minSelfDelegation?: string;
|
|
795
|
+
unbondingOnHoldRefCount?: number;
|
|
796
|
+
unbondingIds?: number[] & number[] & { [K_4 in Exclude<keyof I["validator"]["unbondingIds"], keyof number[]>]: never; };
|
|
797
|
+
} & { [K_5 in Exclude<keyof I["validator"], keyof Validator>]: never; };
|
|
798
|
+
} & { [K_6 in Exclude<keyof I, "validator">]: never; }>(base?: I): QueryValidatorResponse;
|
|
799
|
+
fromPartial<I_1 extends {
|
|
800
|
+
validator?: {
|
|
801
|
+
operatorAddress?: string;
|
|
802
|
+
consensusPubkey?: {
|
|
803
|
+
typeUrl?: string;
|
|
804
|
+
value?: Uint8Array;
|
|
805
|
+
};
|
|
806
|
+
jailed?: boolean;
|
|
807
|
+
status?: import("./staking").BondStatus;
|
|
808
|
+
tokens?: string;
|
|
809
|
+
delegatorShares?: string;
|
|
810
|
+
description?: {
|
|
811
|
+
moniker?: string;
|
|
812
|
+
identity?: string;
|
|
813
|
+
website?: string;
|
|
814
|
+
securityContact?: string;
|
|
815
|
+
details?: string;
|
|
816
|
+
};
|
|
817
|
+
unbondingHeight?: number;
|
|
818
|
+
unbondingTime?: Date;
|
|
819
|
+
commission?: {
|
|
820
|
+
commissionRates?: {
|
|
821
|
+
rate?: string;
|
|
822
|
+
maxRate?: string;
|
|
823
|
+
maxChangeRate?: string;
|
|
824
|
+
};
|
|
825
|
+
updateTime?: Date;
|
|
826
|
+
};
|
|
827
|
+
minSelfDelegation?: string;
|
|
828
|
+
unbondingOnHoldRefCount?: number;
|
|
829
|
+
unbondingIds?: number[];
|
|
830
|
+
};
|
|
831
|
+
} & {
|
|
832
|
+
validator?: {
|
|
833
|
+
operatorAddress?: string;
|
|
834
|
+
consensusPubkey?: {
|
|
835
|
+
typeUrl?: string;
|
|
836
|
+
value?: Uint8Array;
|
|
837
|
+
};
|
|
838
|
+
jailed?: boolean;
|
|
839
|
+
status?: import("./staking").BondStatus;
|
|
840
|
+
tokens?: string;
|
|
841
|
+
delegatorShares?: string;
|
|
842
|
+
description?: {
|
|
843
|
+
moniker?: string;
|
|
844
|
+
identity?: string;
|
|
845
|
+
website?: string;
|
|
846
|
+
securityContact?: string;
|
|
847
|
+
details?: string;
|
|
848
|
+
};
|
|
849
|
+
unbondingHeight?: number;
|
|
850
|
+
unbondingTime?: Date;
|
|
851
|
+
commission?: {
|
|
852
|
+
commissionRates?: {
|
|
853
|
+
rate?: string;
|
|
854
|
+
maxRate?: string;
|
|
855
|
+
maxChangeRate?: string;
|
|
856
|
+
};
|
|
857
|
+
updateTime?: Date;
|
|
858
|
+
};
|
|
859
|
+
minSelfDelegation?: string;
|
|
860
|
+
unbondingOnHoldRefCount?: number;
|
|
861
|
+
unbondingIds?: number[];
|
|
862
|
+
} & {
|
|
863
|
+
operatorAddress?: string;
|
|
864
|
+
consensusPubkey?: {
|
|
865
|
+
typeUrl?: string;
|
|
866
|
+
value?: Uint8Array;
|
|
867
|
+
} & {
|
|
868
|
+
typeUrl?: string;
|
|
869
|
+
value?: Uint8Array;
|
|
870
|
+
} & { [K_7 in Exclude<keyof I_1["validator"]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
871
|
+
jailed?: boolean;
|
|
872
|
+
status?: import("./staking").BondStatus;
|
|
873
|
+
tokens?: string;
|
|
874
|
+
delegatorShares?: string;
|
|
875
|
+
description?: {
|
|
876
|
+
moniker?: string;
|
|
877
|
+
identity?: string;
|
|
878
|
+
website?: string;
|
|
879
|
+
securityContact?: string;
|
|
880
|
+
details?: string;
|
|
881
|
+
} & {
|
|
882
|
+
moniker?: string;
|
|
883
|
+
identity?: string;
|
|
884
|
+
website?: string;
|
|
885
|
+
securityContact?: string;
|
|
886
|
+
details?: string;
|
|
887
|
+
} & { [K_8 in Exclude<keyof I_1["validator"]["description"], keyof import("./staking").Description>]: never; };
|
|
888
|
+
unbondingHeight?: number;
|
|
889
|
+
unbondingTime?: Date;
|
|
890
|
+
commission?: {
|
|
891
|
+
commissionRates?: {
|
|
892
|
+
rate?: string;
|
|
893
|
+
maxRate?: string;
|
|
894
|
+
maxChangeRate?: string;
|
|
895
|
+
};
|
|
896
|
+
updateTime?: Date;
|
|
897
|
+
} & {
|
|
898
|
+
commissionRates?: {
|
|
899
|
+
rate?: string;
|
|
900
|
+
maxRate?: string;
|
|
901
|
+
maxChangeRate?: string;
|
|
902
|
+
} & {
|
|
903
|
+
rate?: string;
|
|
904
|
+
maxRate?: string;
|
|
905
|
+
maxChangeRate?: string;
|
|
906
|
+
} & { [K_9 in Exclude<keyof I_1["validator"]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
907
|
+
updateTime?: Date;
|
|
908
|
+
} & { [K_10 in Exclude<keyof I_1["validator"]["commission"], keyof import("./staking").Commission>]: never; };
|
|
909
|
+
minSelfDelegation?: string;
|
|
910
|
+
unbondingOnHoldRefCount?: number;
|
|
911
|
+
unbondingIds?: number[] & number[] & { [K_11 in Exclude<keyof I_1["validator"]["unbondingIds"], keyof number[]>]: never; };
|
|
912
|
+
} & { [K_12 in Exclude<keyof I_1["validator"], keyof Validator>]: never; };
|
|
913
|
+
} & { [K_13 in Exclude<keyof I_1, "validator">]: never; }>(object: I_1): QueryValidatorResponse;
|
|
914
|
+
};
|
|
915
|
+
export declare const QueryValidatorDelegationsRequest: {
|
|
916
|
+
encode(message: QueryValidatorDelegationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
917
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsRequest;
|
|
918
|
+
fromJSON(object: any): QueryValidatorDelegationsRequest;
|
|
919
|
+
toJSON(message: QueryValidatorDelegationsRequest): unknown;
|
|
920
|
+
create<I extends {
|
|
921
|
+
validatorAddr?: string;
|
|
922
|
+
pagination?: {
|
|
923
|
+
key?: Uint8Array;
|
|
924
|
+
offset?: number;
|
|
925
|
+
limit?: number;
|
|
926
|
+
countTotal?: boolean;
|
|
927
|
+
reverse?: boolean;
|
|
928
|
+
};
|
|
929
|
+
} & {
|
|
930
|
+
validatorAddr?: string;
|
|
931
|
+
pagination?: {
|
|
932
|
+
key?: Uint8Array;
|
|
933
|
+
offset?: number;
|
|
934
|
+
limit?: number;
|
|
935
|
+
countTotal?: boolean;
|
|
936
|
+
reverse?: boolean;
|
|
937
|
+
} & {
|
|
938
|
+
key?: Uint8Array;
|
|
939
|
+
offset?: number;
|
|
940
|
+
limit?: number;
|
|
941
|
+
countTotal?: boolean;
|
|
942
|
+
reverse?: boolean;
|
|
943
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
944
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryValidatorDelegationsRequest>]: never; }>(base?: I): QueryValidatorDelegationsRequest;
|
|
945
|
+
fromPartial<I_1 extends {
|
|
946
|
+
validatorAddr?: string;
|
|
947
|
+
pagination?: {
|
|
948
|
+
key?: Uint8Array;
|
|
949
|
+
offset?: number;
|
|
950
|
+
limit?: number;
|
|
951
|
+
countTotal?: boolean;
|
|
952
|
+
reverse?: boolean;
|
|
953
|
+
};
|
|
954
|
+
} & {
|
|
955
|
+
validatorAddr?: string;
|
|
956
|
+
pagination?: {
|
|
957
|
+
key?: Uint8Array;
|
|
958
|
+
offset?: number;
|
|
959
|
+
limit?: number;
|
|
960
|
+
countTotal?: boolean;
|
|
961
|
+
reverse?: boolean;
|
|
962
|
+
} & {
|
|
963
|
+
key?: Uint8Array;
|
|
964
|
+
offset?: number;
|
|
965
|
+
limit?: number;
|
|
966
|
+
countTotal?: boolean;
|
|
967
|
+
reverse?: boolean;
|
|
968
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
969
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryValidatorDelegationsRequest>]: never; }>(object: I_1): QueryValidatorDelegationsRequest;
|
|
970
|
+
};
|
|
971
|
+
export declare const QueryValidatorDelegationsResponse: {
|
|
972
|
+
encode(message: QueryValidatorDelegationsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
973
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsResponse;
|
|
974
|
+
fromJSON(object: any): QueryValidatorDelegationsResponse;
|
|
975
|
+
toJSON(message: QueryValidatorDelegationsResponse): unknown;
|
|
976
|
+
create<I extends {
|
|
977
|
+
delegationResponses?: {
|
|
978
|
+
delegation?: {
|
|
979
|
+
delegatorAddress?: string;
|
|
980
|
+
validatorAddress?: string;
|
|
981
|
+
shares?: string;
|
|
982
|
+
};
|
|
983
|
+
balance?: {
|
|
984
|
+
denom?: string;
|
|
985
|
+
amount?: string;
|
|
986
|
+
};
|
|
987
|
+
}[];
|
|
988
|
+
pagination?: {
|
|
989
|
+
nextKey?: Uint8Array;
|
|
990
|
+
total?: number;
|
|
991
|
+
};
|
|
992
|
+
} & {
|
|
993
|
+
delegationResponses?: {
|
|
994
|
+
delegation?: {
|
|
995
|
+
delegatorAddress?: string;
|
|
996
|
+
validatorAddress?: string;
|
|
997
|
+
shares?: string;
|
|
998
|
+
};
|
|
999
|
+
balance?: {
|
|
1000
|
+
denom?: string;
|
|
1001
|
+
amount?: string;
|
|
1002
|
+
};
|
|
1003
|
+
}[] & ({
|
|
1004
|
+
delegation?: {
|
|
1005
|
+
delegatorAddress?: string;
|
|
1006
|
+
validatorAddress?: string;
|
|
1007
|
+
shares?: string;
|
|
1008
|
+
};
|
|
1009
|
+
balance?: {
|
|
1010
|
+
denom?: string;
|
|
1011
|
+
amount?: string;
|
|
1012
|
+
};
|
|
1013
|
+
} & {
|
|
1014
|
+
delegation?: {
|
|
1015
|
+
delegatorAddress?: string;
|
|
1016
|
+
validatorAddress?: string;
|
|
1017
|
+
shares?: string;
|
|
1018
|
+
} & {
|
|
1019
|
+
delegatorAddress?: string;
|
|
1020
|
+
validatorAddress?: string;
|
|
1021
|
+
shares?: string;
|
|
1022
|
+
} & { [K in Exclude<keyof I["delegationResponses"][number]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1023
|
+
balance?: {
|
|
1024
|
+
denom?: string;
|
|
1025
|
+
amount?: string;
|
|
1026
|
+
} & {
|
|
1027
|
+
denom?: string;
|
|
1028
|
+
amount?: string;
|
|
1029
|
+
} & { [K_1 in Exclude<keyof I["delegationResponses"][number]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1030
|
+
} & { [K_2 in Exclude<keyof I["delegationResponses"][number], keyof DelegationResponse>]: never; })[] & { [K_3 in Exclude<keyof I["delegationResponses"], keyof {
|
|
1031
|
+
delegation?: {
|
|
1032
|
+
delegatorAddress?: string;
|
|
1033
|
+
validatorAddress?: string;
|
|
1034
|
+
shares?: string;
|
|
1035
|
+
};
|
|
1036
|
+
balance?: {
|
|
1037
|
+
denom?: string;
|
|
1038
|
+
amount?: string;
|
|
1039
|
+
};
|
|
1040
|
+
}[]>]: never; };
|
|
1041
|
+
pagination?: {
|
|
1042
|
+
nextKey?: Uint8Array;
|
|
1043
|
+
total?: number;
|
|
1044
|
+
} & {
|
|
1045
|
+
nextKey?: Uint8Array;
|
|
1046
|
+
total?: number;
|
|
1047
|
+
} & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
1048
|
+
} & { [K_5 in Exclude<keyof I, keyof QueryValidatorDelegationsResponse>]: never; }>(base?: I): QueryValidatorDelegationsResponse;
|
|
1049
|
+
fromPartial<I_1 extends {
|
|
1050
|
+
delegationResponses?: {
|
|
1051
|
+
delegation?: {
|
|
1052
|
+
delegatorAddress?: string;
|
|
1053
|
+
validatorAddress?: string;
|
|
1054
|
+
shares?: string;
|
|
1055
|
+
};
|
|
1056
|
+
balance?: {
|
|
1057
|
+
denom?: string;
|
|
1058
|
+
amount?: string;
|
|
1059
|
+
};
|
|
1060
|
+
}[];
|
|
1061
|
+
pagination?: {
|
|
1062
|
+
nextKey?: Uint8Array;
|
|
1063
|
+
total?: number;
|
|
1064
|
+
};
|
|
1065
|
+
} & {
|
|
1066
|
+
delegationResponses?: {
|
|
1067
|
+
delegation?: {
|
|
1068
|
+
delegatorAddress?: string;
|
|
1069
|
+
validatorAddress?: string;
|
|
1070
|
+
shares?: string;
|
|
1071
|
+
};
|
|
1072
|
+
balance?: {
|
|
1073
|
+
denom?: string;
|
|
1074
|
+
amount?: string;
|
|
1075
|
+
};
|
|
1076
|
+
}[] & ({
|
|
1077
|
+
delegation?: {
|
|
1078
|
+
delegatorAddress?: string;
|
|
1079
|
+
validatorAddress?: string;
|
|
1080
|
+
shares?: string;
|
|
1081
|
+
};
|
|
1082
|
+
balance?: {
|
|
1083
|
+
denom?: string;
|
|
1084
|
+
amount?: string;
|
|
1085
|
+
};
|
|
1086
|
+
} & {
|
|
1087
|
+
delegation?: {
|
|
1088
|
+
delegatorAddress?: string;
|
|
1089
|
+
validatorAddress?: string;
|
|
1090
|
+
shares?: string;
|
|
1091
|
+
} & {
|
|
1092
|
+
delegatorAddress?: string;
|
|
1093
|
+
validatorAddress?: string;
|
|
1094
|
+
shares?: string;
|
|
1095
|
+
} & { [K_6 in Exclude<keyof I_1["delegationResponses"][number]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1096
|
+
balance?: {
|
|
1097
|
+
denom?: string;
|
|
1098
|
+
amount?: string;
|
|
1099
|
+
} & {
|
|
1100
|
+
denom?: string;
|
|
1101
|
+
amount?: string;
|
|
1102
|
+
} & { [K_7 in Exclude<keyof I_1["delegationResponses"][number]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1103
|
+
} & { [K_8 in Exclude<keyof I_1["delegationResponses"][number], keyof DelegationResponse>]: never; })[] & { [K_9 in Exclude<keyof I_1["delegationResponses"], keyof {
|
|
1104
|
+
delegation?: {
|
|
1105
|
+
delegatorAddress?: string;
|
|
1106
|
+
validatorAddress?: string;
|
|
1107
|
+
shares?: string;
|
|
1108
|
+
};
|
|
1109
|
+
balance?: {
|
|
1110
|
+
denom?: string;
|
|
1111
|
+
amount?: string;
|
|
1112
|
+
};
|
|
1113
|
+
}[]>]: never; };
|
|
1114
|
+
pagination?: {
|
|
1115
|
+
nextKey?: Uint8Array;
|
|
1116
|
+
total?: number;
|
|
1117
|
+
} & {
|
|
1118
|
+
nextKey?: Uint8Array;
|
|
1119
|
+
total?: number;
|
|
1120
|
+
} & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
1121
|
+
} & { [K_11 in Exclude<keyof I_1, keyof QueryValidatorDelegationsResponse>]: never; }>(object: I_1): QueryValidatorDelegationsResponse;
|
|
1122
|
+
};
|
|
1123
|
+
export declare const QueryValidatorUnbondingDelegationsRequest: {
|
|
1124
|
+
encode(message: QueryValidatorUnbondingDelegationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1125
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsRequest;
|
|
1126
|
+
fromJSON(object: any): QueryValidatorUnbondingDelegationsRequest;
|
|
1127
|
+
toJSON(message: QueryValidatorUnbondingDelegationsRequest): unknown;
|
|
1128
|
+
create<I extends {
|
|
1129
|
+
validatorAddr?: string;
|
|
1130
|
+
pagination?: {
|
|
1131
|
+
key?: Uint8Array;
|
|
1132
|
+
offset?: number;
|
|
1133
|
+
limit?: number;
|
|
1134
|
+
countTotal?: boolean;
|
|
1135
|
+
reverse?: boolean;
|
|
1136
|
+
};
|
|
1137
|
+
} & {
|
|
1138
|
+
validatorAddr?: string;
|
|
1139
|
+
pagination?: {
|
|
1140
|
+
key?: Uint8Array;
|
|
1141
|
+
offset?: number;
|
|
1142
|
+
limit?: number;
|
|
1143
|
+
countTotal?: boolean;
|
|
1144
|
+
reverse?: boolean;
|
|
1145
|
+
} & {
|
|
1146
|
+
key?: Uint8Array;
|
|
1147
|
+
offset?: number;
|
|
1148
|
+
limit?: number;
|
|
1149
|
+
countTotal?: boolean;
|
|
1150
|
+
reverse?: boolean;
|
|
1151
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
1152
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryValidatorUnbondingDelegationsRequest>]: never; }>(base?: I): QueryValidatorUnbondingDelegationsRequest;
|
|
1153
|
+
fromPartial<I_1 extends {
|
|
1154
|
+
validatorAddr?: string;
|
|
1155
|
+
pagination?: {
|
|
1156
|
+
key?: Uint8Array;
|
|
1157
|
+
offset?: number;
|
|
1158
|
+
limit?: number;
|
|
1159
|
+
countTotal?: boolean;
|
|
1160
|
+
reverse?: boolean;
|
|
1161
|
+
};
|
|
1162
|
+
} & {
|
|
1163
|
+
validatorAddr?: string;
|
|
1164
|
+
pagination?: {
|
|
1165
|
+
key?: Uint8Array;
|
|
1166
|
+
offset?: number;
|
|
1167
|
+
limit?: number;
|
|
1168
|
+
countTotal?: boolean;
|
|
1169
|
+
reverse?: boolean;
|
|
1170
|
+
} & {
|
|
1171
|
+
key?: Uint8Array;
|
|
1172
|
+
offset?: number;
|
|
1173
|
+
limit?: number;
|
|
1174
|
+
countTotal?: boolean;
|
|
1175
|
+
reverse?: boolean;
|
|
1176
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
1177
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryValidatorUnbondingDelegationsRequest>]: never; }>(object: I_1): QueryValidatorUnbondingDelegationsRequest;
|
|
1178
|
+
};
|
|
1179
|
+
export declare const QueryValidatorUnbondingDelegationsResponse: {
|
|
1180
|
+
encode(message: QueryValidatorUnbondingDelegationsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1181
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsResponse;
|
|
1182
|
+
fromJSON(object: any): QueryValidatorUnbondingDelegationsResponse;
|
|
1183
|
+
toJSON(message: QueryValidatorUnbondingDelegationsResponse): unknown;
|
|
1184
|
+
create<I extends {
|
|
1185
|
+
unbondingResponses?: {
|
|
1186
|
+
delegatorAddress?: string;
|
|
1187
|
+
validatorAddress?: string;
|
|
1188
|
+
entries?: {
|
|
1189
|
+
creationHeight?: number;
|
|
1190
|
+
completionTime?: Date;
|
|
1191
|
+
initialBalance?: string;
|
|
1192
|
+
balance?: string;
|
|
1193
|
+
unbondingId?: number;
|
|
1194
|
+
unbondingOnHoldRefCount?: number;
|
|
1195
|
+
}[];
|
|
1196
|
+
}[];
|
|
1197
|
+
pagination?: {
|
|
1198
|
+
nextKey?: Uint8Array;
|
|
1199
|
+
total?: number;
|
|
1200
|
+
};
|
|
1201
|
+
} & {
|
|
1202
|
+
unbondingResponses?: {
|
|
1203
|
+
delegatorAddress?: string;
|
|
1204
|
+
validatorAddress?: string;
|
|
1205
|
+
entries?: {
|
|
1206
|
+
creationHeight?: number;
|
|
1207
|
+
completionTime?: Date;
|
|
1208
|
+
initialBalance?: string;
|
|
1209
|
+
balance?: string;
|
|
1210
|
+
unbondingId?: number;
|
|
1211
|
+
unbondingOnHoldRefCount?: number;
|
|
1212
|
+
}[];
|
|
1213
|
+
}[] & ({
|
|
1214
|
+
delegatorAddress?: string;
|
|
1215
|
+
validatorAddress?: string;
|
|
1216
|
+
entries?: {
|
|
1217
|
+
creationHeight?: number;
|
|
1218
|
+
completionTime?: Date;
|
|
1219
|
+
initialBalance?: string;
|
|
1220
|
+
balance?: string;
|
|
1221
|
+
unbondingId?: number;
|
|
1222
|
+
unbondingOnHoldRefCount?: number;
|
|
1223
|
+
}[];
|
|
1224
|
+
} & {
|
|
1225
|
+
delegatorAddress?: string;
|
|
1226
|
+
validatorAddress?: string;
|
|
1227
|
+
entries?: {
|
|
1228
|
+
creationHeight?: number;
|
|
1229
|
+
completionTime?: Date;
|
|
1230
|
+
initialBalance?: string;
|
|
1231
|
+
balance?: string;
|
|
1232
|
+
unbondingId?: number;
|
|
1233
|
+
unbondingOnHoldRefCount?: number;
|
|
1234
|
+
}[] & ({
|
|
1235
|
+
creationHeight?: number;
|
|
1236
|
+
completionTime?: Date;
|
|
1237
|
+
initialBalance?: string;
|
|
1238
|
+
balance?: string;
|
|
1239
|
+
unbondingId?: number;
|
|
1240
|
+
unbondingOnHoldRefCount?: number;
|
|
1241
|
+
} & {
|
|
1242
|
+
creationHeight?: number;
|
|
1243
|
+
completionTime?: Date;
|
|
1244
|
+
initialBalance?: string;
|
|
1245
|
+
balance?: string;
|
|
1246
|
+
unbondingId?: number;
|
|
1247
|
+
unbondingOnHoldRefCount?: number;
|
|
1248
|
+
} & { [K in Exclude<keyof I["unbondingResponses"][number]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_1 in Exclude<keyof I["unbondingResponses"][number]["entries"], keyof {
|
|
1249
|
+
creationHeight?: number;
|
|
1250
|
+
completionTime?: Date;
|
|
1251
|
+
initialBalance?: string;
|
|
1252
|
+
balance?: string;
|
|
1253
|
+
unbondingId?: number;
|
|
1254
|
+
unbondingOnHoldRefCount?: number;
|
|
1255
|
+
}[]>]: never; };
|
|
1256
|
+
} & { [K_2 in Exclude<keyof I["unbondingResponses"][number], keyof UnbondingDelegation>]: never; })[] & { [K_3 in Exclude<keyof I["unbondingResponses"], keyof {
|
|
1257
|
+
delegatorAddress?: string;
|
|
1258
|
+
validatorAddress?: string;
|
|
1259
|
+
entries?: {
|
|
1260
|
+
creationHeight?: number;
|
|
1261
|
+
completionTime?: Date;
|
|
1262
|
+
initialBalance?: string;
|
|
1263
|
+
balance?: string;
|
|
1264
|
+
unbondingId?: number;
|
|
1265
|
+
unbondingOnHoldRefCount?: number;
|
|
1266
|
+
}[];
|
|
1267
|
+
}[]>]: never; };
|
|
1268
|
+
pagination?: {
|
|
1269
|
+
nextKey?: Uint8Array;
|
|
1270
|
+
total?: number;
|
|
1271
|
+
} & {
|
|
1272
|
+
nextKey?: Uint8Array;
|
|
1273
|
+
total?: number;
|
|
1274
|
+
} & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
1275
|
+
} & { [K_5 in Exclude<keyof I, keyof QueryValidatorUnbondingDelegationsResponse>]: never; }>(base?: I): QueryValidatorUnbondingDelegationsResponse;
|
|
1276
|
+
fromPartial<I_1 extends {
|
|
1277
|
+
unbondingResponses?: {
|
|
1278
|
+
delegatorAddress?: string;
|
|
1279
|
+
validatorAddress?: string;
|
|
1280
|
+
entries?: {
|
|
1281
|
+
creationHeight?: number;
|
|
1282
|
+
completionTime?: Date;
|
|
1283
|
+
initialBalance?: string;
|
|
1284
|
+
balance?: string;
|
|
1285
|
+
unbondingId?: number;
|
|
1286
|
+
unbondingOnHoldRefCount?: number;
|
|
1287
|
+
}[];
|
|
1288
|
+
}[];
|
|
1289
|
+
pagination?: {
|
|
1290
|
+
nextKey?: Uint8Array;
|
|
1291
|
+
total?: number;
|
|
1292
|
+
};
|
|
1293
|
+
} & {
|
|
1294
|
+
unbondingResponses?: {
|
|
1295
|
+
delegatorAddress?: string;
|
|
1296
|
+
validatorAddress?: string;
|
|
1297
|
+
entries?: {
|
|
1298
|
+
creationHeight?: number;
|
|
1299
|
+
completionTime?: Date;
|
|
1300
|
+
initialBalance?: string;
|
|
1301
|
+
balance?: string;
|
|
1302
|
+
unbondingId?: number;
|
|
1303
|
+
unbondingOnHoldRefCount?: number;
|
|
1304
|
+
}[];
|
|
1305
|
+
}[] & ({
|
|
1306
|
+
delegatorAddress?: string;
|
|
1307
|
+
validatorAddress?: string;
|
|
1308
|
+
entries?: {
|
|
1309
|
+
creationHeight?: number;
|
|
1310
|
+
completionTime?: Date;
|
|
1311
|
+
initialBalance?: string;
|
|
1312
|
+
balance?: string;
|
|
1313
|
+
unbondingId?: number;
|
|
1314
|
+
unbondingOnHoldRefCount?: number;
|
|
1315
|
+
}[];
|
|
1316
|
+
} & {
|
|
1317
|
+
delegatorAddress?: string;
|
|
1318
|
+
validatorAddress?: string;
|
|
1319
|
+
entries?: {
|
|
1320
|
+
creationHeight?: number;
|
|
1321
|
+
completionTime?: Date;
|
|
1322
|
+
initialBalance?: string;
|
|
1323
|
+
balance?: string;
|
|
1324
|
+
unbondingId?: number;
|
|
1325
|
+
unbondingOnHoldRefCount?: number;
|
|
1326
|
+
}[] & ({
|
|
1327
|
+
creationHeight?: number;
|
|
1328
|
+
completionTime?: Date;
|
|
1329
|
+
initialBalance?: string;
|
|
1330
|
+
balance?: string;
|
|
1331
|
+
unbondingId?: number;
|
|
1332
|
+
unbondingOnHoldRefCount?: number;
|
|
1333
|
+
} & {
|
|
1334
|
+
creationHeight?: number;
|
|
1335
|
+
completionTime?: Date;
|
|
1336
|
+
initialBalance?: string;
|
|
1337
|
+
balance?: string;
|
|
1338
|
+
unbondingId?: number;
|
|
1339
|
+
unbondingOnHoldRefCount?: number;
|
|
1340
|
+
} & { [K_6 in Exclude<keyof I_1["unbondingResponses"][number]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_7 in Exclude<keyof I_1["unbondingResponses"][number]["entries"], keyof {
|
|
1341
|
+
creationHeight?: number;
|
|
1342
|
+
completionTime?: Date;
|
|
1343
|
+
initialBalance?: string;
|
|
1344
|
+
balance?: string;
|
|
1345
|
+
unbondingId?: number;
|
|
1346
|
+
unbondingOnHoldRefCount?: number;
|
|
1347
|
+
}[]>]: never; };
|
|
1348
|
+
} & { [K_8 in Exclude<keyof I_1["unbondingResponses"][number], keyof UnbondingDelegation>]: never; })[] & { [K_9 in Exclude<keyof I_1["unbondingResponses"], keyof {
|
|
1349
|
+
delegatorAddress?: string;
|
|
1350
|
+
validatorAddress?: string;
|
|
1351
|
+
entries?: {
|
|
1352
|
+
creationHeight?: number;
|
|
1353
|
+
completionTime?: Date;
|
|
1354
|
+
initialBalance?: string;
|
|
1355
|
+
balance?: string;
|
|
1356
|
+
unbondingId?: number;
|
|
1357
|
+
unbondingOnHoldRefCount?: number;
|
|
1358
|
+
}[];
|
|
1359
|
+
}[]>]: never; };
|
|
1360
|
+
pagination?: {
|
|
1361
|
+
nextKey?: Uint8Array;
|
|
1362
|
+
total?: number;
|
|
1363
|
+
} & {
|
|
1364
|
+
nextKey?: Uint8Array;
|
|
1365
|
+
total?: number;
|
|
1366
|
+
} & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
1367
|
+
} & { [K_11 in Exclude<keyof I_1, keyof QueryValidatorUnbondingDelegationsResponse>]: never; }>(object: I_1): QueryValidatorUnbondingDelegationsResponse;
|
|
1368
|
+
};
|
|
1369
|
+
export declare const QueryDelegationRequest: {
|
|
1370
|
+
encode(message: QueryDelegationRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1371
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationRequest;
|
|
1372
|
+
fromJSON(object: any): QueryDelegationRequest;
|
|
1373
|
+
toJSON(message: QueryDelegationRequest): unknown;
|
|
1374
|
+
create<I extends {
|
|
1375
|
+
delegatorAddr?: string;
|
|
1376
|
+
validatorAddr?: string;
|
|
1377
|
+
} & {
|
|
1378
|
+
delegatorAddr?: string;
|
|
1379
|
+
validatorAddr?: string;
|
|
1380
|
+
} & { [K in Exclude<keyof I, keyof QueryDelegationRequest>]: never; }>(base?: I): QueryDelegationRequest;
|
|
1381
|
+
fromPartial<I_1 extends {
|
|
1382
|
+
delegatorAddr?: string;
|
|
1383
|
+
validatorAddr?: string;
|
|
1384
|
+
} & {
|
|
1385
|
+
delegatorAddr?: string;
|
|
1386
|
+
validatorAddr?: string;
|
|
1387
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QueryDelegationRequest>]: never; }>(object: I_1): QueryDelegationRequest;
|
|
1388
|
+
};
|
|
1389
|
+
export declare const QueryDelegationResponse: {
|
|
1390
|
+
encode(message: QueryDelegationResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1391
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationResponse;
|
|
1392
|
+
fromJSON(object: any): QueryDelegationResponse;
|
|
1393
|
+
toJSON(message: QueryDelegationResponse): unknown;
|
|
1394
|
+
create<I extends {
|
|
1395
|
+
delegationResponse?: {
|
|
1396
|
+
delegation?: {
|
|
1397
|
+
delegatorAddress?: string;
|
|
1398
|
+
validatorAddress?: string;
|
|
1399
|
+
shares?: string;
|
|
1400
|
+
};
|
|
1401
|
+
balance?: {
|
|
1402
|
+
denom?: string;
|
|
1403
|
+
amount?: string;
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
} & {
|
|
1407
|
+
delegationResponse?: {
|
|
1408
|
+
delegation?: {
|
|
1409
|
+
delegatorAddress?: string;
|
|
1410
|
+
validatorAddress?: string;
|
|
1411
|
+
shares?: string;
|
|
1412
|
+
};
|
|
1413
|
+
balance?: {
|
|
1414
|
+
denom?: string;
|
|
1415
|
+
amount?: string;
|
|
1416
|
+
};
|
|
1417
|
+
} & {
|
|
1418
|
+
delegation?: {
|
|
1419
|
+
delegatorAddress?: string;
|
|
1420
|
+
validatorAddress?: string;
|
|
1421
|
+
shares?: string;
|
|
1422
|
+
} & {
|
|
1423
|
+
delegatorAddress?: string;
|
|
1424
|
+
validatorAddress?: string;
|
|
1425
|
+
shares?: string;
|
|
1426
|
+
} & { [K in Exclude<keyof I["delegationResponse"]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1427
|
+
balance?: {
|
|
1428
|
+
denom?: string;
|
|
1429
|
+
amount?: string;
|
|
1430
|
+
} & {
|
|
1431
|
+
denom?: string;
|
|
1432
|
+
amount?: string;
|
|
1433
|
+
} & { [K_1 in Exclude<keyof I["delegationResponse"]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1434
|
+
} & { [K_2 in Exclude<keyof I["delegationResponse"], keyof DelegationResponse>]: never; };
|
|
1435
|
+
} & { [K_3 in Exclude<keyof I, "delegationResponse">]: never; }>(base?: I): QueryDelegationResponse;
|
|
1436
|
+
fromPartial<I_1 extends {
|
|
1437
|
+
delegationResponse?: {
|
|
1438
|
+
delegation?: {
|
|
1439
|
+
delegatorAddress?: string;
|
|
1440
|
+
validatorAddress?: string;
|
|
1441
|
+
shares?: string;
|
|
1442
|
+
};
|
|
1443
|
+
balance?: {
|
|
1444
|
+
denom?: string;
|
|
1445
|
+
amount?: string;
|
|
1446
|
+
};
|
|
1447
|
+
};
|
|
1448
|
+
} & {
|
|
1449
|
+
delegationResponse?: {
|
|
1450
|
+
delegation?: {
|
|
1451
|
+
delegatorAddress?: string;
|
|
1452
|
+
validatorAddress?: string;
|
|
1453
|
+
shares?: string;
|
|
1454
|
+
};
|
|
1455
|
+
balance?: {
|
|
1456
|
+
denom?: string;
|
|
1457
|
+
amount?: string;
|
|
1458
|
+
};
|
|
1459
|
+
} & {
|
|
1460
|
+
delegation?: {
|
|
1461
|
+
delegatorAddress?: string;
|
|
1462
|
+
validatorAddress?: string;
|
|
1463
|
+
shares?: string;
|
|
1464
|
+
} & {
|
|
1465
|
+
delegatorAddress?: string;
|
|
1466
|
+
validatorAddress?: string;
|
|
1467
|
+
shares?: string;
|
|
1468
|
+
} & { [K_4 in Exclude<keyof I_1["delegationResponse"]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1469
|
+
balance?: {
|
|
1470
|
+
denom?: string;
|
|
1471
|
+
amount?: string;
|
|
1472
|
+
} & {
|
|
1473
|
+
denom?: string;
|
|
1474
|
+
amount?: string;
|
|
1475
|
+
} & { [K_5 in Exclude<keyof I_1["delegationResponse"]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1476
|
+
} & { [K_6 in Exclude<keyof I_1["delegationResponse"], keyof DelegationResponse>]: never; };
|
|
1477
|
+
} & { [K_7 in Exclude<keyof I_1, "delegationResponse">]: never; }>(object: I_1): QueryDelegationResponse;
|
|
1478
|
+
};
|
|
1479
|
+
export declare const QueryUnbondingDelegationRequest: {
|
|
1480
|
+
encode(message: QueryUnbondingDelegationRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1481
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationRequest;
|
|
1482
|
+
fromJSON(object: any): QueryUnbondingDelegationRequest;
|
|
1483
|
+
toJSON(message: QueryUnbondingDelegationRequest): unknown;
|
|
1484
|
+
create<I extends {
|
|
1485
|
+
delegatorAddr?: string;
|
|
1486
|
+
validatorAddr?: string;
|
|
1487
|
+
} & {
|
|
1488
|
+
delegatorAddr?: string;
|
|
1489
|
+
validatorAddr?: string;
|
|
1490
|
+
} & { [K in Exclude<keyof I, keyof QueryUnbondingDelegationRequest>]: never; }>(base?: I): QueryUnbondingDelegationRequest;
|
|
1491
|
+
fromPartial<I_1 extends {
|
|
1492
|
+
delegatorAddr?: string;
|
|
1493
|
+
validatorAddr?: string;
|
|
1494
|
+
} & {
|
|
1495
|
+
delegatorAddr?: string;
|
|
1496
|
+
validatorAddr?: string;
|
|
1497
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QueryUnbondingDelegationRequest>]: never; }>(object: I_1): QueryUnbondingDelegationRequest;
|
|
1498
|
+
};
|
|
1499
|
+
export declare const QueryUnbondingDelegationResponse: {
|
|
1500
|
+
encode(message: QueryUnbondingDelegationResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1501
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationResponse;
|
|
1502
|
+
fromJSON(object: any): QueryUnbondingDelegationResponse;
|
|
1503
|
+
toJSON(message: QueryUnbondingDelegationResponse): unknown;
|
|
1504
|
+
create<I extends {
|
|
1505
|
+
unbond?: {
|
|
1506
|
+
delegatorAddress?: string;
|
|
1507
|
+
validatorAddress?: string;
|
|
1508
|
+
entries?: {
|
|
1509
|
+
creationHeight?: number;
|
|
1510
|
+
completionTime?: Date;
|
|
1511
|
+
initialBalance?: string;
|
|
1512
|
+
balance?: string;
|
|
1513
|
+
unbondingId?: number;
|
|
1514
|
+
unbondingOnHoldRefCount?: number;
|
|
1515
|
+
}[];
|
|
1516
|
+
};
|
|
1517
|
+
} & {
|
|
1518
|
+
unbond?: {
|
|
1519
|
+
delegatorAddress?: string;
|
|
1520
|
+
validatorAddress?: string;
|
|
1521
|
+
entries?: {
|
|
1522
|
+
creationHeight?: number;
|
|
1523
|
+
completionTime?: Date;
|
|
1524
|
+
initialBalance?: string;
|
|
1525
|
+
balance?: string;
|
|
1526
|
+
unbondingId?: number;
|
|
1527
|
+
unbondingOnHoldRefCount?: number;
|
|
1528
|
+
}[];
|
|
1529
|
+
} & {
|
|
1530
|
+
delegatorAddress?: string;
|
|
1531
|
+
validatorAddress?: string;
|
|
1532
|
+
entries?: {
|
|
1533
|
+
creationHeight?: number;
|
|
1534
|
+
completionTime?: Date;
|
|
1535
|
+
initialBalance?: string;
|
|
1536
|
+
balance?: string;
|
|
1537
|
+
unbondingId?: number;
|
|
1538
|
+
unbondingOnHoldRefCount?: number;
|
|
1539
|
+
}[] & ({
|
|
1540
|
+
creationHeight?: number;
|
|
1541
|
+
completionTime?: Date;
|
|
1542
|
+
initialBalance?: string;
|
|
1543
|
+
balance?: string;
|
|
1544
|
+
unbondingId?: number;
|
|
1545
|
+
unbondingOnHoldRefCount?: number;
|
|
1546
|
+
} & {
|
|
1547
|
+
creationHeight?: number;
|
|
1548
|
+
completionTime?: Date;
|
|
1549
|
+
initialBalance?: string;
|
|
1550
|
+
balance?: string;
|
|
1551
|
+
unbondingId?: number;
|
|
1552
|
+
unbondingOnHoldRefCount?: number;
|
|
1553
|
+
} & { [K in Exclude<keyof I["unbond"]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_1 in Exclude<keyof I["unbond"]["entries"], keyof {
|
|
1554
|
+
creationHeight?: number;
|
|
1555
|
+
completionTime?: Date;
|
|
1556
|
+
initialBalance?: string;
|
|
1557
|
+
balance?: string;
|
|
1558
|
+
unbondingId?: number;
|
|
1559
|
+
unbondingOnHoldRefCount?: number;
|
|
1560
|
+
}[]>]: never; };
|
|
1561
|
+
} & { [K_2 in Exclude<keyof I["unbond"], keyof UnbondingDelegation>]: never; };
|
|
1562
|
+
} & { [K_3 in Exclude<keyof I, "unbond">]: never; }>(base?: I): QueryUnbondingDelegationResponse;
|
|
1563
|
+
fromPartial<I_1 extends {
|
|
1564
|
+
unbond?: {
|
|
1565
|
+
delegatorAddress?: string;
|
|
1566
|
+
validatorAddress?: string;
|
|
1567
|
+
entries?: {
|
|
1568
|
+
creationHeight?: number;
|
|
1569
|
+
completionTime?: Date;
|
|
1570
|
+
initialBalance?: string;
|
|
1571
|
+
balance?: string;
|
|
1572
|
+
unbondingId?: number;
|
|
1573
|
+
unbondingOnHoldRefCount?: number;
|
|
1574
|
+
}[];
|
|
1575
|
+
};
|
|
1576
|
+
} & {
|
|
1577
|
+
unbond?: {
|
|
1578
|
+
delegatorAddress?: string;
|
|
1579
|
+
validatorAddress?: string;
|
|
1580
|
+
entries?: {
|
|
1581
|
+
creationHeight?: number;
|
|
1582
|
+
completionTime?: Date;
|
|
1583
|
+
initialBalance?: string;
|
|
1584
|
+
balance?: string;
|
|
1585
|
+
unbondingId?: number;
|
|
1586
|
+
unbondingOnHoldRefCount?: number;
|
|
1587
|
+
}[];
|
|
1588
|
+
} & {
|
|
1589
|
+
delegatorAddress?: string;
|
|
1590
|
+
validatorAddress?: string;
|
|
1591
|
+
entries?: {
|
|
1592
|
+
creationHeight?: number;
|
|
1593
|
+
completionTime?: Date;
|
|
1594
|
+
initialBalance?: string;
|
|
1595
|
+
balance?: string;
|
|
1596
|
+
unbondingId?: number;
|
|
1597
|
+
unbondingOnHoldRefCount?: number;
|
|
1598
|
+
}[] & ({
|
|
1599
|
+
creationHeight?: number;
|
|
1600
|
+
completionTime?: Date;
|
|
1601
|
+
initialBalance?: string;
|
|
1602
|
+
balance?: string;
|
|
1603
|
+
unbondingId?: number;
|
|
1604
|
+
unbondingOnHoldRefCount?: number;
|
|
1605
|
+
} & {
|
|
1606
|
+
creationHeight?: number;
|
|
1607
|
+
completionTime?: Date;
|
|
1608
|
+
initialBalance?: string;
|
|
1609
|
+
balance?: string;
|
|
1610
|
+
unbondingId?: number;
|
|
1611
|
+
unbondingOnHoldRefCount?: number;
|
|
1612
|
+
} & { [K_4 in Exclude<keyof I_1["unbond"]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_5 in Exclude<keyof I_1["unbond"]["entries"], keyof {
|
|
1613
|
+
creationHeight?: number;
|
|
1614
|
+
completionTime?: Date;
|
|
1615
|
+
initialBalance?: string;
|
|
1616
|
+
balance?: string;
|
|
1617
|
+
unbondingId?: number;
|
|
1618
|
+
unbondingOnHoldRefCount?: number;
|
|
1619
|
+
}[]>]: never; };
|
|
1620
|
+
} & { [K_6 in Exclude<keyof I_1["unbond"], keyof UnbondingDelegation>]: never; };
|
|
1621
|
+
} & { [K_7 in Exclude<keyof I_1, "unbond">]: never; }>(object: I_1): QueryUnbondingDelegationResponse;
|
|
1622
|
+
};
|
|
1623
|
+
export declare const QueryDelegatorDelegationsRequest: {
|
|
1624
|
+
encode(message: QueryDelegatorDelegationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1625
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsRequest;
|
|
1626
|
+
fromJSON(object: any): QueryDelegatorDelegationsRequest;
|
|
1627
|
+
toJSON(message: QueryDelegatorDelegationsRequest): unknown;
|
|
1628
|
+
create<I extends {
|
|
1629
|
+
delegatorAddr?: string;
|
|
1630
|
+
pagination?: {
|
|
1631
|
+
key?: Uint8Array;
|
|
1632
|
+
offset?: number;
|
|
1633
|
+
limit?: number;
|
|
1634
|
+
countTotal?: boolean;
|
|
1635
|
+
reverse?: boolean;
|
|
1636
|
+
};
|
|
1637
|
+
} & {
|
|
1638
|
+
delegatorAddr?: string;
|
|
1639
|
+
pagination?: {
|
|
1640
|
+
key?: Uint8Array;
|
|
1641
|
+
offset?: number;
|
|
1642
|
+
limit?: number;
|
|
1643
|
+
countTotal?: boolean;
|
|
1644
|
+
reverse?: boolean;
|
|
1645
|
+
} & {
|
|
1646
|
+
key?: Uint8Array;
|
|
1647
|
+
offset?: number;
|
|
1648
|
+
limit?: number;
|
|
1649
|
+
countTotal?: boolean;
|
|
1650
|
+
reverse?: boolean;
|
|
1651
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
1652
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryDelegatorDelegationsRequest>]: never; }>(base?: I): QueryDelegatorDelegationsRequest;
|
|
1653
|
+
fromPartial<I_1 extends {
|
|
1654
|
+
delegatorAddr?: string;
|
|
1655
|
+
pagination?: {
|
|
1656
|
+
key?: Uint8Array;
|
|
1657
|
+
offset?: number;
|
|
1658
|
+
limit?: number;
|
|
1659
|
+
countTotal?: boolean;
|
|
1660
|
+
reverse?: boolean;
|
|
1661
|
+
};
|
|
1662
|
+
} & {
|
|
1663
|
+
delegatorAddr?: string;
|
|
1664
|
+
pagination?: {
|
|
1665
|
+
key?: Uint8Array;
|
|
1666
|
+
offset?: number;
|
|
1667
|
+
limit?: number;
|
|
1668
|
+
countTotal?: boolean;
|
|
1669
|
+
reverse?: boolean;
|
|
1670
|
+
} & {
|
|
1671
|
+
key?: Uint8Array;
|
|
1672
|
+
offset?: number;
|
|
1673
|
+
limit?: number;
|
|
1674
|
+
countTotal?: boolean;
|
|
1675
|
+
reverse?: boolean;
|
|
1676
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
1677
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryDelegatorDelegationsRequest>]: never; }>(object: I_1): QueryDelegatorDelegationsRequest;
|
|
1678
|
+
};
|
|
1679
|
+
export declare const QueryDelegatorDelegationsResponse: {
|
|
1680
|
+
encode(message: QueryDelegatorDelegationsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1681
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsResponse;
|
|
1682
|
+
fromJSON(object: any): QueryDelegatorDelegationsResponse;
|
|
1683
|
+
toJSON(message: QueryDelegatorDelegationsResponse): unknown;
|
|
1684
|
+
create<I extends {
|
|
1685
|
+
delegationResponses?: {
|
|
1686
|
+
delegation?: {
|
|
1687
|
+
delegatorAddress?: string;
|
|
1688
|
+
validatorAddress?: string;
|
|
1689
|
+
shares?: string;
|
|
1690
|
+
};
|
|
1691
|
+
balance?: {
|
|
1692
|
+
denom?: string;
|
|
1693
|
+
amount?: string;
|
|
1694
|
+
};
|
|
1695
|
+
}[];
|
|
1696
|
+
pagination?: {
|
|
1697
|
+
nextKey?: Uint8Array;
|
|
1698
|
+
total?: number;
|
|
1699
|
+
};
|
|
1700
|
+
} & {
|
|
1701
|
+
delegationResponses?: {
|
|
1702
|
+
delegation?: {
|
|
1703
|
+
delegatorAddress?: string;
|
|
1704
|
+
validatorAddress?: string;
|
|
1705
|
+
shares?: string;
|
|
1706
|
+
};
|
|
1707
|
+
balance?: {
|
|
1708
|
+
denom?: string;
|
|
1709
|
+
amount?: string;
|
|
1710
|
+
};
|
|
1711
|
+
}[] & ({
|
|
1712
|
+
delegation?: {
|
|
1713
|
+
delegatorAddress?: string;
|
|
1714
|
+
validatorAddress?: string;
|
|
1715
|
+
shares?: string;
|
|
1716
|
+
};
|
|
1717
|
+
balance?: {
|
|
1718
|
+
denom?: string;
|
|
1719
|
+
amount?: string;
|
|
1720
|
+
};
|
|
1721
|
+
} & {
|
|
1722
|
+
delegation?: {
|
|
1723
|
+
delegatorAddress?: string;
|
|
1724
|
+
validatorAddress?: string;
|
|
1725
|
+
shares?: string;
|
|
1726
|
+
} & {
|
|
1727
|
+
delegatorAddress?: string;
|
|
1728
|
+
validatorAddress?: string;
|
|
1729
|
+
shares?: string;
|
|
1730
|
+
} & { [K in Exclude<keyof I["delegationResponses"][number]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1731
|
+
balance?: {
|
|
1732
|
+
denom?: string;
|
|
1733
|
+
amount?: string;
|
|
1734
|
+
} & {
|
|
1735
|
+
denom?: string;
|
|
1736
|
+
amount?: string;
|
|
1737
|
+
} & { [K_1 in Exclude<keyof I["delegationResponses"][number]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1738
|
+
} & { [K_2 in Exclude<keyof I["delegationResponses"][number], keyof DelegationResponse>]: never; })[] & { [K_3 in Exclude<keyof I["delegationResponses"], keyof {
|
|
1739
|
+
delegation?: {
|
|
1740
|
+
delegatorAddress?: string;
|
|
1741
|
+
validatorAddress?: string;
|
|
1742
|
+
shares?: string;
|
|
1743
|
+
};
|
|
1744
|
+
balance?: {
|
|
1745
|
+
denom?: string;
|
|
1746
|
+
amount?: string;
|
|
1747
|
+
};
|
|
1748
|
+
}[]>]: never; };
|
|
1749
|
+
pagination?: {
|
|
1750
|
+
nextKey?: Uint8Array;
|
|
1751
|
+
total?: number;
|
|
1752
|
+
} & {
|
|
1753
|
+
nextKey?: Uint8Array;
|
|
1754
|
+
total?: number;
|
|
1755
|
+
} & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
1756
|
+
} & { [K_5 in Exclude<keyof I, keyof QueryDelegatorDelegationsResponse>]: never; }>(base?: I): QueryDelegatorDelegationsResponse;
|
|
1757
|
+
fromPartial<I_1 extends {
|
|
1758
|
+
delegationResponses?: {
|
|
1759
|
+
delegation?: {
|
|
1760
|
+
delegatorAddress?: string;
|
|
1761
|
+
validatorAddress?: string;
|
|
1762
|
+
shares?: string;
|
|
1763
|
+
};
|
|
1764
|
+
balance?: {
|
|
1765
|
+
denom?: string;
|
|
1766
|
+
amount?: string;
|
|
1767
|
+
};
|
|
1768
|
+
}[];
|
|
1769
|
+
pagination?: {
|
|
1770
|
+
nextKey?: Uint8Array;
|
|
1771
|
+
total?: number;
|
|
1772
|
+
};
|
|
1773
|
+
} & {
|
|
1774
|
+
delegationResponses?: {
|
|
1775
|
+
delegation?: {
|
|
1776
|
+
delegatorAddress?: string;
|
|
1777
|
+
validatorAddress?: string;
|
|
1778
|
+
shares?: string;
|
|
1779
|
+
};
|
|
1780
|
+
balance?: {
|
|
1781
|
+
denom?: string;
|
|
1782
|
+
amount?: string;
|
|
1783
|
+
};
|
|
1784
|
+
}[] & ({
|
|
1785
|
+
delegation?: {
|
|
1786
|
+
delegatorAddress?: string;
|
|
1787
|
+
validatorAddress?: string;
|
|
1788
|
+
shares?: string;
|
|
1789
|
+
};
|
|
1790
|
+
balance?: {
|
|
1791
|
+
denom?: string;
|
|
1792
|
+
amount?: string;
|
|
1793
|
+
};
|
|
1794
|
+
} & {
|
|
1795
|
+
delegation?: {
|
|
1796
|
+
delegatorAddress?: string;
|
|
1797
|
+
validatorAddress?: string;
|
|
1798
|
+
shares?: string;
|
|
1799
|
+
} & {
|
|
1800
|
+
delegatorAddress?: string;
|
|
1801
|
+
validatorAddress?: string;
|
|
1802
|
+
shares?: string;
|
|
1803
|
+
} & { [K_6 in Exclude<keyof I_1["delegationResponses"][number]["delegation"], keyof import("./staking").Delegation>]: never; };
|
|
1804
|
+
balance?: {
|
|
1805
|
+
denom?: string;
|
|
1806
|
+
amount?: string;
|
|
1807
|
+
} & {
|
|
1808
|
+
denom?: string;
|
|
1809
|
+
amount?: string;
|
|
1810
|
+
} & { [K_7 in Exclude<keyof I_1["delegationResponses"][number]["balance"], keyof import("../../base/v1beta1/coin").Coin>]: never; };
|
|
1811
|
+
} & { [K_8 in Exclude<keyof I_1["delegationResponses"][number], keyof DelegationResponse>]: never; })[] & { [K_9 in Exclude<keyof I_1["delegationResponses"], keyof {
|
|
1812
|
+
delegation?: {
|
|
1813
|
+
delegatorAddress?: string;
|
|
1814
|
+
validatorAddress?: string;
|
|
1815
|
+
shares?: string;
|
|
1816
|
+
};
|
|
1817
|
+
balance?: {
|
|
1818
|
+
denom?: string;
|
|
1819
|
+
amount?: string;
|
|
1820
|
+
};
|
|
1821
|
+
}[]>]: never; };
|
|
1822
|
+
pagination?: {
|
|
1823
|
+
nextKey?: Uint8Array;
|
|
1824
|
+
total?: number;
|
|
1825
|
+
} & {
|
|
1826
|
+
nextKey?: Uint8Array;
|
|
1827
|
+
total?: number;
|
|
1828
|
+
} & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
1829
|
+
} & { [K_11 in Exclude<keyof I_1, keyof QueryDelegatorDelegationsResponse>]: never; }>(object: I_1): QueryDelegatorDelegationsResponse;
|
|
1830
|
+
};
|
|
1831
|
+
export declare const QueryDelegatorUnbondingDelegationsRequest: {
|
|
1832
|
+
encode(message: QueryDelegatorUnbondingDelegationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1833
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsRequest;
|
|
1834
|
+
fromJSON(object: any): QueryDelegatorUnbondingDelegationsRequest;
|
|
1835
|
+
toJSON(message: QueryDelegatorUnbondingDelegationsRequest): unknown;
|
|
1836
|
+
create<I extends {
|
|
1837
|
+
delegatorAddr?: string;
|
|
1838
|
+
pagination?: {
|
|
1839
|
+
key?: Uint8Array;
|
|
1840
|
+
offset?: number;
|
|
1841
|
+
limit?: number;
|
|
1842
|
+
countTotal?: boolean;
|
|
1843
|
+
reverse?: boolean;
|
|
1844
|
+
};
|
|
1845
|
+
} & {
|
|
1846
|
+
delegatorAddr?: string;
|
|
1847
|
+
pagination?: {
|
|
1848
|
+
key?: Uint8Array;
|
|
1849
|
+
offset?: number;
|
|
1850
|
+
limit?: number;
|
|
1851
|
+
countTotal?: boolean;
|
|
1852
|
+
reverse?: boolean;
|
|
1853
|
+
} & {
|
|
1854
|
+
key?: Uint8Array;
|
|
1855
|
+
offset?: number;
|
|
1856
|
+
limit?: number;
|
|
1857
|
+
countTotal?: boolean;
|
|
1858
|
+
reverse?: boolean;
|
|
1859
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
1860
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryDelegatorUnbondingDelegationsRequest>]: never; }>(base?: I): QueryDelegatorUnbondingDelegationsRequest;
|
|
1861
|
+
fromPartial<I_1 extends {
|
|
1862
|
+
delegatorAddr?: string;
|
|
1863
|
+
pagination?: {
|
|
1864
|
+
key?: Uint8Array;
|
|
1865
|
+
offset?: number;
|
|
1866
|
+
limit?: number;
|
|
1867
|
+
countTotal?: boolean;
|
|
1868
|
+
reverse?: boolean;
|
|
1869
|
+
};
|
|
1870
|
+
} & {
|
|
1871
|
+
delegatorAddr?: string;
|
|
1872
|
+
pagination?: {
|
|
1873
|
+
key?: Uint8Array;
|
|
1874
|
+
offset?: number;
|
|
1875
|
+
limit?: number;
|
|
1876
|
+
countTotal?: boolean;
|
|
1877
|
+
reverse?: boolean;
|
|
1878
|
+
} & {
|
|
1879
|
+
key?: Uint8Array;
|
|
1880
|
+
offset?: number;
|
|
1881
|
+
limit?: number;
|
|
1882
|
+
countTotal?: boolean;
|
|
1883
|
+
reverse?: boolean;
|
|
1884
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
1885
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryDelegatorUnbondingDelegationsRequest>]: never; }>(object: I_1): QueryDelegatorUnbondingDelegationsRequest;
|
|
1886
|
+
};
|
|
1887
|
+
export declare const QueryDelegatorUnbondingDelegationsResponse: {
|
|
1888
|
+
encode(message: QueryDelegatorUnbondingDelegationsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
1889
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsResponse;
|
|
1890
|
+
fromJSON(object: any): QueryDelegatorUnbondingDelegationsResponse;
|
|
1891
|
+
toJSON(message: QueryDelegatorUnbondingDelegationsResponse): unknown;
|
|
1892
|
+
create<I extends {
|
|
1893
|
+
unbondingResponses?: {
|
|
1894
|
+
delegatorAddress?: string;
|
|
1895
|
+
validatorAddress?: string;
|
|
1896
|
+
entries?: {
|
|
1897
|
+
creationHeight?: number;
|
|
1898
|
+
completionTime?: Date;
|
|
1899
|
+
initialBalance?: string;
|
|
1900
|
+
balance?: string;
|
|
1901
|
+
unbondingId?: number;
|
|
1902
|
+
unbondingOnHoldRefCount?: number;
|
|
1903
|
+
}[];
|
|
1904
|
+
}[];
|
|
1905
|
+
pagination?: {
|
|
1906
|
+
nextKey?: Uint8Array;
|
|
1907
|
+
total?: number;
|
|
1908
|
+
};
|
|
1909
|
+
} & {
|
|
1910
|
+
unbondingResponses?: {
|
|
1911
|
+
delegatorAddress?: string;
|
|
1912
|
+
validatorAddress?: string;
|
|
1913
|
+
entries?: {
|
|
1914
|
+
creationHeight?: number;
|
|
1915
|
+
completionTime?: Date;
|
|
1916
|
+
initialBalance?: string;
|
|
1917
|
+
balance?: string;
|
|
1918
|
+
unbondingId?: number;
|
|
1919
|
+
unbondingOnHoldRefCount?: number;
|
|
1920
|
+
}[];
|
|
1921
|
+
}[] & ({
|
|
1922
|
+
delegatorAddress?: string;
|
|
1923
|
+
validatorAddress?: string;
|
|
1924
|
+
entries?: {
|
|
1925
|
+
creationHeight?: number;
|
|
1926
|
+
completionTime?: Date;
|
|
1927
|
+
initialBalance?: string;
|
|
1928
|
+
balance?: string;
|
|
1929
|
+
unbondingId?: number;
|
|
1930
|
+
unbondingOnHoldRefCount?: number;
|
|
1931
|
+
}[];
|
|
1932
|
+
} & {
|
|
1933
|
+
delegatorAddress?: string;
|
|
1934
|
+
validatorAddress?: string;
|
|
1935
|
+
entries?: {
|
|
1936
|
+
creationHeight?: number;
|
|
1937
|
+
completionTime?: Date;
|
|
1938
|
+
initialBalance?: string;
|
|
1939
|
+
balance?: string;
|
|
1940
|
+
unbondingId?: number;
|
|
1941
|
+
unbondingOnHoldRefCount?: number;
|
|
1942
|
+
}[] & ({
|
|
1943
|
+
creationHeight?: number;
|
|
1944
|
+
completionTime?: Date;
|
|
1945
|
+
initialBalance?: string;
|
|
1946
|
+
balance?: string;
|
|
1947
|
+
unbondingId?: number;
|
|
1948
|
+
unbondingOnHoldRefCount?: number;
|
|
1949
|
+
} & {
|
|
1950
|
+
creationHeight?: number;
|
|
1951
|
+
completionTime?: Date;
|
|
1952
|
+
initialBalance?: string;
|
|
1953
|
+
balance?: string;
|
|
1954
|
+
unbondingId?: number;
|
|
1955
|
+
unbondingOnHoldRefCount?: number;
|
|
1956
|
+
} & { [K in Exclude<keyof I["unbondingResponses"][number]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_1 in Exclude<keyof I["unbondingResponses"][number]["entries"], keyof {
|
|
1957
|
+
creationHeight?: number;
|
|
1958
|
+
completionTime?: Date;
|
|
1959
|
+
initialBalance?: string;
|
|
1960
|
+
balance?: string;
|
|
1961
|
+
unbondingId?: number;
|
|
1962
|
+
unbondingOnHoldRefCount?: number;
|
|
1963
|
+
}[]>]: never; };
|
|
1964
|
+
} & { [K_2 in Exclude<keyof I["unbondingResponses"][number], keyof UnbondingDelegation>]: never; })[] & { [K_3 in Exclude<keyof I["unbondingResponses"], keyof {
|
|
1965
|
+
delegatorAddress?: string;
|
|
1966
|
+
validatorAddress?: string;
|
|
1967
|
+
entries?: {
|
|
1968
|
+
creationHeight?: number;
|
|
1969
|
+
completionTime?: Date;
|
|
1970
|
+
initialBalance?: string;
|
|
1971
|
+
balance?: string;
|
|
1972
|
+
unbondingId?: number;
|
|
1973
|
+
unbondingOnHoldRefCount?: number;
|
|
1974
|
+
}[];
|
|
1975
|
+
}[]>]: never; };
|
|
1976
|
+
pagination?: {
|
|
1977
|
+
nextKey?: Uint8Array;
|
|
1978
|
+
total?: number;
|
|
1979
|
+
} & {
|
|
1980
|
+
nextKey?: Uint8Array;
|
|
1981
|
+
total?: number;
|
|
1982
|
+
} & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
1983
|
+
} & { [K_5 in Exclude<keyof I, keyof QueryDelegatorUnbondingDelegationsResponse>]: never; }>(base?: I): QueryDelegatorUnbondingDelegationsResponse;
|
|
1984
|
+
fromPartial<I_1 extends {
|
|
1985
|
+
unbondingResponses?: {
|
|
1986
|
+
delegatorAddress?: string;
|
|
1987
|
+
validatorAddress?: string;
|
|
1988
|
+
entries?: {
|
|
1989
|
+
creationHeight?: number;
|
|
1990
|
+
completionTime?: Date;
|
|
1991
|
+
initialBalance?: string;
|
|
1992
|
+
balance?: string;
|
|
1993
|
+
unbondingId?: number;
|
|
1994
|
+
unbondingOnHoldRefCount?: number;
|
|
1995
|
+
}[];
|
|
1996
|
+
}[];
|
|
1997
|
+
pagination?: {
|
|
1998
|
+
nextKey?: Uint8Array;
|
|
1999
|
+
total?: number;
|
|
2000
|
+
};
|
|
2001
|
+
} & {
|
|
2002
|
+
unbondingResponses?: {
|
|
2003
|
+
delegatorAddress?: string;
|
|
2004
|
+
validatorAddress?: string;
|
|
2005
|
+
entries?: {
|
|
2006
|
+
creationHeight?: number;
|
|
2007
|
+
completionTime?: Date;
|
|
2008
|
+
initialBalance?: string;
|
|
2009
|
+
balance?: string;
|
|
2010
|
+
unbondingId?: number;
|
|
2011
|
+
unbondingOnHoldRefCount?: number;
|
|
2012
|
+
}[];
|
|
2013
|
+
}[] & ({
|
|
2014
|
+
delegatorAddress?: string;
|
|
2015
|
+
validatorAddress?: string;
|
|
2016
|
+
entries?: {
|
|
2017
|
+
creationHeight?: number;
|
|
2018
|
+
completionTime?: Date;
|
|
2019
|
+
initialBalance?: string;
|
|
2020
|
+
balance?: string;
|
|
2021
|
+
unbondingId?: number;
|
|
2022
|
+
unbondingOnHoldRefCount?: number;
|
|
2023
|
+
}[];
|
|
2024
|
+
} & {
|
|
2025
|
+
delegatorAddress?: string;
|
|
2026
|
+
validatorAddress?: string;
|
|
2027
|
+
entries?: {
|
|
2028
|
+
creationHeight?: number;
|
|
2029
|
+
completionTime?: Date;
|
|
2030
|
+
initialBalance?: string;
|
|
2031
|
+
balance?: string;
|
|
2032
|
+
unbondingId?: number;
|
|
2033
|
+
unbondingOnHoldRefCount?: number;
|
|
2034
|
+
}[] & ({
|
|
2035
|
+
creationHeight?: number;
|
|
2036
|
+
completionTime?: Date;
|
|
2037
|
+
initialBalance?: string;
|
|
2038
|
+
balance?: string;
|
|
2039
|
+
unbondingId?: number;
|
|
2040
|
+
unbondingOnHoldRefCount?: number;
|
|
2041
|
+
} & {
|
|
2042
|
+
creationHeight?: number;
|
|
2043
|
+
completionTime?: Date;
|
|
2044
|
+
initialBalance?: string;
|
|
2045
|
+
balance?: string;
|
|
2046
|
+
unbondingId?: number;
|
|
2047
|
+
unbondingOnHoldRefCount?: number;
|
|
2048
|
+
} & { [K_6 in Exclude<keyof I_1["unbondingResponses"][number]["entries"][number], keyof import("./staking").UnbondingDelegationEntry>]: never; })[] & { [K_7 in Exclude<keyof I_1["unbondingResponses"][number]["entries"], keyof {
|
|
2049
|
+
creationHeight?: number;
|
|
2050
|
+
completionTime?: Date;
|
|
2051
|
+
initialBalance?: string;
|
|
2052
|
+
balance?: string;
|
|
2053
|
+
unbondingId?: number;
|
|
2054
|
+
unbondingOnHoldRefCount?: number;
|
|
2055
|
+
}[]>]: never; };
|
|
2056
|
+
} & { [K_8 in Exclude<keyof I_1["unbondingResponses"][number], keyof UnbondingDelegation>]: never; })[] & { [K_9 in Exclude<keyof I_1["unbondingResponses"], keyof {
|
|
2057
|
+
delegatorAddress?: string;
|
|
2058
|
+
validatorAddress?: string;
|
|
2059
|
+
entries?: {
|
|
2060
|
+
creationHeight?: number;
|
|
2061
|
+
completionTime?: Date;
|
|
2062
|
+
initialBalance?: string;
|
|
2063
|
+
balance?: string;
|
|
2064
|
+
unbondingId?: number;
|
|
2065
|
+
unbondingOnHoldRefCount?: number;
|
|
2066
|
+
}[];
|
|
2067
|
+
}[]>]: never; };
|
|
2068
|
+
pagination?: {
|
|
2069
|
+
nextKey?: Uint8Array;
|
|
2070
|
+
total?: number;
|
|
2071
|
+
} & {
|
|
2072
|
+
nextKey?: Uint8Array;
|
|
2073
|
+
total?: number;
|
|
2074
|
+
} & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
2075
|
+
} & { [K_11 in Exclude<keyof I_1, keyof QueryDelegatorUnbondingDelegationsResponse>]: never; }>(object: I_1): QueryDelegatorUnbondingDelegationsResponse;
|
|
2076
|
+
};
|
|
2077
|
+
export declare const QueryRedelegationsRequest: {
|
|
2078
|
+
encode(message: QueryRedelegationsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
2079
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsRequest;
|
|
2080
|
+
fromJSON(object: any): QueryRedelegationsRequest;
|
|
2081
|
+
toJSON(message: QueryRedelegationsRequest): unknown;
|
|
2082
|
+
create<I extends {
|
|
2083
|
+
delegatorAddr?: string;
|
|
2084
|
+
srcValidatorAddr?: string;
|
|
2085
|
+
dstValidatorAddr?: string;
|
|
2086
|
+
pagination?: {
|
|
2087
|
+
key?: Uint8Array;
|
|
2088
|
+
offset?: number;
|
|
2089
|
+
limit?: number;
|
|
2090
|
+
countTotal?: boolean;
|
|
2091
|
+
reverse?: boolean;
|
|
2092
|
+
};
|
|
2093
|
+
} & {
|
|
2094
|
+
delegatorAddr?: string;
|
|
2095
|
+
srcValidatorAddr?: string;
|
|
2096
|
+
dstValidatorAddr?: string;
|
|
2097
|
+
pagination?: {
|
|
2098
|
+
key?: Uint8Array;
|
|
2099
|
+
offset?: number;
|
|
2100
|
+
limit?: number;
|
|
2101
|
+
countTotal?: boolean;
|
|
2102
|
+
reverse?: boolean;
|
|
2103
|
+
} & {
|
|
2104
|
+
key?: Uint8Array;
|
|
2105
|
+
offset?: number;
|
|
2106
|
+
limit?: number;
|
|
2107
|
+
countTotal?: boolean;
|
|
2108
|
+
reverse?: boolean;
|
|
2109
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
2110
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryRedelegationsRequest>]: never; }>(base?: I): QueryRedelegationsRequest;
|
|
2111
|
+
fromPartial<I_1 extends {
|
|
2112
|
+
delegatorAddr?: string;
|
|
2113
|
+
srcValidatorAddr?: string;
|
|
2114
|
+
dstValidatorAddr?: string;
|
|
2115
|
+
pagination?: {
|
|
2116
|
+
key?: Uint8Array;
|
|
2117
|
+
offset?: number;
|
|
2118
|
+
limit?: number;
|
|
2119
|
+
countTotal?: boolean;
|
|
2120
|
+
reverse?: boolean;
|
|
2121
|
+
};
|
|
2122
|
+
} & {
|
|
2123
|
+
delegatorAddr?: string;
|
|
2124
|
+
srcValidatorAddr?: string;
|
|
2125
|
+
dstValidatorAddr?: string;
|
|
2126
|
+
pagination?: {
|
|
2127
|
+
key?: Uint8Array;
|
|
2128
|
+
offset?: number;
|
|
2129
|
+
limit?: number;
|
|
2130
|
+
countTotal?: boolean;
|
|
2131
|
+
reverse?: boolean;
|
|
2132
|
+
} & {
|
|
2133
|
+
key?: Uint8Array;
|
|
2134
|
+
offset?: number;
|
|
2135
|
+
limit?: number;
|
|
2136
|
+
countTotal?: boolean;
|
|
2137
|
+
reverse?: boolean;
|
|
2138
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
2139
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryRedelegationsRequest>]: never; }>(object: I_1): QueryRedelegationsRequest;
|
|
2140
|
+
};
|
|
2141
|
+
export declare const QueryRedelegationsResponse: {
|
|
2142
|
+
encode(message: QueryRedelegationsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
2143
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsResponse;
|
|
2144
|
+
fromJSON(object: any): QueryRedelegationsResponse;
|
|
2145
|
+
toJSON(message: QueryRedelegationsResponse): unknown;
|
|
2146
|
+
create<I extends {
|
|
2147
|
+
redelegationResponses?: {
|
|
2148
|
+
redelegation?: {
|
|
2149
|
+
delegatorAddress?: string;
|
|
2150
|
+
validatorSrcAddress?: string;
|
|
2151
|
+
validatorDstAddress?: string;
|
|
2152
|
+
entries?: {
|
|
2153
|
+
creationHeight?: number;
|
|
2154
|
+
completionTime?: Date;
|
|
2155
|
+
initialBalance?: string;
|
|
2156
|
+
sharesDst?: string;
|
|
2157
|
+
unbondingId?: number;
|
|
2158
|
+
unbondingOnHoldRefCount?: number;
|
|
2159
|
+
}[];
|
|
2160
|
+
};
|
|
2161
|
+
entries?: {
|
|
2162
|
+
redelegationEntry?: {
|
|
2163
|
+
creationHeight?: number;
|
|
2164
|
+
completionTime?: Date;
|
|
2165
|
+
initialBalance?: string;
|
|
2166
|
+
sharesDst?: string;
|
|
2167
|
+
unbondingId?: number;
|
|
2168
|
+
unbondingOnHoldRefCount?: number;
|
|
2169
|
+
};
|
|
2170
|
+
balance?: string;
|
|
2171
|
+
}[];
|
|
2172
|
+
}[];
|
|
2173
|
+
pagination?: {
|
|
2174
|
+
nextKey?: Uint8Array;
|
|
2175
|
+
total?: number;
|
|
2176
|
+
};
|
|
2177
|
+
} & {
|
|
2178
|
+
redelegationResponses?: {
|
|
2179
|
+
redelegation?: {
|
|
2180
|
+
delegatorAddress?: string;
|
|
2181
|
+
validatorSrcAddress?: string;
|
|
2182
|
+
validatorDstAddress?: string;
|
|
2183
|
+
entries?: {
|
|
2184
|
+
creationHeight?: number;
|
|
2185
|
+
completionTime?: Date;
|
|
2186
|
+
initialBalance?: string;
|
|
2187
|
+
sharesDst?: string;
|
|
2188
|
+
unbondingId?: number;
|
|
2189
|
+
unbondingOnHoldRefCount?: number;
|
|
2190
|
+
}[];
|
|
2191
|
+
};
|
|
2192
|
+
entries?: {
|
|
2193
|
+
redelegationEntry?: {
|
|
2194
|
+
creationHeight?: number;
|
|
2195
|
+
completionTime?: Date;
|
|
2196
|
+
initialBalance?: string;
|
|
2197
|
+
sharesDst?: string;
|
|
2198
|
+
unbondingId?: number;
|
|
2199
|
+
unbondingOnHoldRefCount?: number;
|
|
2200
|
+
};
|
|
2201
|
+
balance?: string;
|
|
2202
|
+
}[];
|
|
2203
|
+
}[] & ({
|
|
2204
|
+
redelegation?: {
|
|
2205
|
+
delegatorAddress?: string;
|
|
2206
|
+
validatorSrcAddress?: string;
|
|
2207
|
+
validatorDstAddress?: string;
|
|
2208
|
+
entries?: {
|
|
2209
|
+
creationHeight?: number;
|
|
2210
|
+
completionTime?: Date;
|
|
2211
|
+
initialBalance?: string;
|
|
2212
|
+
sharesDst?: string;
|
|
2213
|
+
unbondingId?: number;
|
|
2214
|
+
unbondingOnHoldRefCount?: number;
|
|
2215
|
+
}[];
|
|
2216
|
+
};
|
|
2217
|
+
entries?: {
|
|
2218
|
+
redelegationEntry?: {
|
|
2219
|
+
creationHeight?: number;
|
|
2220
|
+
completionTime?: Date;
|
|
2221
|
+
initialBalance?: string;
|
|
2222
|
+
sharesDst?: string;
|
|
2223
|
+
unbondingId?: number;
|
|
2224
|
+
unbondingOnHoldRefCount?: number;
|
|
2225
|
+
};
|
|
2226
|
+
balance?: string;
|
|
2227
|
+
}[];
|
|
2228
|
+
} & {
|
|
2229
|
+
redelegation?: {
|
|
2230
|
+
delegatorAddress?: string;
|
|
2231
|
+
validatorSrcAddress?: string;
|
|
2232
|
+
validatorDstAddress?: string;
|
|
2233
|
+
entries?: {
|
|
2234
|
+
creationHeight?: number;
|
|
2235
|
+
completionTime?: Date;
|
|
2236
|
+
initialBalance?: string;
|
|
2237
|
+
sharesDst?: string;
|
|
2238
|
+
unbondingId?: number;
|
|
2239
|
+
unbondingOnHoldRefCount?: number;
|
|
2240
|
+
}[];
|
|
2241
|
+
} & {
|
|
2242
|
+
delegatorAddress?: string;
|
|
2243
|
+
validatorSrcAddress?: string;
|
|
2244
|
+
validatorDstAddress?: string;
|
|
2245
|
+
entries?: {
|
|
2246
|
+
creationHeight?: number;
|
|
2247
|
+
completionTime?: Date;
|
|
2248
|
+
initialBalance?: string;
|
|
2249
|
+
sharesDst?: string;
|
|
2250
|
+
unbondingId?: number;
|
|
2251
|
+
unbondingOnHoldRefCount?: number;
|
|
2252
|
+
}[] & ({
|
|
2253
|
+
creationHeight?: number;
|
|
2254
|
+
completionTime?: Date;
|
|
2255
|
+
initialBalance?: string;
|
|
2256
|
+
sharesDst?: string;
|
|
2257
|
+
unbondingId?: number;
|
|
2258
|
+
unbondingOnHoldRefCount?: number;
|
|
2259
|
+
} & {
|
|
2260
|
+
creationHeight?: number;
|
|
2261
|
+
completionTime?: Date;
|
|
2262
|
+
initialBalance?: string;
|
|
2263
|
+
sharesDst?: string;
|
|
2264
|
+
unbondingId?: number;
|
|
2265
|
+
unbondingOnHoldRefCount?: number;
|
|
2266
|
+
} & { [K in Exclude<keyof I["redelegationResponses"][number]["redelegation"]["entries"][number], keyof import("./staking").RedelegationEntry>]: never; })[] & { [K_1 in Exclude<keyof I["redelegationResponses"][number]["redelegation"]["entries"], keyof {
|
|
2267
|
+
creationHeight?: number;
|
|
2268
|
+
completionTime?: Date;
|
|
2269
|
+
initialBalance?: string;
|
|
2270
|
+
sharesDst?: string;
|
|
2271
|
+
unbondingId?: number;
|
|
2272
|
+
unbondingOnHoldRefCount?: number;
|
|
2273
|
+
}[]>]: never; };
|
|
2274
|
+
} & { [K_2 in Exclude<keyof I["redelegationResponses"][number]["redelegation"], keyof import("./staking").Redelegation>]: never; };
|
|
2275
|
+
entries?: {
|
|
2276
|
+
redelegationEntry?: {
|
|
2277
|
+
creationHeight?: number;
|
|
2278
|
+
completionTime?: Date;
|
|
2279
|
+
initialBalance?: string;
|
|
2280
|
+
sharesDst?: string;
|
|
2281
|
+
unbondingId?: number;
|
|
2282
|
+
unbondingOnHoldRefCount?: number;
|
|
2283
|
+
};
|
|
2284
|
+
balance?: string;
|
|
2285
|
+
}[] & ({
|
|
2286
|
+
redelegationEntry?: {
|
|
2287
|
+
creationHeight?: number;
|
|
2288
|
+
completionTime?: Date;
|
|
2289
|
+
initialBalance?: string;
|
|
2290
|
+
sharesDst?: string;
|
|
2291
|
+
unbondingId?: number;
|
|
2292
|
+
unbondingOnHoldRefCount?: number;
|
|
2293
|
+
};
|
|
2294
|
+
balance?: string;
|
|
2295
|
+
} & {
|
|
2296
|
+
redelegationEntry?: {
|
|
2297
|
+
creationHeight?: number;
|
|
2298
|
+
completionTime?: Date;
|
|
2299
|
+
initialBalance?: string;
|
|
2300
|
+
sharesDst?: string;
|
|
2301
|
+
unbondingId?: number;
|
|
2302
|
+
unbondingOnHoldRefCount?: number;
|
|
2303
|
+
} & {
|
|
2304
|
+
creationHeight?: number;
|
|
2305
|
+
completionTime?: Date;
|
|
2306
|
+
initialBalance?: string;
|
|
2307
|
+
sharesDst?: string;
|
|
2308
|
+
unbondingId?: number;
|
|
2309
|
+
unbondingOnHoldRefCount?: number;
|
|
2310
|
+
} & { [K_3 in Exclude<keyof I["redelegationResponses"][number]["entries"][number]["redelegationEntry"], keyof import("./staking").RedelegationEntry>]: never; };
|
|
2311
|
+
balance?: string;
|
|
2312
|
+
} & { [K_4 in Exclude<keyof I["redelegationResponses"][number]["entries"][number], keyof import("./staking").RedelegationEntryResponse>]: never; })[] & { [K_5 in Exclude<keyof I["redelegationResponses"][number]["entries"], keyof {
|
|
2313
|
+
redelegationEntry?: {
|
|
2314
|
+
creationHeight?: number;
|
|
2315
|
+
completionTime?: Date;
|
|
2316
|
+
initialBalance?: string;
|
|
2317
|
+
sharesDst?: string;
|
|
2318
|
+
unbondingId?: number;
|
|
2319
|
+
unbondingOnHoldRefCount?: number;
|
|
2320
|
+
};
|
|
2321
|
+
balance?: string;
|
|
2322
|
+
}[]>]: never; };
|
|
2323
|
+
} & { [K_6 in Exclude<keyof I["redelegationResponses"][number], keyof RedelegationResponse>]: never; })[] & { [K_7 in Exclude<keyof I["redelegationResponses"], keyof {
|
|
2324
|
+
redelegation?: {
|
|
2325
|
+
delegatorAddress?: string;
|
|
2326
|
+
validatorSrcAddress?: string;
|
|
2327
|
+
validatorDstAddress?: string;
|
|
2328
|
+
entries?: {
|
|
2329
|
+
creationHeight?: number;
|
|
2330
|
+
completionTime?: Date;
|
|
2331
|
+
initialBalance?: string;
|
|
2332
|
+
sharesDst?: string;
|
|
2333
|
+
unbondingId?: number;
|
|
2334
|
+
unbondingOnHoldRefCount?: number;
|
|
2335
|
+
}[];
|
|
2336
|
+
};
|
|
2337
|
+
entries?: {
|
|
2338
|
+
redelegationEntry?: {
|
|
2339
|
+
creationHeight?: number;
|
|
2340
|
+
completionTime?: Date;
|
|
2341
|
+
initialBalance?: string;
|
|
2342
|
+
sharesDst?: string;
|
|
2343
|
+
unbondingId?: number;
|
|
2344
|
+
unbondingOnHoldRefCount?: number;
|
|
2345
|
+
};
|
|
2346
|
+
balance?: string;
|
|
2347
|
+
}[];
|
|
2348
|
+
}[]>]: never; };
|
|
2349
|
+
pagination?: {
|
|
2350
|
+
nextKey?: Uint8Array;
|
|
2351
|
+
total?: number;
|
|
2352
|
+
} & {
|
|
2353
|
+
nextKey?: Uint8Array;
|
|
2354
|
+
total?: number;
|
|
2355
|
+
} & { [K_8 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
2356
|
+
} & { [K_9 in Exclude<keyof I, keyof QueryRedelegationsResponse>]: never; }>(base?: I): QueryRedelegationsResponse;
|
|
2357
|
+
fromPartial<I_1 extends {
|
|
2358
|
+
redelegationResponses?: {
|
|
2359
|
+
redelegation?: {
|
|
2360
|
+
delegatorAddress?: string;
|
|
2361
|
+
validatorSrcAddress?: string;
|
|
2362
|
+
validatorDstAddress?: string;
|
|
2363
|
+
entries?: {
|
|
2364
|
+
creationHeight?: number;
|
|
2365
|
+
completionTime?: Date;
|
|
2366
|
+
initialBalance?: string;
|
|
2367
|
+
sharesDst?: string;
|
|
2368
|
+
unbondingId?: number;
|
|
2369
|
+
unbondingOnHoldRefCount?: number;
|
|
2370
|
+
}[];
|
|
2371
|
+
};
|
|
2372
|
+
entries?: {
|
|
2373
|
+
redelegationEntry?: {
|
|
2374
|
+
creationHeight?: number;
|
|
2375
|
+
completionTime?: Date;
|
|
2376
|
+
initialBalance?: string;
|
|
2377
|
+
sharesDst?: string;
|
|
2378
|
+
unbondingId?: number;
|
|
2379
|
+
unbondingOnHoldRefCount?: number;
|
|
2380
|
+
};
|
|
2381
|
+
balance?: string;
|
|
2382
|
+
}[];
|
|
2383
|
+
}[];
|
|
2384
|
+
pagination?: {
|
|
2385
|
+
nextKey?: Uint8Array;
|
|
2386
|
+
total?: number;
|
|
2387
|
+
};
|
|
2388
|
+
} & {
|
|
2389
|
+
redelegationResponses?: {
|
|
2390
|
+
redelegation?: {
|
|
2391
|
+
delegatorAddress?: string;
|
|
2392
|
+
validatorSrcAddress?: string;
|
|
2393
|
+
validatorDstAddress?: string;
|
|
2394
|
+
entries?: {
|
|
2395
|
+
creationHeight?: number;
|
|
2396
|
+
completionTime?: Date;
|
|
2397
|
+
initialBalance?: string;
|
|
2398
|
+
sharesDst?: string;
|
|
2399
|
+
unbondingId?: number;
|
|
2400
|
+
unbondingOnHoldRefCount?: number;
|
|
2401
|
+
}[];
|
|
2402
|
+
};
|
|
2403
|
+
entries?: {
|
|
2404
|
+
redelegationEntry?: {
|
|
2405
|
+
creationHeight?: number;
|
|
2406
|
+
completionTime?: Date;
|
|
2407
|
+
initialBalance?: string;
|
|
2408
|
+
sharesDst?: string;
|
|
2409
|
+
unbondingId?: number;
|
|
2410
|
+
unbondingOnHoldRefCount?: number;
|
|
2411
|
+
};
|
|
2412
|
+
balance?: string;
|
|
2413
|
+
}[];
|
|
2414
|
+
}[] & ({
|
|
2415
|
+
redelegation?: {
|
|
2416
|
+
delegatorAddress?: string;
|
|
2417
|
+
validatorSrcAddress?: string;
|
|
2418
|
+
validatorDstAddress?: string;
|
|
2419
|
+
entries?: {
|
|
2420
|
+
creationHeight?: number;
|
|
2421
|
+
completionTime?: Date;
|
|
2422
|
+
initialBalance?: string;
|
|
2423
|
+
sharesDst?: string;
|
|
2424
|
+
unbondingId?: number;
|
|
2425
|
+
unbondingOnHoldRefCount?: number;
|
|
2426
|
+
}[];
|
|
2427
|
+
};
|
|
2428
|
+
entries?: {
|
|
2429
|
+
redelegationEntry?: {
|
|
2430
|
+
creationHeight?: number;
|
|
2431
|
+
completionTime?: Date;
|
|
2432
|
+
initialBalance?: string;
|
|
2433
|
+
sharesDst?: string;
|
|
2434
|
+
unbondingId?: number;
|
|
2435
|
+
unbondingOnHoldRefCount?: number;
|
|
2436
|
+
};
|
|
2437
|
+
balance?: string;
|
|
2438
|
+
}[];
|
|
2439
|
+
} & {
|
|
2440
|
+
redelegation?: {
|
|
2441
|
+
delegatorAddress?: string;
|
|
2442
|
+
validatorSrcAddress?: string;
|
|
2443
|
+
validatorDstAddress?: string;
|
|
2444
|
+
entries?: {
|
|
2445
|
+
creationHeight?: number;
|
|
2446
|
+
completionTime?: Date;
|
|
2447
|
+
initialBalance?: string;
|
|
2448
|
+
sharesDst?: string;
|
|
2449
|
+
unbondingId?: number;
|
|
2450
|
+
unbondingOnHoldRefCount?: number;
|
|
2451
|
+
}[];
|
|
2452
|
+
} & {
|
|
2453
|
+
delegatorAddress?: string;
|
|
2454
|
+
validatorSrcAddress?: string;
|
|
2455
|
+
validatorDstAddress?: string;
|
|
2456
|
+
entries?: {
|
|
2457
|
+
creationHeight?: number;
|
|
2458
|
+
completionTime?: Date;
|
|
2459
|
+
initialBalance?: string;
|
|
2460
|
+
sharesDst?: string;
|
|
2461
|
+
unbondingId?: number;
|
|
2462
|
+
unbondingOnHoldRefCount?: number;
|
|
2463
|
+
}[] & ({
|
|
2464
|
+
creationHeight?: number;
|
|
2465
|
+
completionTime?: Date;
|
|
2466
|
+
initialBalance?: string;
|
|
2467
|
+
sharesDst?: string;
|
|
2468
|
+
unbondingId?: number;
|
|
2469
|
+
unbondingOnHoldRefCount?: number;
|
|
2470
|
+
} & {
|
|
2471
|
+
creationHeight?: number;
|
|
2472
|
+
completionTime?: Date;
|
|
2473
|
+
initialBalance?: string;
|
|
2474
|
+
sharesDst?: string;
|
|
2475
|
+
unbondingId?: number;
|
|
2476
|
+
unbondingOnHoldRefCount?: number;
|
|
2477
|
+
} & { [K_10 in Exclude<keyof I_1["redelegationResponses"][number]["redelegation"]["entries"][number], keyof import("./staking").RedelegationEntry>]: never; })[] & { [K_11 in Exclude<keyof I_1["redelegationResponses"][number]["redelegation"]["entries"], keyof {
|
|
2478
|
+
creationHeight?: number;
|
|
2479
|
+
completionTime?: Date;
|
|
2480
|
+
initialBalance?: string;
|
|
2481
|
+
sharesDst?: string;
|
|
2482
|
+
unbondingId?: number;
|
|
2483
|
+
unbondingOnHoldRefCount?: number;
|
|
2484
|
+
}[]>]: never; };
|
|
2485
|
+
} & { [K_12 in Exclude<keyof I_1["redelegationResponses"][number]["redelegation"], keyof import("./staking").Redelegation>]: never; };
|
|
2486
|
+
entries?: {
|
|
2487
|
+
redelegationEntry?: {
|
|
2488
|
+
creationHeight?: number;
|
|
2489
|
+
completionTime?: Date;
|
|
2490
|
+
initialBalance?: string;
|
|
2491
|
+
sharesDst?: string;
|
|
2492
|
+
unbondingId?: number;
|
|
2493
|
+
unbondingOnHoldRefCount?: number;
|
|
2494
|
+
};
|
|
2495
|
+
balance?: string;
|
|
2496
|
+
}[] & ({
|
|
2497
|
+
redelegationEntry?: {
|
|
2498
|
+
creationHeight?: number;
|
|
2499
|
+
completionTime?: Date;
|
|
2500
|
+
initialBalance?: string;
|
|
2501
|
+
sharesDst?: string;
|
|
2502
|
+
unbondingId?: number;
|
|
2503
|
+
unbondingOnHoldRefCount?: number;
|
|
2504
|
+
};
|
|
2505
|
+
balance?: string;
|
|
2506
|
+
} & {
|
|
2507
|
+
redelegationEntry?: {
|
|
2508
|
+
creationHeight?: number;
|
|
2509
|
+
completionTime?: Date;
|
|
2510
|
+
initialBalance?: string;
|
|
2511
|
+
sharesDst?: string;
|
|
2512
|
+
unbondingId?: number;
|
|
2513
|
+
unbondingOnHoldRefCount?: number;
|
|
2514
|
+
} & {
|
|
2515
|
+
creationHeight?: number;
|
|
2516
|
+
completionTime?: Date;
|
|
2517
|
+
initialBalance?: string;
|
|
2518
|
+
sharesDst?: string;
|
|
2519
|
+
unbondingId?: number;
|
|
2520
|
+
unbondingOnHoldRefCount?: number;
|
|
2521
|
+
} & { [K_13 in Exclude<keyof I_1["redelegationResponses"][number]["entries"][number]["redelegationEntry"], keyof import("./staking").RedelegationEntry>]: never; };
|
|
2522
|
+
balance?: string;
|
|
2523
|
+
} & { [K_14 in Exclude<keyof I_1["redelegationResponses"][number]["entries"][number], keyof import("./staking").RedelegationEntryResponse>]: never; })[] & { [K_15 in Exclude<keyof I_1["redelegationResponses"][number]["entries"], keyof {
|
|
2524
|
+
redelegationEntry?: {
|
|
2525
|
+
creationHeight?: number;
|
|
2526
|
+
completionTime?: Date;
|
|
2527
|
+
initialBalance?: string;
|
|
2528
|
+
sharesDst?: string;
|
|
2529
|
+
unbondingId?: number;
|
|
2530
|
+
unbondingOnHoldRefCount?: number;
|
|
2531
|
+
};
|
|
2532
|
+
balance?: string;
|
|
2533
|
+
}[]>]: never; };
|
|
2534
|
+
} & { [K_16 in Exclude<keyof I_1["redelegationResponses"][number], keyof RedelegationResponse>]: never; })[] & { [K_17 in Exclude<keyof I_1["redelegationResponses"], keyof {
|
|
2535
|
+
redelegation?: {
|
|
2536
|
+
delegatorAddress?: string;
|
|
2537
|
+
validatorSrcAddress?: string;
|
|
2538
|
+
validatorDstAddress?: string;
|
|
2539
|
+
entries?: {
|
|
2540
|
+
creationHeight?: number;
|
|
2541
|
+
completionTime?: Date;
|
|
2542
|
+
initialBalance?: string;
|
|
2543
|
+
sharesDst?: string;
|
|
2544
|
+
unbondingId?: number;
|
|
2545
|
+
unbondingOnHoldRefCount?: number;
|
|
2546
|
+
}[];
|
|
2547
|
+
};
|
|
2548
|
+
entries?: {
|
|
2549
|
+
redelegationEntry?: {
|
|
2550
|
+
creationHeight?: number;
|
|
2551
|
+
completionTime?: Date;
|
|
2552
|
+
initialBalance?: string;
|
|
2553
|
+
sharesDst?: string;
|
|
2554
|
+
unbondingId?: number;
|
|
2555
|
+
unbondingOnHoldRefCount?: number;
|
|
2556
|
+
};
|
|
2557
|
+
balance?: string;
|
|
2558
|
+
}[];
|
|
2559
|
+
}[]>]: never; };
|
|
2560
|
+
pagination?: {
|
|
2561
|
+
nextKey?: Uint8Array;
|
|
2562
|
+
total?: number;
|
|
2563
|
+
} & {
|
|
2564
|
+
nextKey?: Uint8Array;
|
|
2565
|
+
total?: number;
|
|
2566
|
+
} & { [K_18 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
2567
|
+
} & { [K_19 in Exclude<keyof I_1, keyof QueryRedelegationsResponse>]: never; }>(object: I_1): QueryRedelegationsResponse;
|
|
2568
|
+
};
|
|
2569
|
+
export declare const QueryDelegatorValidatorsRequest: {
|
|
2570
|
+
encode(message: QueryDelegatorValidatorsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
2571
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest;
|
|
2572
|
+
fromJSON(object: any): QueryDelegatorValidatorsRequest;
|
|
2573
|
+
toJSON(message: QueryDelegatorValidatorsRequest): unknown;
|
|
2574
|
+
create<I extends {
|
|
2575
|
+
delegatorAddr?: string;
|
|
2576
|
+
pagination?: {
|
|
2577
|
+
key?: Uint8Array;
|
|
2578
|
+
offset?: number;
|
|
2579
|
+
limit?: number;
|
|
2580
|
+
countTotal?: boolean;
|
|
2581
|
+
reverse?: boolean;
|
|
2582
|
+
};
|
|
2583
|
+
} & {
|
|
2584
|
+
delegatorAddr?: string;
|
|
2585
|
+
pagination?: {
|
|
2586
|
+
key?: Uint8Array;
|
|
2587
|
+
offset?: number;
|
|
2588
|
+
limit?: number;
|
|
2589
|
+
countTotal?: boolean;
|
|
2590
|
+
reverse?: boolean;
|
|
2591
|
+
} & {
|
|
2592
|
+
key?: Uint8Array;
|
|
2593
|
+
offset?: number;
|
|
2594
|
+
limit?: number;
|
|
2595
|
+
countTotal?: boolean;
|
|
2596
|
+
reverse?: boolean;
|
|
2597
|
+
} & { [K in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
|
|
2598
|
+
} & { [K_1 in Exclude<keyof I, keyof QueryDelegatorValidatorsRequest>]: never; }>(base?: I): QueryDelegatorValidatorsRequest;
|
|
2599
|
+
fromPartial<I_1 extends {
|
|
2600
|
+
delegatorAddr?: string;
|
|
2601
|
+
pagination?: {
|
|
2602
|
+
key?: Uint8Array;
|
|
2603
|
+
offset?: number;
|
|
2604
|
+
limit?: number;
|
|
2605
|
+
countTotal?: boolean;
|
|
2606
|
+
reverse?: boolean;
|
|
2607
|
+
};
|
|
2608
|
+
} & {
|
|
2609
|
+
delegatorAddr?: string;
|
|
2610
|
+
pagination?: {
|
|
2611
|
+
key?: Uint8Array;
|
|
2612
|
+
offset?: number;
|
|
2613
|
+
limit?: number;
|
|
2614
|
+
countTotal?: boolean;
|
|
2615
|
+
reverse?: boolean;
|
|
2616
|
+
} & {
|
|
2617
|
+
key?: Uint8Array;
|
|
2618
|
+
offset?: number;
|
|
2619
|
+
limit?: number;
|
|
2620
|
+
countTotal?: boolean;
|
|
2621
|
+
reverse?: boolean;
|
|
2622
|
+
} & { [K_2 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
|
|
2623
|
+
} & { [K_3 in Exclude<keyof I_1, keyof QueryDelegatorValidatorsRequest>]: never; }>(object: I_1): QueryDelegatorValidatorsRequest;
|
|
2624
|
+
};
|
|
2625
|
+
export declare const QueryDelegatorValidatorsResponse: {
|
|
2626
|
+
encode(message: QueryDelegatorValidatorsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
2627
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse;
|
|
2628
|
+
fromJSON(object: any): QueryDelegatorValidatorsResponse;
|
|
2629
|
+
toJSON(message: QueryDelegatorValidatorsResponse): unknown;
|
|
2630
|
+
create<I extends {
|
|
2631
|
+
validators?: {
|
|
2632
|
+
operatorAddress?: string;
|
|
2633
|
+
consensusPubkey?: {
|
|
2634
|
+
typeUrl?: string;
|
|
2635
|
+
value?: Uint8Array;
|
|
2636
|
+
};
|
|
2637
|
+
jailed?: boolean;
|
|
2638
|
+
status?: import("./staking").BondStatus;
|
|
2639
|
+
tokens?: string;
|
|
2640
|
+
delegatorShares?: string;
|
|
2641
|
+
description?: {
|
|
2642
|
+
moniker?: string;
|
|
2643
|
+
identity?: string;
|
|
2644
|
+
website?: string;
|
|
2645
|
+
securityContact?: string;
|
|
2646
|
+
details?: string;
|
|
2647
|
+
};
|
|
2648
|
+
unbondingHeight?: number;
|
|
2649
|
+
unbondingTime?: Date;
|
|
2650
|
+
commission?: {
|
|
2651
|
+
commissionRates?: {
|
|
2652
|
+
rate?: string;
|
|
2653
|
+
maxRate?: string;
|
|
2654
|
+
maxChangeRate?: string;
|
|
2655
|
+
};
|
|
2656
|
+
updateTime?: Date;
|
|
2657
|
+
};
|
|
2658
|
+
minSelfDelegation?: string;
|
|
2659
|
+
unbondingOnHoldRefCount?: number;
|
|
2660
|
+
unbondingIds?: number[];
|
|
2661
|
+
}[];
|
|
2662
|
+
pagination?: {
|
|
2663
|
+
nextKey?: Uint8Array;
|
|
2664
|
+
total?: number;
|
|
2665
|
+
};
|
|
2666
|
+
} & {
|
|
2667
|
+
validators?: {
|
|
2668
|
+
operatorAddress?: string;
|
|
2669
|
+
consensusPubkey?: {
|
|
2670
|
+
typeUrl?: string;
|
|
2671
|
+
value?: Uint8Array;
|
|
2672
|
+
};
|
|
2673
|
+
jailed?: boolean;
|
|
2674
|
+
status?: import("./staking").BondStatus;
|
|
2675
|
+
tokens?: string;
|
|
2676
|
+
delegatorShares?: string;
|
|
2677
|
+
description?: {
|
|
2678
|
+
moniker?: string;
|
|
2679
|
+
identity?: string;
|
|
2680
|
+
website?: string;
|
|
2681
|
+
securityContact?: string;
|
|
2682
|
+
details?: string;
|
|
2683
|
+
};
|
|
2684
|
+
unbondingHeight?: number;
|
|
2685
|
+
unbondingTime?: Date;
|
|
2686
|
+
commission?: {
|
|
2687
|
+
commissionRates?: {
|
|
2688
|
+
rate?: string;
|
|
2689
|
+
maxRate?: string;
|
|
2690
|
+
maxChangeRate?: string;
|
|
2691
|
+
};
|
|
2692
|
+
updateTime?: Date;
|
|
2693
|
+
};
|
|
2694
|
+
minSelfDelegation?: string;
|
|
2695
|
+
unbondingOnHoldRefCount?: number;
|
|
2696
|
+
unbondingIds?: number[];
|
|
2697
|
+
}[] & ({
|
|
2698
|
+
operatorAddress?: string;
|
|
2699
|
+
consensusPubkey?: {
|
|
2700
|
+
typeUrl?: string;
|
|
2701
|
+
value?: Uint8Array;
|
|
2702
|
+
};
|
|
2703
|
+
jailed?: boolean;
|
|
2704
|
+
status?: import("./staking").BondStatus;
|
|
2705
|
+
tokens?: string;
|
|
2706
|
+
delegatorShares?: string;
|
|
2707
|
+
description?: {
|
|
2708
|
+
moniker?: string;
|
|
2709
|
+
identity?: string;
|
|
2710
|
+
website?: string;
|
|
2711
|
+
securityContact?: string;
|
|
2712
|
+
details?: string;
|
|
2713
|
+
};
|
|
2714
|
+
unbondingHeight?: number;
|
|
2715
|
+
unbondingTime?: Date;
|
|
2716
|
+
commission?: {
|
|
2717
|
+
commissionRates?: {
|
|
2718
|
+
rate?: string;
|
|
2719
|
+
maxRate?: string;
|
|
2720
|
+
maxChangeRate?: string;
|
|
2721
|
+
};
|
|
2722
|
+
updateTime?: Date;
|
|
2723
|
+
};
|
|
2724
|
+
minSelfDelegation?: string;
|
|
2725
|
+
unbondingOnHoldRefCount?: number;
|
|
2726
|
+
unbondingIds?: number[];
|
|
2727
|
+
} & {
|
|
2728
|
+
operatorAddress?: string;
|
|
2729
|
+
consensusPubkey?: {
|
|
2730
|
+
typeUrl?: string;
|
|
2731
|
+
value?: Uint8Array;
|
|
2732
|
+
} & {
|
|
2733
|
+
typeUrl?: string;
|
|
2734
|
+
value?: Uint8Array;
|
|
2735
|
+
} & { [K in Exclude<keyof I["validators"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
2736
|
+
jailed?: boolean;
|
|
2737
|
+
status?: import("./staking").BondStatus;
|
|
2738
|
+
tokens?: string;
|
|
2739
|
+
delegatorShares?: string;
|
|
2740
|
+
description?: {
|
|
2741
|
+
moniker?: string;
|
|
2742
|
+
identity?: string;
|
|
2743
|
+
website?: string;
|
|
2744
|
+
securityContact?: string;
|
|
2745
|
+
details?: string;
|
|
2746
|
+
} & {
|
|
2747
|
+
moniker?: string;
|
|
2748
|
+
identity?: string;
|
|
2749
|
+
website?: string;
|
|
2750
|
+
securityContact?: string;
|
|
2751
|
+
details?: string;
|
|
2752
|
+
} & { [K_1 in Exclude<keyof I["validators"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
2753
|
+
unbondingHeight?: number;
|
|
2754
|
+
unbondingTime?: Date;
|
|
2755
|
+
commission?: {
|
|
2756
|
+
commissionRates?: {
|
|
2757
|
+
rate?: string;
|
|
2758
|
+
maxRate?: string;
|
|
2759
|
+
maxChangeRate?: string;
|
|
2760
|
+
};
|
|
2761
|
+
updateTime?: Date;
|
|
2762
|
+
} & {
|
|
2763
|
+
commissionRates?: {
|
|
2764
|
+
rate?: string;
|
|
2765
|
+
maxRate?: string;
|
|
2766
|
+
maxChangeRate?: string;
|
|
2767
|
+
} & {
|
|
2768
|
+
rate?: string;
|
|
2769
|
+
maxRate?: string;
|
|
2770
|
+
maxChangeRate?: string;
|
|
2771
|
+
} & { [K_2 in Exclude<keyof I["validators"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
2772
|
+
updateTime?: Date;
|
|
2773
|
+
} & { [K_3 in Exclude<keyof I["validators"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
2774
|
+
minSelfDelegation?: string;
|
|
2775
|
+
unbondingOnHoldRefCount?: number;
|
|
2776
|
+
unbondingIds?: number[] & number[] & { [K_4 in Exclude<keyof I["validators"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
2777
|
+
} & { [K_5 in Exclude<keyof I["validators"][number], keyof Validator>]: never; })[] & { [K_6 in Exclude<keyof I["validators"], keyof {
|
|
2778
|
+
operatorAddress?: string;
|
|
2779
|
+
consensusPubkey?: {
|
|
2780
|
+
typeUrl?: string;
|
|
2781
|
+
value?: Uint8Array;
|
|
2782
|
+
};
|
|
2783
|
+
jailed?: boolean;
|
|
2784
|
+
status?: import("./staking").BondStatus;
|
|
2785
|
+
tokens?: string;
|
|
2786
|
+
delegatorShares?: string;
|
|
2787
|
+
description?: {
|
|
2788
|
+
moniker?: string;
|
|
2789
|
+
identity?: string;
|
|
2790
|
+
website?: string;
|
|
2791
|
+
securityContact?: string;
|
|
2792
|
+
details?: string;
|
|
2793
|
+
};
|
|
2794
|
+
unbondingHeight?: number;
|
|
2795
|
+
unbondingTime?: Date;
|
|
2796
|
+
commission?: {
|
|
2797
|
+
commissionRates?: {
|
|
2798
|
+
rate?: string;
|
|
2799
|
+
maxRate?: string;
|
|
2800
|
+
maxChangeRate?: string;
|
|
2801
|
+
};
|
|
2802
|
+
updateTime?: Date;
|
|
2803
|
+
};
|
|
2804
|
+
minSelfDelegation?: string;
|
|
2805
|
+
unbondingOnHoldRefCount?: number;
|
|
2806
|
+
unbondingIds?: number[];
|
|
2807
|
+
}[]>]: never; };
|
|
2808
|
+
pagination?: {
|
|
2809
|
+
nextKey?: Uint8Array;
|
|
2810
|
+
total?: number;
|
|
2811
|
+
} & {
|
|
2812
|
+
nextKey?: Uint8Array;
|
|
2813
|
+
total?: number;
|
|
2814
|
+
} & { [K_7 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
|
|
2815
|
+
} & { [K_8 in Exclude<keyof I, keyof QueryDelegatorValidatorsResponse>]: never; }>(base?: I): QueryDelegatorValidatorsResponse;
|
|
2816
|
+
fromPartial<I_1 extends {
|
|
2817
|
+
validators?: {
|
|
2818
|
+
operatorAddress?: string;
|
|
2819
|
+
consensusPubkey?: {
|
|
2820
|
+
typeUrl?: string;
|
|
2821
|
+
value?: Uint8Array;
|
|
2822
|
+
};
|
|
2823
|
+
jailed?: boolean;
|
|
2824
|
+
status?: import("./staking").BondStatus;
|
|
2825
|
+
tokens?: string;
|
|
2826
|
+
delegatorShares?: string;
|
|
2827
|
+
description?: {
|
|
2828
|
+
moniker?: string;
|
|
2829
|
+
identity?: string;
|
|
2830
|
+
website?: string;
|
|
2831
|
+
securityContact?: string;
|
|
2832
|
+
details?: string;
|
|
2833
|
+
};
|
|
2834
|
+
unbondingHeight?: number;
|
|
2835
|
+
unbondingTime?: Date;
|
|
2836
|
+
commission?: {
|
|
2837
|
+
commissionRates?: {
|
|
2838
|
+
rate?: string;
|
|
2839
|
+
maxRate?: string;
|
|
2840
|
+
maxChangeRate?: string;
|
|
2841
|
+
};
|
|
2842
|
+
updateTime?: Date;
|
|
2843
|
+
};
|
|
2844
|
+
minSelfDelegation?: string;
|
|
2845
|
+
unbondingOnHoldRefCount?: number;
|
|
2846
|
+
unbondingIds?: number[];
|
|
2847
|
+
}[];
|
|
2848
|
+
pagination?: {
|
|
2849
|
+
nextKey?: Uint8Array;
|
|
2850
|
+
total?: number;
|
|
2851
|
+
};
|
|
2852
|
+
} & {
|
|
2853
|
+
validators?: {
|
|
2854
|
+
operatorAddress?: string;
|
|
2855
|
+
consensusPubkey?: {
|
|
2856
|
+
typeUrl?: string;
|
|
2857
|
+
value?: Uint8Array;
|
|
2858
|
+
};
|
|
2859
|
+
jailed?: boolean;
|
|
2860
|
+
status?: import("./staking").BondStatus;
|
|
2861
|
+
tokens?: string;
|
|
2862
|
+
delegatorShares?: string;
|
|
2863
|
+
description?: {
|
|
2864
|
+
moniker?: string;
|
|
2865
|
+
identity?: string;
|
|
2866
|
+
website?: string;
|
|
2867
|
+
securityContact?: string;
|
|
2868
|
+
details?: string;
|
|
2869
|
+
};
|
|
2870
|
+
unbondingHeight?: number;
|
|
2871
|
+
unbondingTime?: Date;
|
|
2872
|
+
commission?: {
|
|
2873
|
+
commissionRates?: {
|
|
2874
|
+
rate?: string;
|
|
2875
|
+
maxRate?: string;
|
|
2876
|
+
maxChangeRate?: string;
|
|
2877
|
+
};
|
|
2878
|
+
updateTime?: Date;
|
|
2879
|
+
};
|
|
2880
|
+
minSelfDelegation?: string;
|
|
2881
|
+
unbondingOnHoldRefCount?: number;
|
|
2882
|
+
unbondingIds?: number[];
|
|
2883
|
+
}[] & ({
|
|
2884
|
+
operatorAddress?: string;
|
|
2885
|
+
consensusPubkey?: {
|
|
2886
|
+
typeUrl?: string;
|
|
2887
|
+
value?: Uint8Array;
|
|
2888
|
+
};
|
|
2889
|
+
jailed?: boolean;
|
|
2890
|
+
status?: import("./staking").BondStatus;
|
|
2891
|
+
tokens?: string;
|
|
2892
|
+
delegatorShares?: string;
|
|
2893
|
+
description?: {
|
|
2894
|
+
moniker?: string;
|
|
2895
|
+
identity?: string;
|
|
2896
|
+
website?: string;
|
|
2897
|
+
securityContact?: string;
|
|
2898
|
+
details?: string;
|
|
2899
|
+
};
|
|
2900
|
+
unbondingHeight?: number;
|
|
2901
|
+
unbondingTime?: Date;
|
|
2902
|
+
commission?: {
|
|
2903
|
+
commissionRates?: {
|
|
2904
|
+
rate?: string;
|
|
2905
|
+
maxRate?: string;
|
|
2906
|
+
maxChangeRate?: string;
|
|
2907
|
+
};
|
|
2908
|
+
updateTime?: Date;
|
|
2909
|
+
};
|
|
2910
|
+
minSelfDelegation?: string;
|
|
2911
|
+
unbondingOnHoldRefCount?: number;
|
|
2912
|
+
unbondingIds?: number[];
|
|
2913
|
+
} & {
|
|
2914
|
+
operatorAddress?: string;
|
|
2915
|
+
consensusPubkey?: {
|
|
2916
|
+
typeUrl?: string;
|
|
2917
|
+
value?: Uint8Array;
|
|
2918
|
+
} & {
|
|
2919
|
+
typeUrl?: string;
|
|
2920
|
+
value?: Uint8Array;
|
|
2921
|
+
} & { [K_9 in Exclude<keyof I_1["validators"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
2922
|
+
jailed?: boolean;
|
|
2923
|
+
status?: import("./staking").BondStatus;
|
|
2924
|
+
tokens?: string;
|
|
2925
|
+
delegatorShares?: string;
|
|
2926
|
+
description?: {
|
|
2927
|
+
moniker?: string;
|
|
2928
|
+
identity?: string;
|
|
2929
|
+
website?: string;
|
|
2930
|
+
securityContact?: string;
|
|
2931
|
+
details?: string;
|
|
2932
|
+
} & {
|
|
2933
|
+
moniker?: string;
|
|
2934
|
+
identity?: string;
|
|
2935
|
+
website?: string;
|
|
2936
|
+
securityContact?: string;
|
|
2937
|
+
details?: string;
|
|
2938
|
+
} & { [K_10 in Exclude<keyof I_1["validators"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
2939
|
+
unbondingHeight?: number;
|
|
2940
|
+
unbondingTime?: Date;
|
|
2941
|
+
commission?: {
|
|
2942
|
+
commissionRates?: {
|
|
2943
|
+
rate?: string;
|
|
2944
|
+
maxRate?: string;
|
|
2945
|
+
maxChangeRate?: string;
|
|
2946
|
+
};
|
|
2947
|
+
updateTime?: Date;
|
|
2948
|
+
} & {
|
|
2949
|
+
commissionRates?: {
|
|
2950
|
+
rate?: string;
|
|
2951
|
+
maxRate?: string;
|
|
2952
|
+
maxChangeRate?: string;
|
|
2953
|
+
} & {
|
|
2954
|
+
rate?: string;
|
|
2955
|
+
maxRate?: string;
|
|
2956
|
+
maxChangeRate?: string;
|
|
2957
|
+
} & { [K_11 in Exclude<keyof I_1["validators"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
2958
|
+
updateTime?: Date;
|
|
2959
|
+
} & { [K_12 in Exclude<keyof I_1["validators"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
2960
|
+
minSelfDelegation?: string;
|
|
2961
|
+
unbondingOnHoldRefCount?: number;
|
|
2962
|
+
unbondingIds?: number[] & number[] & { [K_13 in Exclude<keyof I_1["validators"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
2963
|
+
} & { [K_14 in Exclude<keyof I_1["validators"][number], keyof Validator>]: never; })[] & { [K_15 in Exclude<keyof I_1["validators"], keyof {
|
|
2964
|
+
operatorAddress?: string;
|
|
2965
|
+
consensusPubkey?: {
|
|
2966
|
+
typeUrl?: string;
|
|
2967
|
+
value?: Uint8Array;
|
|
2968
|
+
};
|
|
2969
|
+
jailed?: boolean;
|
|
2970
|
+
status?: import("./staking").BondStatus;
|
|
2971
|
+
tokens?: string;
|
|
2972
|
+
delegatorShares?: string;
|
|
2973
|
+
description?: {
|
|
2974
|
+
moniker?: string;
|
|
2975
|
+
identity?: string;
|
|
2976
|
+
website?: string;
|
|
2977
|
+
securityContact?: string;
|
|
2978
|
+
details?: string;
|
|
2979
|
+
};
|
|
2980
|
+
unbondingHeight?: number;
|
|
2981
|
+
unbondingTime?: Date;
|
|
2982
|
+
commission?: {
|
|
2983
|
+
commissionRates?: {
|
|
2984
|
+
rate?: string;
|
|
2985
|
+
maxRate?: string;
|
|
2986
|
+
maxChangeRate?: string;
|
|
2987
|
+
};
|
|
2988
|
+
updateTime?: Date;
|
|
2989
|
+
};
|
|
2990
|
+
minSelfDelegation?: string;
|
|
2991
|
+
unbondingOnHoldRefCount?: number;
|
|
2992
|
+
unbondingIds?: number[];
|
|
2993
|
+
}[]>]: never; };
|
|
2994
|
+
pagination?: {
|
|
2995
|
+
nextKey?: Uint8Array;
|
|
2996
|
+
total?: number;
|
|
2997
|
+
} & {
|
|
2998
|
+
nextKey?: Uint8Array;
|
|
2999
|
+
total?: number;
|
|
3000
|
+
} & { [K_16 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
|
|
3001
|
+
} & { [K_17 in Exclude<keyof I_1, keyof QueryDelegatorValidatorsResponse>]: never; }>(object: I_1): QueryDelegatorValidatorsResponse;
|
|
3002
|
+
};
|
|
3003
|
+
export declare const QueryDelegatorValidatorRequest: {
|
|
3004
|
+
encode(message: QueryDelegatorValidatorRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3005
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorRequest;
|
|
3006
|
+
fromJSON(object: any): QueryDelegatorValidatorRequest;
|
|
3007
|
+
toJSON(message: QueryDelegatorValidatorRequest): unknown;
|
|
3008
|
+
create<I extends {
|
|
3009
|
+
delegatorAddr?: string;
|
|
3010
|
+
validatorAddr?: string;
|
|
3011
|
+
} & {
|
|
3012
|
+
delegatorAddr?: string;
|
|
3013
|
+
validatorAddr?: string;
|
|
3014
|
+
} & { [K in Exclude<keyof I, keyof QueryDelegatorValidatorRequest>]: never; }>(base?: I): QueryDelegatorValidatorRequest;
|
|
3015
|
+
fromPartial<I_1 extends {
|
|
3016
|
+
delegatorAddr?: string;
|
|
3017
|
+
validatorAddr?: string;
|
|
3018
|
+
} & {
|
|
3019
|
+
delegatorAddr?: string;
|
|
3020
|
+
validatorAddr?: string;
|
|
3021
|
+
} & { [K_1 in Exclude<keyof I_1, keyof QueryDelegatorValidatorRequest>]: never; }>(object: I_1): QueryDelegatorValidatorRequest;
|
|
3022
|
+
};
|
|
3023
|
+
export declare const QueryDelegatorValidatorResponse: {
|
|
3024
|
+
encode(message: QueryDelegatorValidatorResponse, writer?: _m0.Writer): _m0.Writer;
|
|
3025
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorResponse;
|
|
3026
|
+
fromJSON(object: any): QueryDelegatorValidatorResponse;
|
|
3027
|
+
toJSON(message: QueryDelegatorValidatorResponse): unknown;
|
|
3028
|
+
create<I extends {
|
|
3029
|
+
validator?: {
|
|
3030
|
+
operatorAddress?: string;
|
|
3031
|
+
consensusPubkey?: {
|
|
3032
|
+
typeUrl?: string;
|
|
3033
|
+
value?: Uint8Array;
|
|
3034
|
+
};
|
|
3035
|
+
jailed?: boolean;
|
|
3036
|
+
status?: import("./staking").BondStatus;
|
|
3037
|
+
tokens?: string;
|
|
3038
|
+
delegatorShares?: string;
|
|
3039
|
+
description?: {
|
|
3040
|
+
moniker?: string;
|
|
3041
|
+
identity?: string;
|
|
3042
|
+
website?: string;
|
|
3043
|
+
securityContact?: string;
|
|
3044
|
+
details?: string;
|
|
3045
|
+
};
|
|
3046
|
+
unbondingHeight?: number;
|
|
3047
|
+
unbondingTime?: Date;
|
|
3048
|
+
commission?: {
|
|
3049
|
+
commissionRates?: {
|
|
3050
|
+
rate?: string;
|
|
3051
|
+
maxRate?: string;
|
|
3052
|
+
maxChangeRate?: string;
|
|
3053
|
+
};
|
|
3054
|
+
updateTime?: Date;
|
|
3055
|
+
};
|
|
3056
|
+
minSelfDelegation?: string;
|
|
3057
|
+
unbondingOnHoldRefCount?: number;
|
|
3058
|
+
unbondingIds?: number[];
|
|
3059
|
+
};
|
|
3060
|
+
} & {
|
|
3061
|
+
validator?: {
|
|
3062
|
+
operatorAddress?: string;
|
|
3063
|
+
consensusPubkey?: {
|
|
3064
|
+
typeUrl?: string;
|
|
3065
|
+
value?: Uint8Array;
|
|
3066
|
+
};
|
|
3067
|
+
jailed?: boolean;
|
|
3068
|
+
status?: import("./staking").BondStatus;
|
|
3069
|
+
tokens?: string;
|
|
3070
|
+
delegatorShares?: string;
|
|
3071
|
+
description?: {
|
|
3072
|
+
moniker?: string;
|
|
3073
|
+
identity?: string;
|
|
3074
|
+
website?: string;
|
|
3075
|
+
securityContact?: string;
|
|
3076
|
+
details?: string;
|
|
3077
|
+
};
|
|
3078
|
+
unbondingHeight?: number;
|
|
3079
|
+
unbondingTime?: Date;
|
|
3080
|
+
commission?: {
|
|
3081
|
+
commissionRates?: {
|
|
3082
|
+
rate?: string;
|
|
3083
|
+
maxRate?: string;
|
|
3084
|
+
maxChangeRate?: string;
|
|
3085
|
+
};
|
|
3086
|
+
updateTime?: Date;
|
|
3087
|
+
};
|
|
3088
|
+
minSelfDelegation?: string;
|
|
3089
|
+
unbondingOnHoldRefCount?: number;
|
|
3090
|
+
unbondingIds?: number[];
|
|
3091
|
+
} & {
|
|
3092
|
+
operatorAddress?: string;
|
|
3093
|
+
consensusPubkey?: {
|
|
3094
|
+
typeUrl?: string;
|
|
3095
|
+
value?: Uint8Array;
|
|
3096
|
+
} & {
|
|
3097
|
+
typeUrl?: string;
|
|
3098
|
+
value?: Uint8Array;
|
|
3099
|
+
} & { [K in Exclude<keyof I["validator"]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
3100
|
+
jailed?: boolean;
|
|
3101
|
+
status?: import("./staking").BondStatus;
|
|
3102
|
+
tokens?: string;
|
|
3103
|
+
delegatorShares?: string;
|
|
3104
|
+
description?: {
|
|
3105
|
+
moniker?: string;
|
|
3106
|
+
identity?: string;
|
|
3107
|
+
website?: string;
|
|
3108
|
+
securityContact?: string;
|
|
3109
|
+
details?: string;
|
|
3110
|
+
} & {
|
|
3111
|
+
moniker?: string;
|
|
3112
|
+
identity?: string;
|
|
3113
|
+
website?: string;
|
|
3114
|
+
securityContact?: string;
|
|
3115
|
+
details?: string;
|
|
3116
|
+
} & { [K_1 in Exclude<keyof I["validator"]["description"], keyof import("./staking").Description>]: never; };
|
|
3117
|
+
unbondingHeight?: number;
|
|
3118
|
+
unbondingTime?: Date;
|
|
3119
|
+
commission?: {
|
|
3120
|
+
commissionRates?: {
|
|
3121
|
+
rate?: string;
|
|
3122
|
+
maxRate?: string;
|
|
3123
|
+
maxChangeRate?: string;
|
|
3124
|
+
};
|
|
3125
|
+
updateTime?: Date;
|
|
3126
|
+
} & {
|
|
3127
|
+
commissionRates?: {
|
|
3128
|
+
rate?: string;
|
|
3129
|
+
maxRate?: string;
|
|
3130
|
+
maxChangeRate?: string;
|
|
3131
|
+
} & {
|
|
3132
|
+
rate?: string;
|
|
3133
|
+
maxRate?: string;
|
|
3134
|
+
maxChangeRate?: string;
|
|
3135
|
+
} & { [K_2 in Exclude<keyof I["validator"]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
3136
|
+
updateTime?: Date;
|
|
3137
|
+
} & { [K_3 in Exclude<keyof I["validator"]["commission"], keyof import("./staking").Commission>]: never; };
|
|
3138
|
+
minSelfDelegation?: string;
|
|
3139
|
+
unbondingOnHoldRefCount?: number;
|
|
3140
|
+
unbondingIds?: number[] & number[] & { [K_4 in Exclude<keyof I["validator"]["unbondingIds"], keyof number[]>]: never; };
|
|
3141
|
+
} & { [K_5 in Exclude<keyof I["validator"], keyof Validator>]: never; };
|
|
3142
|
+
} & { [K_6 in Exclude<keyof I, "validator">]: never; }>(base?: I): QueryDelegatorValidatorResponse;
|
|
3143
|
+
fromPartial<I_1 extends {
|
|
3144
|
+
validator?: {
|
|
3145
|
+
operatorAddress?: string;
|
|
3146
|
+
consensusPubkey?: {
|
|
3147
|
+
typeUrl?: string;
|
|
3148
|
+
value?: Uint8Array;
|
|
3149
|
+
};
|
|
3150
|
+
jailed?: boolean;
|
|
3151
|
+
status?: import("./staking").BondStatus;
|
|
3152
|
+
tokens?: string;
|
|
3153
|
+
delegatorShares?: string;
|
|
3154
|
+
description?: {
|
|
3155
|
+
moniker?: string;
|
|
3156
|
+
identity?: string;
|
|
3157
|
+
website?: string;
|
|
3158
|
+
securityContact?: string;
|
|
3159
|
+
details?: string;
|
|
3160
|
+
};
|
|
3161
|
+
unbondingHeight?: number;
|
|
3162
|
+
unbondingTime?: Date;
|
|
3163
|
+
commission?: {
|
|
3164
|
+
commissionRates?: {
|
|
3165
|
+
rate?: string;
|
|
3166
|
+
maxRate?: string;
|
|
3167
|
+
maxChangeRate?: string;
|
|
3168
|
+
};
|
|
3169
|
+
updateTime?: Date;
|
|
3170
|
+
};
|
|
3171
|
+
minSelfDelegation?: string;
|
|
3172
|
+
unbondingOnHoldRefCount?: number;
|
|
3173
|
+
unbondingIds?: number[];
|
|
3174
|
+
};
|
|
3175
|
+
} & {
|
|
3176
|
+
validator?: {
|
|
3177
|
+
operatorAddress?: string;
|
|
3178
|
+
consensusPubkey?: {
|
|
3179
|
+
typeUrl?: string;
|
|
3180
|
+
value?: Uint8Array;
|
|
3181
|
+
};
|
|
3182
|
+
jailed?: boolean;
|
|
3183
|
+
status?: import("./staking").BondStatus;
|
|
3184
|
+
tokens?: string;
|
|
3185
|
+
delegatorShares?: string;
|
|
3186
|
+
description?: {
|
|
3187
|
+
moniker?: string;
|
|
3188
|
+
identity?: string;
|
|
3189
|
+
website?: string;
|
|
3190
|
+
securityContact?: string;
|
|
3191
|
+
details?: string;
|
|
3192
|
+
};
|
|
3193
|
+
unbondingHeight?: number;
|
|
3194
|
+
unbondingTime?: Date;
|
|
3195
|
+
commission?: {
|
|
3196
|
+
commissionRates?: {
|
|
3197
|
+
rate?: string;
|
|
3198
|
+
maxRate?: string;
|
|
3199
|
+
maxChangeRate?: string;
|
|
3200
|
+
};
|
|
3201
|
+
updateTime?: Date;
|
|
3202
|
+
};
|
|
3203
|
+
minSelfDelegation?: string;
|
|
3204
|
+
unbondingOnHoldRefCount?: number;
|
|
3205
|
+
unbondingIds?: number[];
|
|
3206
|
+
} & {
|
|
3207
|
+
operatorAddress?: string;
|
|
3208
|
+
consensusPubkey?: {
|
|
3209
|
+
typeUrl?: string;
|
|
3210
|
+
value?: Uint8Array;
|
|
3211
|
+
} & {
|
|
3212
|
+
typeUrl?: string;
|
|
3213
|
+
value?: Uint8Array;
|
|
3214
|
+
} & { [K_7 in Exclude<keyof I_1["validator"]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
3215
|
+
jailed?: boolean;
|
|
3216
|
+
status?: import("./staking").BondStatus;
|
|
3217
|
+
tokens?: string;
|
|
3218
|
+
delegatorShares?: string;
|
|
3219
|
+
description?: {
|
|
3220
|
+
moniker?: string;
|
|
3221
|
+
identity?: string;
|
|
3222
|
+
website?: string;
|
|
3223
|
+
securityContact?: string;
|
|
3224
|
+
details?: string;
|
|
3225
|
+
} & {
|
|
3226
|
+
moniker?: string;
|
|
3227
|
+
identity?: string;
|
|
3228
|
+
website?: string;
|
|
3229
|
+
securityContact?: string;
|
|
3230
|
+
details?: string;
|
|
3231
|
+
} & { [K_8 in Exclude<keyof I_1["validator"]["description"], keyof import("./staking").Description>]: never; };
|
|
3232
|
+
unbondingHeight?: number;
|
|
3233
|
+
unbondingTime?: Date;
|
|
3234
|
+
commission?: {
|
|
3235
|
+
commissionRates?: {
|
|
3236
|
+
rate?: string;
|
|
3237
|
+
maxRate?: string;
|
|
3238
|
+
maxChangeRate?: string;
|
|
3239
|
+
};
|
|
3240
|
+
updateTime?: Date;
|
|
3241
|
+
} & {
|
|
3242
|
+
commissionRates?: {
|
|
3243
|
+
rate?: string;
|
|
3244
|
+
maxRate?: string;
|
|
3245
|
+
maxChangeRate?: string;
|
|
3246
|
+
} & {
|
|
3247
|
+
rate?: string;
|
|
3248
|
+
maxRate?: string;
|
|
3249
|
+
maxChangeRate?: string;
|
|
3250
|
+
} & { [K_9 in Exclude<keyof I_1["validator"]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
3251
|
+
updateTime?: Date;
|
|
3252
|
+
} & { [K_10 in Exclude<keyof I_1["validator"]["commission"], keyof import("./staking").Commission>]: never; };
|
|
3253
|
+
minSelfDelegation?: string;
|
|
3254
|
+
unbondingOnHoldRefCount?: number;
|
|
3255
|
+
unbondingIds?: number[] & number[] & { [K_11 in Exclude<keyof I_1["validator"]["unbondingIds"], keyof number[]>]: never; };
|
|
3256
|
+
} & { [K_12 in Exclude<keyof I_1["validator"], keyof Validator>]: never; };
|
|
3257
|
+
} & { [K_13 in Exclude<keyof I_1, "validator">]: never; }>(object: I_1): QueryDelegatorValidatorResponse;
|
|
3258
|
+
};
|
|
3259
|
+
export declare const QueryHistoricalInfoRequest: {
|
|
3260
|
+
encode(message: QueryHistoricalInfoRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3261
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoRequest;
|
|
3262
|
+
fromJSON(object: any): QueryHistoricalInfoRequest;
|
|
3263
|
+
toJSON(message: QueryHistoricalInfoRequest): unknown;
|
|
3264
|
+
create<I extends {
|
|
3265
|
+
height?: number;
|
|
3266
|
+
} & {
|
|
3267
|
+
height?: number;
|
|
3268
|
+
} & { [K in Exclude<keyof I, "height">]: never; }>(base?: I): QueryHistoricalInfoRequest;
|
|
3269
|
+
fromPartial<I_1 extends {
|
|
3270
|
+
height?: number;
|
|
3271
|
+
} & {
|
|
3272
|
+
height?: number;
|
|
3273
|
+
} & { [K_1 in Exclude<keyof I_1, "height">]: never; }>(object: I_1): QueryHistoricalInfoRequest;
|
|
3274
|
+
};
|
|
3275
|
+
export declare const QueryHistoricalInfoResponse: {
|
|
3276
|
+
encode(message: QueryHistoricalInfoResponse, writer?: _m0.Writer): _m0.Writer;
|
|
3277
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoResponse;
|
|
3278
|
+
fromJSON(object: any): QueryHistoricalInfoResponse;
|
|
3279
|
+
toJSON(message: QueryHistoricalInfoResponse): unknown;
|
|
3280
|
+
create<I extends {
|
|
3281
|
+
hist?: {
|
|
3282
|
+
header?: {
|
|
3283
|
+
version?: {
|
|
3284
|
+
block?: number;
|
|
3285
|
+
app?: number;
|
|
3286
|
+
};
|
|
3287
|
+
chainId?: string;
|
|
3288
|
+
height?: number;
|
|
3289
|
+
time?: Date;
|
|
3290
|
+
lastBlockId?: {
|
|
3291
|
+
hash?: Uint8Array;
|
|
3292
|
+
partSetHeader?: {
|
|
3293
|
+
total?: number;
|
|
3294
|
+
hash?: Uint8Array;
|
|
3295
|
+
};
|
|
3296
|
+
};
|
|
3297
|
+
lastCommitHash?: Uint8Array;
|
|
3298
|
+
dataHash?: Uint8Array;
|
|
3299
|
+
validatorsHash?: Uint8Array;
|
|
3300
|
+
nextValidatorsHash?: Uint8Array;
|
|
3301
|
+
consensusHash?: Uint8Array;
|
|
3302
|
+
appHash?: Uint8Array;
|
|
3303
|
+
lastResultsHash?: Uint8Array;
|
|
3304
|
+
evidenceHash?: Uint8Array;
|
|
3305
|
+
proposerAddress?: Uint8Array;
|
|
3306
|
+
};
|
|
3307
|
+
valset?: {
|
|
3308
|
+
operatorAddress?: string;
|
|
3309
|
+
consensusPubkey?: {
|
|
3310
|
+
typeUrl?: string;
|
|
3311
|
+
value?: Uint8Array;
|
|
3312
|
+
};
|
|
3313
|
+
jailed?: boolean;
|
|
3314
|
+
status?: import("./staking").BondStatus;
|
|
3315
|
+
tokens?: string;
|
|
3316
|
+
delegatorShares?: string;
|
|
3317
|
+
description?: {
|
|
3318
|
+
moniker?: string;
|
|
3319
|
+
identity?: string;
|
|
3320
|
+
website?: string;
|
|
3321
|
+
securityContact?: string;
|
|
3322
|
+
details?: string;
|
|
3323
|
+
};
|
|
3324
|
+
unbondingHeight?: number;
|
|
3325
|
+
unbondingTime?: Date;
|
|
3326
|
+
commission?: {
|
|
3327
|
+
commissionRates?: {
|
|
3328
|
+
rate?: string;
|
|
3329
|
+
maxRate?: string;
|
|
3330
|
+
maxChangeRate?: string;
|
|
3331
|
+
};
|
|
3332
|
+
updateTime?: Date;
|
|
3333
|
+
};
|
|
3334
|
+
minSelfDelegation?: string;
|
|
3335
|
+
unbondingOnHoldRefCount?: number;
|
|
3336
|
+
unbondingIds?: number[];
|
|
3337
|
+
}[];
|
|
3338
|
+
};
|
|
3339
|
+
} & {
|
|
3340
|
+
hist?: {
|
|
3341
|
+
header?: {
|
|
3342
|
+
version?: {
|
|
3343
|
+
block?: number;
|
|
3344
|
+
app?: number;
|
|
3345
|
+
};
|
|
3346
|
+
chainId?: string;
|
|
3347
|
+
height?: number;
|
|
3348
|
+
time?: Date;
|
|
3349
|
+
lastBlockId?: {
|
|
3350
|
+
hash?: Uint8Array;
|
|
3351
|
+
partSetHeader?: {
|
|
3352
|
+
total?: number;
|
|
3353
|
+
hash?: Uint8Array;
|
|
3354
|
+
};
|
|
3355
|
+
};
|
|
3356
|
+
lastCommitHash?: Uint8Array;
|
|
3357
|
+
dataHash?: Uint8Array;
|
|
3358
|
+
validatorsHash?: Uint8Array;
|
|
3359
|
+
nextValidatorsHash?: Uint8Array;
|
|
3360
|
+
consensusHash?: Uint8Array;
|
|
3361
|
+
appHash?: Uint8Array;
|
|
3362
|
+
lastResultsHash?: Uint8Array;
|
|
3363
|
+
evidenceHash?: Uint8Array;
|
|
3364
|
+
proposerAddress?: Uint8Array;
|
|
3365
|
+
};
|
|
3366
|
+
valset?: {
|
|
3367
|
+
operatorAddress?: string;
|
|
3368
|
+
consensusPubkey?: {
|
|
3369
|
+
typeUrl?: string;
|
|
3370
|
+
value?: Uint8Array;
|
|
3371
|
+
};
|
|
3372
|
+
jailed?: boolean;
|
|
3373
|
+
status?: import("./staking").BondStatus;
|
|
3374
|
+
tokens?: string;
|
|
3375
|
+
delegatorShares?: string;
|
|
3376
|
+
description?: {
|
|
3377
|
+
moniker?: string;
|
|
3378
|
+
identity?: string;
|
|
3379
|
+
website?: string;
|
|
3380
|
+
securityContact?: string;
|
|
3381
|
+
details?: string;
|
|
3382
|
+
};
|
|
3383
|
+
unbondingHeight?: number;
|
|
3384
|
+
unbondingTime?: Date;
|
|
3385
|
+
commission?: {
|
|
3386
|
+
commissionRates?: {
|
|
3387
|
+
rate?: string;
|
|
3388
|
+
maxRate?: string;
|
|
3389
|
+
maxChangeRate?: string;
|
|
3390
|
+
};
|
|
3391
|
+
updateTime?: Date;
|
|
3392
|
+
};
|
|
3393
|
+
minSelfDelegation?: string;
|
|
3394
|
+
unbondingOnHoldRefCount?: number;
|
|
3395
|
+
unbondingIds?: number[];
|
|
3396
|
+
}[];
|
|
3397
|
+
} & {
|
|
3398
|
+
header?: {
|
|
3399
|
+
version?: {
|
|
3400
|
+
block?: number;
|
|
3401
|
+
app?: number;
|
|
3402
|
+
};
|
|
3403
|
+
chainId?: string;
|
|
3404
|
+
height?: number;
|
|
3405
|
+
time?: Date;
|
|
3406
|
+
lastBlockId?: {
|
|
3407
|
+
hash?: Uint8Array;
|
|
3408
|
+
partSetHeader?: {
|
|
3409
|
+
total?: number;
|
|
3410
|
+
hash?: Uint8Array;
|
|
3411
|
+
};
|
|
3412
|
+
};
|
|
3413
|
+
lastCommitHash?: Uint8Array;
|
|
3414
|
+
dataHash?: Uint8Array;
|
|
3415
|
+
validatorsHash?: Uint8Array;
|
|
3416
|
+
nextValidatorsHash?: Uint8Array;
|
|
3417
|
+
consensusHash?: Uint8Array;
|
|
3418
|
+
appHash?: Uint8Array;
|
|
3419
|
+
lastResultsHash?: Uint8Array;
|
|
3420
|
+
evidenceHash?: Uint8Array;
|
|
3421
|
+
proposerAddress?: Uint8Array;
|
|
3422
|
+
} & {
|
|
3423
|
+
version?: {
|
|
3424
|
+
block?: number;
|
|
3425
|
+
app?: number;
|
|
3426
|
+
} & {
|
|
3427
|
+
block?: number;
|
|
3428
|
+
app?: number;
|
|
3429
|
+
} & { [K in Exclude<keyof I["hist"]["header"]["version"], keyof import("../../../tendermint/version/types").Consensus>]: never; };
|
|
3430
|
+
chainId?: string;
|
|
3431
|
+
height?: number;
|
|
3432
|
+
time?: Date;
|
|
3433
|
+
lastBlockId?: {
|
|
3434
|
+
hash?: Uint8Array;
|
|
3435
|
+
partSetHeader?: {
|
|
3436
|
+
total?: number;
|
|
3437
|
+
hash?: Uint8Array;
|
|
3438
|
+
};
|
|
3439
|
+
} & {
|
|
3440
|
+
hash?: Uint8Array;
|
|
3441
|
+
partSetHeader?: {
|
|
3442
|
+
total?: number;
|
|
3443
|
+
hash?: Uint8Array;
|
|
3444
|
+
} & {
|
|
3445
|
+
total?: number;
|
|
3446
|
+
hash?: Uint8Array;
|
|
3447
|
+
} & { [K_1 in Exclude<keyof I["hist"]["header"]["lastBlockId"]["partSetHeader"], keyof import("../../../tendermint/types/types").PartSetHeader>]: never; };
|
|
3448
|
+
} & { [K_2 in Exclude<keyof I["hist"]["header"]["lastBlockId"], keyof import("../../../tendermint/types/types").BlockID>]: never; };
|
|
3449
|
+
lastCommitHash?: Uint8Array;
|
|
3450
|
+
dataHash?: Uint8Array;
|
|
3451
|
+
validatorsHash?: Uint8Array;
|
|
3452
|
+
nextValidatorsHash?: Uint8Array;
|
|
3453
|
+
consensusHash?: Uint8Array;
|
|
3454
|
+
appHash?: Uint8Array;
|
|
3455
|
+
lastResultsHash?: Uint8Array;
|
|
3456
|
+
evidenceHash?: Uint8Array;
|
|
3457
|
+
proposerAddress?: Uint8Array;
|
|
3458
|
+
} & { [K_3 in Exclude<keyof I["hist"]["header"], keyof import("../../../tendermint/types/types").Header>]: never; };
|
|
3459
|
+
valset?: {
|
|
3460
|
+
operatorAddress?: string;
|
|
3461
|
+
consensusPubkey?: {
|
|
3462
|
+
typeUrl?: string;
|
|
3463
|
+
value?: Uint8Array;
|
|
3464
|
+
};
|
|
3465
|
+
jailed?: boolean;
|
|
3466
|
+
status?: import("./staking").BondStatus;
|
|
3467
|
+
tokens?: string;
|
|
3468
|
+
delegatorShares?: string;
|
|
3469
|
+
description?: {
|
|
3470
|
+
moniker?: string;
|
|
3471
|
+
identity?: string;
|
|
3472
|
+
website?: string;
|
|
3473
|
+
securityContact?: string;
|
|
3474
|
+
details?: string;
|
|
3475
|
+
};
|
|
3476
|
+
unbondingHeight?: number;
|
|
3477
|
+
unbondingTime?: Date;
|
|
3478
|
+
commission?: {
|
|
3479
|
+
commissionRates?: {
|
|
3480
|
+
rate?: string;
|
|
3481
|
+
maxRate?: string;
|
|
3482
|
+
maxChangeRate?: string;
|
|
3483
|
+
};
|
|
3484
|
+
updateTime?: Date;
|
|
3485
|
+
};
|
|
3486
|
+
minSelfDelegation?: string;
|
|
3487
|
+
unbondingOnHoldRefCount?: number;
|
|
3488
|
+
unbondingIds?: number[];
|
|
3489
|
+
}[] & ({
|
|
3490
|
+
operatorAddress?: string;
|
|
3491
|
+
consensusPubkey?: {
|
|
3492
|
+
typeUrl?: string;
|
|
3493
|
+
value?: Uint8Array;
|
|
3494
|
+
};
|
|
3495
|
+
jailed?: boolean;
|
|
3496
|
+
status?: import("./staking").BondStatus;
|
|
3497
|
+
tokens?: string;
|
|
3498
|
+
delegatorShares?: string;
|
|
3499
|
+
description?: {
|
|
3500
|
+
moniker?: string;
|
|
3501
|
+
identity?: string;
|
|
3502
|
+
website?: string;
|
|
3503
|
+
securityContact?: string;
|
|
3504
|
+
details?: string;
|
|
3505
|
+
};
|
|
3506
|
+
unbondingHeight?: number;
|
|
3507
|
+
unbondingTime?: Date;
|
|
3508
|
+
commission?: {
|
|
3509
|
+
commissionRates?: {
|
|
3510
|
+
rate?: string;
|
|
3511
|
+
maxRate?: string;
|
|
3512
|
+
maxChangeRate?: string;
|
|
3513
|
+
};
|
|
3514
|
+
updateTime?: Date;
|
|
3515
|
+
};
|
|
3516
|
+
minSelfDelegation?: string;
|
|
3517
|
+
unbondingOnHoldRefCount?: number;
|
|
3518
|
+
unbondingIds?: number[];
|
|
3519
|
+
} & {
|
|
3520
|
+
operatorAddress?: string;
|
|
3521
|
+
consensusPubkey?: {
|
|
3522
|
+
typeUrl?: string;
|
|
3523
|
+
value?: Uint8Array;
|
|
3524
|
+
} & {
|
|
3525
|
+
typeUrl?: string;
|
|
3526
|
+
value?: Uint8Array;
|
|
3527
|
+
} & { [K_4 in Exclude<keyof I["hist"]["valset"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
3528
|
+
jailed?: boolean;
|
|
3529
|
+
status?: import("./staking").BondStatus;
|
|
3530
|
+
tokens?: string;
|
|
3531
|
+
delegatorShares?: string;
|
|
3532
|
+
description?: {
|
|
3533
|
+
moniker?: string;
|
|
3534
|
+
identity?: string;
|
|
3535
|
+
website?: string;
|
|
3536
|
+
securityContact?: string;
|
|
3537
|
+
details?: string;
|
|
3538
|
+
} & {
|
|
3539
|
+
moniker?: string;
|
|
3540
|
+
identity?: string;
|
|
3541
|
+
website?: string;
|
|
3542
|
+
securityContact?: string;
|
|
3543
|
+
details?: string;
|
|
3544
|
+
} & { [K_5 in Exclude<keyof I["hist"]["valset"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
3545
|
+
unbondingHeight?: number;
|
|
3546
|
+
unbondingTime?: Date;
|
|
3547
|
+
commission?: {
|
|
3548
|
+
commissionRates?: {
|
|
3549
|
+
rate?: string;
|
|
3550
|
+
maxRate?: string;
|
|
3551
|
+
maxChangeRate?: string;
|
|
3552
|
+
};
|
|
3553
|
+
updateTime?: Date;
|
|
3554
|
+
} & {
|
|
3555
|
+
commissionRates?: {
|
|
3556
|
+
rate?: string;
|
|
3557
|
+
maxRate?: string;
|
|
3558
|
+
maxChangeRate?: string;
|
|
3559
|
+
} & {
|
|
3560
|
+
rate?: string;
|
|
3561
|
+
maxRate?: string;
|
|
3562
|
+
maxChangeRate?: string;
|
|
3563
|
+
} & { [K_6 in Exclude<keyof I["hist"]["valset"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
3564
|
+
updateTime?: Date;
|
|
3565
|
+
} & { [K_7 in Exclude<keyof I["hist"]["valset"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
3566
|
+
minSelfDelegation?: string;
|
|
3567
|
+
unbondingOnHoldRefCount?: number;
|
|
3568
|
+
unbondingIds?: number[] & number[] & { [K_8 in Exclude<keyof I["hist"]["valset"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
3569
|
+
} & { [K_9 in Exclude<keyof I["hist"]["valset"][number], keyof Validator>]: never; })[] & { [K_10 in Exclude<keyof I["hist"]["valset"], keyof {
|
|
3570
|
+
operatorAddress?: string;
|
|
3571
|
+
consensusPubkey?: {
|
|
3572
|
+
typeUrl?: string;
|
|
3573
|
+
value?: Uint8Array;
|
|
3574
|
+
};
|
|
3575
|
+
jailed?: boolean;
|
|
3576
|
+
status?: import("./staking").BondStatus;
|
|
3577
|
+
tokens?: string;
|
|
3578
|
+
delegatorShares?: string;
|
|
3579
|
+
description?: {
|
|
3580
|
+
moniker?: string;
|
|
3581
|
+
identity?: string;
|
|
3582
|
+
website?: string;
|
|
3583
|
+
securityContact?: string;
|
|
3584
|
+
details?: string;
|
|
3585
|
+
};
|
|
3586
|
+
unbondingHeight?: number;
|
|
3587
|
+
unbondingTime?: Date;
|
|
3588
|
+
commission?: {
|
|
3589
|
+
commissionRates?: {
|
|
3590
|
+
rate?: string;
|
|
3591
|
+
maxRate?: string;
|
|
3592
|
+
maxChangeRate?: string;
|
|
3593
|
+
};
|
|
3594
|
+
updateTime?: Date;
|
|
3595
|
+
};
|
|
3596
|
+
minSelfDelegation?: string;
|
|
3597
|
+
unbondingOnHoldRefCount?: number;
|
|
3598
|
+
unbondingIds?: number[];
|
|
3599
|
+
}[]>]: never; };
|
|
3600
|
+
} & { [K_11 in Exclude<keyof I["hist"], keyof HistoricalInfo>]: never; };
|
|
3601
|
+
} & { [K_12 in Exclude<keyof I, "hist">]: never; }>(base?: I): QueryHistoricalInfoResponse;
|
|
3602
|
+
fromPartial<I_1 extends {
|
|
3603
|
+
hist?: {
|
|
3604
|
+
header?: {
|
|
3605
|
+
version?: {
|
|
3606
|
+
block?: number;
|
|
3607
|
+
app?: number;
|
|
3608
|
+
};
|
|
3609
|
+
chainId?: string;
|
|
3610
|
+
height?: number;
|
|
3611
|
+
time?: Date;
|
|
3612
|
+
lastBlockId?: {
|
|
3613
|
+
hash?: Uint8Array;
|
|
3614
|
+
partSetHeader?: {
|
|
3615
|
+
total?: number;
|
|
3616
|
+
hash?: Uint8Array;
|
|
3617
|
+
};
|
|
3618
|
+
};
|
|
3619
|
+
lastCommitHash?: Uint8Array;
|
|
3620
|
+
dataHash?: Uint8Array;
|
|
3621
|
+
validatorsHash?: Uint8Array;
|
|
3622
|
+
nextValidatorsHash?: Uint8Array;
|
|
3623
|
+
consensusHash?: Uint8Array;
|
|
3624
|
+
appHash?: Uint8Array;
|
|
3625
|
+
lastResultsHash?: Uint8Array;
|
|
3626
|
+
evidenceHash?: Uint8Array;
|
|
3627
|
+
proposerAddress?: Uint8Array;
|
|
3628
|
+
};
|
|
3629
|
+
valset?: {
|
|
3630
|
+
operatorAddress?: string;
|
|
3631
|
+
consensusPubkey?: {
|
|
3632
|
+
typeUrl?: string;
|
|
3633
|
+
value?: Uint8Array;
|
|
3634
|
+
};
|
|
3635
|
+
jailed?: boolean;
|
|
3636
|
+
status?: import("./staking").BondStatus;
|
|
3637
|
+
tokens?: string;
|
|
3638
|
+
delegatorShares?: string;
|
|
3639
|
+
description?: {
|
|
3640
|
+
moniker?: string;
|
|
3641
|
+
identity?: string;
|
|
3642
|
+
website?: string;
|
|
3643
|
+
securityContact?: string;
|
|
3644
|
+
details?: string;
|
|
3645
|
+
};
|
|
3646
|
+
unbondingHeight?: number;
|
|
3647
|
+
unbondingTime?: Date;
|
|
3648
|
+
commission?: {
|
|
3649
|
+
commissionRates?: {
|
|
3650
|
+
rate?: string;
|
|
3651
|
+
maxRate?: string;
|
|
3652
|
+
maxChangeRate?: string;
|
|
3653
|
+
};
|
|
3654
|
+
updateTime?: Date;
|
|
3655
|
+
};
|
|
3656
|
+
minSelfDelegation?: string;
|
|
3657
|
+
unbondingOnHoldRefCount?: number;
|
|
3658
|
+
unbondingIds?: number[];
|
|
3659
|
+
}[];
|
|
3660
|
+
};
|
|
3661
|
+
} & {
|
|
3662
|
+
hist?: {
|
|
3663
|
+
header?: {
|
|
3664
|
+
version?: {
|
|
3665
|
+
block?: number;
|
|
3666
|
+
app?: number;
|
|
3667
|
+
};
|
|
3668
|
+
chainId?: string;
|
|
3669
|
+
height?: number;
|
|
3670
|
+
time?: Date;
|
|
3671
|
+
lastBlockId?: {
|
|
3672
|
+
hash?: Uint8Array;
|
|
3673
|
+
partSetHeader?: {
|
|
3674
|
+
total?: number;
|
|
3675
|
+
hash?: Uint8Array;
|
|
3676
|
+
};
|
|
3677
|
+
};
|
|
3678
|
+
lastCommitHash?: Uint8Array;
|
|
3679
|
+
dataHash?: Uint8Array;
|
|
3680
|
+
validatorsHash?: Uint8Array;
|
|
3681
|
+
nextValidatorsHash?: Uint8Array;
|
|
3682
|
+
consensusHash?: Uint8Array;
|
|
3683
|
+
appHash?: Uint8Array;
|
|
3684
|
+
lastResultsHash?: Uint8Array;
|
|
3685
|
+
evidenceHash?: Uint8Array;
|
|
3686
|
+
proposerAddress?: Uint8Array;
|
|
3687
|
+
};
|
|
3688
|
+
valset?: {
|
|
3689
|
+
operatorAddress?: string;
|
|
3690
|
+
consensusPubkey?: {
|
|
3691
|
+
typeUrl?: string;
|
|
3692
|
+
value?: Uint8Array;
|
|
3693
|
+
};
|
|
3694
|
+
jailed?: boolean;
|
|
3695
|
+
status?: import("./staking").BondStatus;
|
|
3696
|
+
tokens?: string;
|
|
3697
|
+
delegatorShares?: string;
|
|
3698
|
+
description?: {
|
|
3699
|
+
moniker?: string;
|
|
3700
|
+
identity?: string;
|
|
3701
|
+
website?: string;
|
|
3702
|
+
securityContact?: string;
|
|
3703
|
+
details?: string;
|
|
3704
|
+
};
|
|
3705
|
+
unbondingHeight?: number;
|
|
3706
|
+
unbondingTime?: Date;
|
|
3707
|
+
commission?: {
|
|
3708
|
+
commissionRates?: {
|
|
3709
|
+
rate?: string;
|
|
3710
|
+
maxRate?: string;
|
|
3711
|
+
maxChangeRate?: string;
|
|
3712
|
+
};
|
|
3713
|
+
updateTime?: Date;
|
|
3714
|
+
};
|
|
3715
|
+
minSelfDelegation?: string;
|
|
3716
|
+
unbondingOnHoldRefCount?: number;
|
|
3717
|
+
unbondingIds?: number[];
|
|
3718
|
+
}[];
|
|
3719
|
+
} & {
|
|
3720
|
+
header?: {
|
|
3721
|
+
version?: {
|
|
3722
|
+
block?: number;
|
|
3723
|
+
app?: number;
|
|
3724
|
+
};
|
|
3725
|
+
chainId?: string;
|
|
3726
|
+
height?: number;
|
|
3727
|
+
time?: Date;
|
|
3728
|
+
lastBlockId?: {
|
|
3729
|
+
hash?: Uint8Array;
|
|
3730
|
+
partSetHeader?: {
|
|
3731
|
+
total?: number;
|
|
3732
|
+
hash?: Uint8Array;
|
|
3733
|
+
};
|
|
3734
|
+
};
|
|
3735
|
+
lastCommitHash?: Uint8Array;
|
|
3736
|
+
dataHash?: Uint8Array;
|
|
3737
|
+
validatorsHash?: Uint8Array;
|
|
3738
|
+
nextValidatorsHash?: Uint8Array;
|
|
3739
|
+
consensusHash?: Uint8Array;
|
|
3740
|
+
appHash?: Uint8Array;
|
|
3741
|
+
lastResultsHash?: Uint8Array;
|
|
3742
|
+
evidenceHash?: Uint8Array;
|
|
3743
|
+
proposerAddress?: Uint8Array;
|
|
3744
|
+
} & {
|
|
3745
|
+
version?: {
|
|
3746
|
+
block?: number;
|
|
3747
|
+
app?: number;
|
|
3748
|
+
} & {
|
|
3749
|
+
block?: number;
|
|
3750
|
+
app?: number;
|
|
3751
|
+
} & { [K_13 in Exclude<keyof I_1["hist"]["header"]["version"], keyof import("../../../tendermint/version/types").Consensus>]: never; };
|
|
3752
|
+
chainId?: string;
|
|
3753
|
+
height?: number;
|
|
3754
|
+
time?: Date;
|
|
3755
|
+
lastBlockId?: {
|
|
3756
|
+
hash?: Uint8Array;
|
|
3757
|
+
partSetHeader?: {
|
|
3758
|
+
total?: number;
|
|
3759
|
+
hash?: Uint8Array;
|
|
3760
|
+
};
|
|
3761
|
+
} & {
|
|
3762
|
+
hash?: Uint8Array;
|
|
3763
|
+
partSetHeader?: {
|
|
3764
|
+
total?: number;
|
|
3765
|
+
hash?: Uint8Array;
|
|
3766
|
+
} & {
|
|
3767
|
+
total?: number;
|
|
3768
|
+
hash?: Uint8Array;
|
|
3769
|
+
} & { [K_14 in Exclude<keyof I_1["hist"]["header"]["lastBlockId"]["partSetHeader"], keyof import("../../../tendermint/types/types").PartSetHeader>]: never; };
|
|
3770
|
+
} & { [K_15 in Exclude<keyof I_1["hist"]["header"]["lastBlockId"], keyof import("../../../tendermint/types/types").BlockID>]: never; };
|
|
3771
|
+
lastCommitHash?: Uint8Array;
|
|
3772
|
+
dataHash?: Uint8Array;
|
|
3773
|
+
validatorsHash?: Uint8Array;
|
|
3774
|
+
nextValidatorsHash?: Uint8Array;
|
|
3775
|
+
consensusHash?: Uint8Array;
|
|
3776
|
+
appHash?: Uint8Array;
|
|
3777
|
+
lastResultsHash?: Uint8Array;
|
|
3778
|
+
evidenceHash?: Uint8Array;
|
|
3779
|
+
proposerAddress?: Uint8Array;
|
|
3780
|
+
} & { [K_16 in Exclude<keyof I_1["hist"]["header"], keyof import("../../../tendermint/types/types").Header>]: never; };
|
|
3781
|
+
valset?: {
|
|
3782
|
+
operatorAddress?: string;
|
|
3783
|
+
consensusPubkey?: {
|
|
3784
|
+
typeUrl?: string;
|
|
3785
|
+
value?: Uint8Array;
|
|
3786
|
+
};
|
|
3787
|
+
jailed?: boolean;
|
|
3788
|
+
status?: import("./staking").BondStatus;
|
|
3789
|
+
tokens?: string;
|
|
3790
|
+
delegatorShares?: string;
|
|
3791
|
+
description?: {
|
|
3792
|
+
moniker?: string;
|
|
3793
|
+
identity?: string;
|
|
3794
|
+
website?: string;
|
|
3795
|
+
securityContact?: string;
|
|
3796
|
+
details?: string;
|
|
3797
|
+
};
|
|
3798
|
+
unbondingHeight?: number;
|
|
3799
|
+
unbondingTime?: Date;
|
|
3800
|
+
commission?: {
|
|
3801
|
+
commissionRates?: {
|
|
3802
|
+
rate?: string;
|
|
3803
|
+
maxRate?: string;
|
|
3804
|
+
maxChangeRate?: string;
|
|
3805
|
+
};
|
|
3806
|
+
updateTime?: Date;
|
|
3807
|
+
};
|
|
3808
|
+
minSelfDelegation?: string;
|
|
3809
|
+
unbondingOnHoldRefCount?: number;
|
|
3810
|
+
unbondingIds?: number[];
|
|
3811
|
+
}[] & ({
|
|
3812
|
+
operatorAddress?: string;
|
|
3813
|
+
consensusPubkey?: {
|
|
3814
|
+
typeUrl?: string;
|
|
3815
|
+
value?: Uint8Array;
|
|
3816
|
+
};
|
|
3817
|
+
jailed?: boolean;
|
|
3818
|
+
status?: import("./staking").BondStatus;
|
|
3819
|
+
tokens?: string;
|
|
3820
|
+
delegatorShares?: string;
|
|
3821
|
+
description?: {
|
|
3822
|
+
moniker?: string;
|
|
3823
|
+
identity?: string;
|
|
3824
|
+
website?: string;
|
|
3825
|
+
securityContact?: string;
|
|
3826
|
+
details?: string;
|
|
3827
|
+
};
|
|
3828
|
+
unbondingHeight?: number;
|
|
3829
|
+
unbondingTime?: Date;
|
|
3830
|
+
commission?: {
|
|
3831
|
+
commissionRates?: {
|
|
3832
|
+
rate?: string;
|
|
3833
|
+
maxRate?: string;
|
|
3834
|
+
maxChangeRate?: string;
|
|
3835
|
+
};
|
|
3836
|
+
updateTime?: Date;
|
|
3837
|
+
};
|
|
3838
|
+
minSelfDelegation?: string;
|
|
3839
|
+
unbondingOnHoldRefCount?: number;
|
|
3840
|
+
unbondingIds?: number[];
|
|
3841
|
+
} & {
|
|
3842
|
+
operatorAddress?: string;
|
|
3843
|
+
consensusPubkey?: {
|
|
3844
|
+
typeUrl?: string;
|
|
3845
|
+
value?: Uint8Array;
|
|
3846
|
+
} & {
|
|
3847
|
+
typeUrl?: string;
|
|
3848
|
+
value?: Uint8Array;
|
|
3849
|
+
} & { [K_17 in Exclude<keyof I_1["hist"]["valset"][number]["consensusPubkey"], keyof import("../../../google/protobuf/any").Any>]: never; };
|
|
3850
|
+
jailed?: boolean;
|
|
3851
|
+
status?: import("./staking").BondStatus;
|
|
3852
|
+
tokens?: string;
|
|
3853
|
+
delegatorShares?: string;
|
|
3854
|
+
description?: {
|
|
3855
|
+
moniker?: string;
|
|
3856
|
+
identity?: string;
|
|
3857
|
+
website?: string;
|
|
3858
|
+
securityContact?: string;
|
|
3859
|
+
details?: string;
|
|
3860
|
+
} & {
|
|
3861
|
+
moniker?: string;
|
|
3862
|
+
identity?: string;
|
|
3863
|
+
website?: string;
|
|
3864
|
+
securityContact?: string;
|
|
3865
|
+
details?: string;
|
|
3866
|
+
} & { [K_18 in Exclude<keyof I_1["hist"]["valset"][number]["description"], keyof import("./staking").Description>]: never; };
|
|
3867
|
+
unbondingHeight?: number;
|
|
3868
|
+
unbondingTime?: Date;
|
|
3869
|
+
commission?: {
|
|
3870
|
+
commissionRates?: {
|
|
3871
|
+
rate?: string;
|
|
3872
|
+
maxRate?: string;
|
|
3873
|
+
maxChangeRate?: string;
|
|
3874
|
+
};
|
|
3875
|
+
updateTime?: Date;
|
|
3876
|
+
} & {
|
|
3877
|
+
commissionRates?: {
|
|
3878
|
+
rate?: string;
|
|
3879
|
+
maxRate?: string;
|
|
3880
|
+
maxChangeRate?: string;
|
|
3881
|
+
} & {
|
|
3882
|
+
rate?: string;
|
|
3883
|
+
maxRate?: string;
|
|
3884
|
+
maxChangeRate?: string;
|
|
3885
|
+
} & { [K_19 in Exclude<keyof I_1["hist"]["valset"][number]["commission"]["commissionRates"], keyof import("./staking").CommissionRates>]: never; };
|
|
3886
|
+
updateTime?: Date;
|
|
3887
|
+
} & { [K_20 in Exclude<keyof I_1["hist"]["valset"][number]["commission"], keyof import("./staking").Commission>]: never; };
|
|
3888
|
+
minSelfDelegation?: string;
|
|
3889
|
+
unbondingOnHoldRefCount?: number;
|
|
3890
|
+
unbondingIds?: number[] & number[] & { [K_21 in Exclude<keyof I_1["hist"]["valset"][number]["unbondingIds"], keyof number[]>]: never; };
|
|
3891
|
+
} & { [K_22 in Exclude<keyof I_1["hist"]["valset"][number], keyof Validator>]: never; })[] & { [K_23 in Exclude<keyof I_1["hist"]["valset"], keyof {
|
|
3892
|
+
operatorAddress?: string;
|
|
3893
|
+
consensusPubkey?: {
|
|
3894
|
+
typeUrl?: string;
|
|
3895
|
+
value?: Uint8Array;
|
|
3896
|
+
};
|
|
3897
|
+
jailed?: boolean;
|
|
3898
|
+
status?: import("./staking").BondStatus;
|
|
3899
|
+
tokens?: string;
|
|
3900
|
+
delegatorShares?: string;
|
|
3901
|
+
description?: {
|
|
3902
|
+
moniker?: string;
|
|
3903
|
+
identity?: string;
|
|
3904
|
+
website?: string;
|
|
3905
|
+
securityContact?: string;
|
|
3906
|
+
details?: string;
|
|
3907
|
+
};
|
|
3908
|
+
unbondingHeight?: number;
|
|
3909
|
+
unbondingTime?: Date;
|
|
3910
|
+
commission?: {
|
|
3911
|
+
commissionRates?: {
|
|
3912
|
+
rate?: string;
|
|
3913
|
+
maxRate?: string;
|
|
3914
|
+
maxChangeRate?: string;
|
|
3915
|
+
};
|
|
3916
|
+
updateTime?: Date;
|
|
3917
|
+
};
|
|
3918
|
+
minSelfDelegation?: string;
|
|
3919
|
+
unbondingOnHoldRefCount?: number;
|
|
3920
|
+
unbondingIds?: number[];
|
|
3921
|
+
}[]>]: never; };
|
|
3922
|
+
} & { [K_24 in Exclude<keyof I_1["hist"], keyof HistoricalInfo>]: never; };
|
|
3923
|
+
} & { [K_25 in Exclude<keyof I_1, "hist">]: never; }>(object: I_1): QueryHistoricalInfoResponse;
|
|
3924
|
+
};
|
|
3925
|
+
export declare const QueryPoolRequest: {
|
|
3926
|
+
encode(_: QueryPoolRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3927
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolRequest;
|
|
3928
|
+
fromJSON(_: any): QueryPoolRequest;
|
|
3929
|
+
toJSON(_: QueryPoolRequest): unknown;
|
|
3930
|
+
create<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(base?: I): QueryPoolRequest;
|
|
3931
|
+
fromPartial<I_1 extends {} & {} & { [K_1 in Exclude<keyof I_1, never>]: never; }>(_: I_1): QueryPoolRequest;
|
|
3932
|
+
};
|
|
3933
|
+
export declare const QueryPoolResponse: {
|
|
3934
|
+
encode(message: QueryPoolResponse, writer?: _m0.Writer): _m0.Writer;
|
|
3935
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolResponse;
|
|
3936
|
+
fromJSON(object: any): QueryPoolResponse;
|
|
3937
|
+
toJSON(message: QueryPoolResponse): unknown;
|
|
3938
|
+
create<I extends {
|
|
3939
|
+
pool?: {
|
|
3940
|
+
notBondedTokens?: string;
|
|
3941
|
+
bondedTokens?: string;
|
|
3942
|
+
};
|
|
3943
|
+
} & {
|
|
3944
|
+
pool?: {
|
|
3945
|
+
notBondedTokens?: string;
|
|
3946
|
+
bondedTokens?: string;
|
|
3947
|
+
} & {
|
|
3948
|
+
notBondedTokens?: string;
|
|
3949
|
+
bondedTokens?: string;
|
|
3950
|
+
} & { [K in Exclude<keyof I["pool"], keyof Pool>]: never; };
|
|
3951
|
+
} & { [K_1 in Exclude<keyof I, "pool">]: never; }>(base?: I): QueryPoolResponse;
|
|
3952
|
+
fromPartial<I_1 extends {
|
|
3953
|
+
pool?: {
|
|
3954
|
+
notBondedTokens?: string;
|
|
3955
|
+
bondedTokens?: string;
|
|
3956
|
+
};
|
|
3957
|
+
} & {
|
|
3958
|
+
pool?: {
|
|
3959
|
+
notBondedTokens?: string;
|
|
3960
|
+
bondedTokens?: string;
|
|
3961
|
+
} & {
|
|
3962
|
+
notBondedTokens?: string;
|
|
3963
|
+
bondedTokens?: string;
|
|
3964
|
+
} & { [K_2 in Exclude<keyof I_1["pool"], keyof Pool>]: never; };
|
|
3965
|
+
} & { [K_3 in Exclude<keyof I_1, "pool">]: never; }>(object: I_1): QueryPoolResponse;
|
|
3966
|
+
};
|
|
3967
|
+
export declare const QueryParamsRequest: {
|
|
3968
|
+
encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3969
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest;
|
|
3970
|
+
fromJSON(_: any): QueryParamsRequest;
|
|
3971
|
+
toJSON(_: QueryParamsRequest): unknown;
|
|
3972
|
+
create<I extends {} & {} & { [K in Exclude<keyof I, never>]: never; }>(base?: I): QueryParamsRequest;
|
|
3973
|
+
fromPartial<I_1 extends {} & {} & { [K_1 in Exclude<keyof I_1, never>]: never; }>(_: I_1): QueryParamsRequest;
|
|
3974
|
+
};
|
|
3975
|
+
export declare const QueryParamsResponse: {
|
|
3976
|
+
encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
3977
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse;
|
|
3978
|
+
fromJSON(object: any): QueryParamsResponse;
|
|
3979
|
+
toJSON(message: QueryParamsResponse): unknown;
|
|
3980
|
+
create<I extends {
|
|
3981
|
+
params?: {
|
|
3982
|
+
unbondingTime?: {
|
|
3983
|
+
seconds?: number;
|
|
3984
|
+
nanos?: number;
|
|
3985
|
+
};
|
|
3986
|
+
maxValidators?: number;
|
|
3987
|
+
maxEntries?: number;
|
|
3988
|
+
historicalEntries?: number;
|
|
3989
|
+
bondDenom?: string;
|
|
3990
|
+
minCommissionRate?: string;
|
|
3991
|
+
};
|
|
3992
|
+
} & {
|
|
3993
|
+
params?: {
|
|
3994
|
+
unbondingTime?: {
|
|
3995
|
+
seconds?: number;
|
|
3996
|
+
nanos?: number;
|
|
3997
|
+
};
|
|
3998
|
+
maxValidators?: number;
|
|
3999
|
+
maxEntries?: number;
|
|
4000
|
+
historicalEntries?: number;
|
|
4001
|
+
bondDenom?: string;
|
|
4002
|
+
minCommissionRate?: string;
|
|
4003
|
+
} & {
|
|
4004
|
+
unbondingTime?: {
|
|
4005
|
+
seconds?: number;
|
|
4006
|
+
nanos?: number;
|
|
4007
|
+
} & {
|
|
4008
|
+
seconds?: number;
|
|
4009
|
+
nanos?: number;
|
|
4010
|
+
} & { [K in Exclude<keyof I["params"]["unbondingTime"], keyof import("../../../google/protobuf/duration").Duration>]: never; };
|
|
4011
|
+
maxValidators?: number;
|
|
4012
|
+
maxEntries?: number;
|
|
4013
|
+
historicalEntries?: number;
|
|
4014
|
+
bondDenom?: string;
|
|
4015
|
+
minCommissionRate?: string;
|
|
4016
|
+
} & { [K_1 in Exclude<keyof I["params"], keyof Params>]: never; };
|
|
4017
|
+
} & { [K_2 in Exclude<keyof I, "params">]: never; }>(base?: I): QueryParamsResponse;
|
|
4018
|
+
fromPartial<I_1 extends {
|
|
4019
|
+
params?: {
|
|
4020
|
+
unbondingTime?: {
|
|
4021
|
+
seconds?: number;
|
|
4022
|
+
nanos?: number;
|
|
4023
|
+
};
|
|
4024
|
+
maxValidators?: number;
|
|
4025
|
+
maxEntries?: number;
|
|
4026
|
+
historicalEntries?: number;
|
|
4027
|
+
bondDenom?: string;
|
|
4028
|
+
minCommissionRate?: string;
|
|
4029
|
+
};
|
|
4030
|
+
} & {
|
|
4031
|
+
params?: {
|
|
4032
|
+
unbondingTime?: {
|
|
4033
|
+
seconds?: number;
|
|
4034
|
+
nanos?: number;
|
|
4035
|
+
};
|
|
4036
|
+
maxValidators?: number;
|
|
4037
|
+
maxEntries?: number;
|
|
4038
|
+
historicalEntries?: number;
|
|
4039
|
+
bondDenom?: string;
|
|
4040
|
+
minCommissionRate?: string;
|
|
4041
|
+
} & {
|
|
4042
|
+
unbondingTime?: {
|
|
4043
|
+
seconds?: number;
|
|
4044
|
+
nanos?: number;
|
|
4045
|
+
} & {
|
|
4046
|
+
seconds?: number;
|
|
4047
|
+
nanos?: number;
|
|
4048
|
+
} & { [K_3 in Exclude<keyof I_1["params"]["unbondingTime"], keyof import("../../../google/protobuf/duration").Duration>]: never; };
|
|
4049
|
+
maxValidators?: number;
|
|
4050
|
+
maxEntries?: number;
|
|
4051
|
+
historicalEntries?: number;
|
|
4052
|
+
bondDenom?: string;
|
|
4053
|
+
minCommissionRate?: string;
|
|
4054
|
+
} & { [K_4 in Exclude<keyof I_1["params"], keyof Params>]: never; };
|
|
4055
|
+
} & { [K_5 in Exclude<keyof I_1, "params">]: never; }>(object: I_1): QueryParamsResponse;
|
|
4056
|
+
};
|
|
4057
|
+
/** Query defines the gRPC querier service. */
|
|
4058
|
+
export interface Query {
|
|
4059
|
+
/**
|
|
4060
|
+
* Validators queries all validators that match the given status.
|
|
4061
|
+
*
|
|
4062
|
+
* When called from another module, this query might consume a high amount of
|
|
4063
|
+
* gas if the pagination field is incorrectly set.
|
|
4064
|
+
*/
|
|
4065
|
+
Validators(request: QueryValidatorsRequest): Promise<QueryValidatorsResponse>;
|
|
4066
|
+
/** Validator queries validator info for given validator address. */
|
|
4067
|
+
Validator(request: QueryValidatorRequest): Promise<QueryValidatorResponse>;
|
|
4068
|
+
/**
|
|
4069
|
+
* ValidatorDelegations queries delegate info for given validator.
|
|
4070
|
+
*
|
|
4071
|
+
* When called from another module, this query might consume a high amount of
|
|
4072
|
+
* gas if the pagination field is incorrectly set.
|
|
4073
|
+
*/
|
|
4074
|
+
ValidatorDelegations(request: QueryValidatorDelegationsRequest): Promise<QueryValidatorDelegationsResponse>;
|
|
4075
|
+
/**
|
|
4076
|
+
* ValidatorUnbondingDelegations queries unbonding delegations of a validator.
|
|
4077
|
+
*
|
|
4078
|
+
* When called from another module, this query might consume a high amount of
|
|
4079
|
+
* gas if the pagination field is incorrectly set.
|
|
4080
|
+
*/
|
|
4081
|
+
ValidatorUnbondingDelegations(request: QueryValidatorUnbondingDelegationsRequest): Promise<QueryValidatorUnbondingDelegationsResponse>;
|
|
4082
|
+
/** Delegation queries delegate info for given validator delegator pair. */
|
|
4083
|
+
Delegation(request: QueryDelegationRequest): Promise<QueryDelegationResponse>;
|
|
4084
|
+
/**
|
|
4085
|
+
* UnbondingDelegation queries unbonding info for given validator delegator
|
|
4086
|
+
* pair.
|
|
4087
|
+
*/
|
|
4088
|
+
UnbondingDelegation(request: QueryUnbondingDelegationRequest): Promise<QueryUnbondingDelegationResponse>;
|
|
4089
|
+
/**
|
|
4090
|
+
* DelegatorDelegations queries all delegations of a given delegator address.
|
|
4091
|
+
*
|
|
4092
|
+
* When called from another module, this query might consume a high amount of
|
|
4093
|
+
* gas if the pagination field is incorrectly set.
|
|
4094
|
+
*/
|
|
4095
|
+
DelegatorDelegations(request: QueryDelegatorDelegationsRequest): Promise<QueryDelegatorDelegationsResponse>;
|
|
4096
|
+
/**
|
|
4097
|
+
* DelegatorUnbondingDelegations queries all unbonding delegations of a given
|
|
4098
|
+
* delegator address.
|
|
4099
|
+
*
|
|
4100
|
+
* When called from another module, this query might consume a high amount of
|
|
4101
|
+
* gas if the pagination field is incorrectly set.
|
|
4102
|
+
*/
|
|
4103
|
+
DelegatorUnbondingDelegations(request: QueryDelegatorUnbondingDelegationsRequest): Promise<QueryDelegatorUnbondingDelegationsResponse>;
|
|
4104
|
+
/**
|
|
4105
|
+
* Redelegations queries redelegations of given address.
|
|
4106
|
+
*
|
|
4107
|
+
* When called from another module, this query might consume a high amount of
|
|
4108
|
+
* gas if the pagination field is incorrectly set.
|
|
4109
|
+
*/
|
|
4110
|
+
Redelegations(request: QueryRedelegationsRequest): Promise<QueryRedelegationsResponse>;
|
|
4111
|
+
/**
|
|
4112
|
+
* DelegatorValidators queries all validators info for given delegator
|
|
4113
|
+
* address.
|
|
4114
|
+
*
|
|
4115
|
+
* When called from another module, this query might consume a high amount of
|
|
4116
|
+
* gas if the pagination field is incorrectly set.
|
|
4117
|
+
*/
|
|
4118
|
+
DelegatorValidators(request: QueryDelegatorValidatorsRequest): Promise<QueryDelegatorValidatorsResponse>;
|
|
4119
|
+
/**
|
|
4120
|
+
* DelegatorValidator queries validator info for given delegator validator
|
|
4121
|
+
* pair.
|
|
4122
|
+
*/
|
|
4123
|
+
DelegatorValidator(request: QueryDelegatorValidatorRequest): Promise<QueryDelegatorValidatorResponse>;
|
|
4124
|
+
/** HistoricalInfo queries the historical info for given height. */
|
|
4125
|
+
HistoricalInfo(request: QueryHistoricalInfoRequest): Promise<QueryHistoricalInfoResponse>;
|
|
4126
|
+
/** Pool queries the pool info. */
|
|
4127
|
+
Pool(request: QueryPoolRequest): Promise<QueryPoolResponse>;
|
|
4128
|
+
/** Parameters queries the staking parameters. */
|
|
4129
|
+
Params(request: QueryParamsRequest): Promise<QueryParamsResponse>;
|
|
4130
|
+
}
|
|
4131
|
+
export declare class QueryClientImpl implements Query {
|
|
4132
|
+
private readonly rpc;
|
|
4133
|
+
private readonly service;
|
|
4134
|
+
constructor(rpc: Rpc, opts?: {
|
|
4135
|
+
service?: string;
|
|
4136
|
+
});
|
|
4137
|
+
Validators(request: QueryValidatorsRequest): Promise<QueryValidatorsResponse>;
|
|
4138
|
+
Validator(request: QueryValidatorRequest): Promise<QueryValidatorResponse>;
|
|
4139
|
+
ValidatorDelegations(request: QueryValidatorDelegationsRequest): Promise<QueryValidatorDelegationsResponse>;
|
|
4140
|
+
ValidatorUnbondingDelegations(request: QueryValidatorUnbondingDelegationsRequest): Promise<QueryValidatorUnbondingDelegationsResponse>;
|
|
4141
|
+
Delegation(request: QueryDelegationRequest): Promise<QueryDelegationResponse>;
|
|
4142
|
+
UnbondingDelegation(request: QueryUnbondingDelegationRequest): Promise<QueryUnbondingDelegationResponse>;
|
|
4143
|
+
DelegatorDelegations(request: QueryDelegatorDelegationsRequest): Promise<QueryDelegatorDelegationsResponse>;
|
|
4144
|
+
DelegatorUnbondingDelegations(request: QueryDelegatorUnbondingDelegationsRequest): Promise<QueryDelegatorUnbondingDelegationsResponse>;
|
|
4145
|
+
Redelegations(request: QueryRedelegationsRequest): Promise<QueryRedelegationsResponse>;
|
|
4146
|
+
DelegatorValidators(request: QueryDelegatorValidatorsRequest): Promise<QueryDelegatorValidatorsResponse>;
|
|
4147
|
+
DelegatorValidator(request: QueryDelegatorValidatorRequest): Promise<QueryDelegatorValidatorResponse>;
|
|
4148
|
+
HistoricalInfo(request: QueryHistoricalInfoRequest): Promise<QueryHistoricalInfoResponse>;
|
|
4149
|
+
Pool(request: QueryPoolRequest): Promise<QueryPoolResponse>;
|
|
4150
|
+
Params(request: QueryParamsRequest): Promise<QueryParamsResponse>;
|
|
4151
|
+
}
|
|
4152
|
+
interface Rpc {
|
|
4153
|
+
request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
|
|
4154
|
+
}
|
|
4155
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
4156
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
4157
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
4158
|
+
} : Partial<T>;
|
|
4159
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
4160
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
4161
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
4162
|
+
} & {
|
|
4163
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
4164
|
+
};
|
|
4165
|
+
export {};
|