@ocap/types 1.17.5
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/LICENSE +13 -0
- package/README.md +13 -0
- package/index.d.ts +8 -0
- package/lib/enum_pb.d.ts +197 -0
- package/lib/rpc_pb.d.ts +1685 -0
- package/lib/service_pb.d.ts +7 -0
- package/lib/state_pb.d.ts +931 -0
- package/lib/trace-type_pb.d.ts +1401 -0
- package/lib/tx_pb.d.ts +1915 -0
- package/lib/type_pb.d.ts +1971 -0
- package/lib/vendor_pb.d.ts +546 -0
- package/package.json +43 -0
package/lib/type_pb.d.ts
ADDED
|
@@ -0,0 +1,1971 @@
|
|
|
1
|
+
// package: ocap
|
|
2
|
+
// file: type.proto
|
|
3
|
+
|
|
4
|
+
import * as jspb from "google-protobuf";
|
|
5
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
6
|
+
import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
|
|
7
|
+
import * as vendor_pb from "./vendor_pb";
|
|
8
|
+
import * as enum_pb from "./enum_pb";
|
|
9
|
+
|
|
10
|
+
export class BigUint extends jspb.Message {
|
|
11
|
+
getValue(): Uint8Array | string;
|
|
12
|
+
getValue_asU8(): Uint8Array;
|
|
13
|
+
getValue_asB64(): string;
|
|
14
|
+
setValue(value: Uint8Array | string): void;
|
|
15
|
+
|
|
16
|
+
serializeBinary(): Uint8Array;
|
|
17
|
+
toObject(includeInstance?: boolean): BigUint.AsObject;
|
|
18
|
+
static toObject(includeInstance: boolean, msg: BigUint): BigUint.AsObject;
|
|
19
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
20
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
21
|
+
static serializeBinaryToWriter(message: BigUint, writer: jspb.BinaryWriter): void;
|
|
22
|
+
static deserializeBinary(bytes: Uint8Array): BigUint;
|
|
23
|
+
static deserializeBinaryFromReader(message: BigUint, reader: jspb.BinaryReader): BigUint;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export namespace BigUint {
|
|
27
|
+
export type AsObject = {
|
|
28
|
+
value: Uint8Array | string,
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class BigSint extends jspb.Message {
|
|
33
|
+
getValue(): Uint8Array | string;
|
|
34
|
+
getValue_asU8(): Uint8Array;
|
|
35
|
+
getValue_asB64(): string;
|
|
36
|
+
setValue(value: Uint8Array | string): void;
|
|
37
|
+
|
|
38
|
+
getMinus(): boolean;
|
|
39
|
+
setMinus(value: boolean): void;
|
|
40
|
+
|
|
41
|
+
serializeBinary(): Uint8Array;
|
|
42
|
+
toObject(includeInstance?: boolean): BigSint.AsObject;
|
|
43
|
+
static toObject(includeInstance: boolean, msg: BigSint): BigSint.AsObject;
|
|
44
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
45
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
46
|
+
static serializeBinaryToWriter(message: BigSint, writer: jspb.BinaryWriter): void;
|
|
47
|
+
static deserializeBinary(bytes: Uint8Array): BigSint;
|
|
48
|
+
static deserializeBinaryFromReader(message: BigSint, reader: jspb.BinaryReader): BigSint;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export namespace BigSint {
|
|
52
|
+
export type AsObject = {
|
|
53
|
+
value: Uint8Array | string,
|
|
54
|
+
minus: boolean,
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export class TokenSymbol extends jspb.Message {
|
|
59
|
+
getAddress(): string;
|
|
60
|
+
setAddress(value: string): void;
|
|
61
|
+
|
|
62
|
+
getSymbol(): string;
|
|
63
|
+
setSymbol(value: string): void;
|
|
64
|
+
|
|
65
|
+
getDecimal(): number;
|
|
66
|
+
setDecimal(value: number): void;
|
|
67
|
+
|
|
68
|
+
getUnit(): string;
|
|
69
|
+
setUnit(value: string): void;
|
|
70
|
+
|
|
71
|
+
serializeBinary(): Uint8Array;
|
|
72
|
+
toObject(includeInstance?: boolean): TokenSymbol.AsObject;
|
|
73
|
+
static toObject(includeInstance: boolean, msg: TokenSymbol): TokenSymbol.AsObject;
|
|
74
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
75
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
76
|
+
static serializeBinaryToWriter(message: TokenSymbol, writer: jspb.BinaryWriter): void;
|
|
77
|
+
static deserializeBinary(bytes: Uint8Array): TokenSymbol;
|
|
78
|
+
static deserializeBinaryFromReader(message: TokenSymbol, reader: jspb.BinaryReader): TokenSymbol;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export namespace TokenSymbol {
|
|
82
|
+
export type AsObject = {
|
|
83
|
+
address: string,
|
|
84
|
+
symbol: string,
|
|
85
|
+
decimal: number,
|
|
86
|
+
unit: string,
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export class WalletType extends jspb.Message {
|
|
91
|
+
getPk(): enum_pb.KeyTypeMap[keyof enum_pb.KeyTypeMap];
|
|
92
|
+
setPk(value: enum_pb.KeyTypeMap[keyof enum_pb.KeyTypeMap]): void;
|
|
93
|
+
|
|
94
|
+
getHash(): enum_pb.HashTypeMap[keyof enum_pb.HashTypeMap];
|
|
95
|
+
setHash(value: enum_pb.HashTypeMap[keyof enum_pb.HashTypeMap]): void;
|
|
96
|
+
|
|
97
|
+
getAddress(): enum_pb.EncodingTypeMap[keyof enum_pb.EncodingTypeMap];
|
|
98
|
+
setAddress(value: enum_pb.EncodingTypeMap[keyof enum_pb.EncodingTypeMap]): void;
|
|
99
|
+
|
|
100
|
+
getRole(): enum_pb.RoleTypeMap[keyof enum_pb.RoleTypeMap];
|
|
101
|
+
setRole(value: enum_pb.RoleTypeMap[keyof enum_pb.RoleTypeMap]): void;
|
|
102
|
+
|
|
103
|
+
serializeBinary(): Uint8Array;
|
|
104
|
+
toObject(includeInstance?: boolean): WalletType.AsObject;
|
|
105
|
+
static toObject(includeInstance: boolean, msg: WalletType): WalletType.AsObject;
|
|
106
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
107
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
108
|
+
static serializeBinaryToWriter(message: WalletType, writer: jspb.BinaryWriter): void;
|
|
109
|
+
static deserializeBinary(bytes: Uint8Array): WalletType;
|
|
110
|
+
static deserializeBinaryFromReader(message: WalletType, reader: jspb.BinaryReader): WalletType;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export namespace WalletType {
|
|
114
|
+
export type AsObject = {
|
|
115
|
+
pk: enum_pb.KeyTypeMap[keyof enum_pb.KeyTypeMap],
|
|
116
|
+
hash: enum_pb.HashTypeMap[keyof enum_pb.HashTypeMap],
|
|
117
|
+
address: enum_pb.EncodingTypeMap[keyof enum_pb.EncodingTypeMap],
|
|
118
|
+
role: enum_pb.RoleTypeMap[keyof enum_pb.RoleTypeMap],
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export class WalletInfo extends jspb.Message {
|
|
123
|
+
hasType(): boolean;
|
|
124
|
+
clearType(): void;
|
|
125
|
+
getType(): WalletType | undefined;
|
|
126
|
+
setType(value?: WalletType): void;
|
|
127
|
+
|
|
128
|
+
getSk(): Uint8Array | string;
|
|
129
|
+
getSk_asU8(): Uint8Array;
|
|
130
|
+
getSk_asB64(): string;
|
|
131
|
+
setSk(value: Uint8Array | string): void;
|
|
132
|
+
|
|
133
|
+
getPk(): Uint8Array | string;
|
|
134
|
+
getPk_asU8(): Uint8Array;
|
|
135
|
+
getPk_asB64(): string;
|
|
136
|
+
setPk(value: Uint8Array | string): void;
|
|
137
|
+
|
|
138
|
+
getAddress(): string;
|
|
139
|
+
setAddress(value: string): void;
|
|
140
|
+
|
|
141
|
+
serializeBinary(): Uint8Array;
|
|
142
|
+
toObject(includeInstance?: boolean): WalletInfo.AsObject;
|
|
143
|
+
static toObject(includeInstance: boolean, msg: WalletInfo): WalletInfo.AsObject;
|
|
144
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
145
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
146
|
+
static serializeBinaryToWriter(message: WalletInfo, writer: jspb.BinaryWriter): void;
|
|
147
|
+
static deserializeBinary(bytes: Uint8Array): WalletInfo;
|
|
148
|
+
static deserializeBinaryFromReader(message: WalletInfo, reader: jspb.BinaryReader): WalletInfo;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export namespace WalletInfo {
|
|
152
|
+
export type AsObject = {
|
|
153
|
+
type?: WalletType.AsObject,
|
|
154
|
+
sk: Uint8Array | string,
|
|
155
|
+
pk: Uint8Array | string,
|
|
156
|
+
address: string,
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export class ChainInfo extends jspb.Message {
|
|
161
|
+
getId(): string;
|
|
162
|
+
setId(value: string): void;
|
|
163
|
+
|
|
164
|
+
getNetwork(): string;
|
|
165
|
+
setNetwork(value: string): void;
|
|
166
|
+
|
|
167
|
+
getMoniker(): string;
|
|
168
|
+
setMoniker(value: string): void;
|
|
169
|
+
|
|
170
|
+
getConsensusVersion(): string;
|
|
171
|
+
setConsensusVersion(value: string): void;
|
|
172
|
+
|
|
173
|
+
getSynced(): boolean;
|
|
174
|
+
setSynced(value: boolean): void;
|
|
175
|
+
|
|
176
|
+
getAppHash(): Uint8Array | string;
|
|
177
|
+
getAppHash_asU8(): Uint8Array;
|
|
178
|
+
getAppHash_asB64(): string;
|
|
179
|
+
setAppHash(value: Uint8Array | string): void;
|
|
180
|
+
|
|
181
|
+
getBlockHash(): Uint8Array | string;
|
|
182
|
+
getBlockHash_asU8(): Uint8Array;
|
|
183
|
+
getBlockHash_asB64(): string;
|
|
184
|
+
setBlockHash(value: Uint8Array | string): void;
|
|
185
|
+
|
|
186
|
+
getBlockHeight(): string;
|
|
187
|
+
setBlockHeight(value: string): void;
|
|
188
|
+
|
|
189
|
+
hasBlockTime(): boolean;
|
|
190
|
+
clearBlockTime(): void;
|
|
191
|
+
getBlockTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
192
|
+
setBlockTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
193
|
+
|
|
194
|
+
getAddress(): string;
|
|
195
|
+
setAddress(value: string): void;
|
|
196
|
+
|
|
197
|
+
getVotingPower(): string;
|
|
198
|
+
setVotingPower(value: string): void;
|
|
199
|
+
|
|
200
|
+
getTotalTxs(): string;
|
|
201
|
+
setTotalTxs(value: string): void;
|
|
202
|
+
|
|
203
|
+
getVersion(): string;
|
|
204
|
+
setVersion(value: string): void;
|
|
205
|
+
|
|
206
|
+
getForgeAppsVersionMap(): jspb.Map<string, string>;
|
|
207
|
+
clearForgeAppsVersionMap(): void;
|
|
208
|
+
clearSupportedTxsList(): void;
|
|
209
|
+
getSupportedTxsList(): Array<string>;
|
|
210
|
+
setSupportedTxsList(value: Array<string>): void;
|
|
211
|
+
addSupportedTxs(value: string, index?: number): string;
|
|
212
|
+
|
|
213
|
+
serializeBinary(): Uint8Array;
|
|
214
|
+
toObject(includeInstance?: boolean): ChainInfo.AsObject;
|
|
215
|
+
static toObject(includeInstance: boolean, msg: ChainInfo): ChainInfo.AsObject;
|
|
216
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
217
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
218
|
+
static serializeBinaryToWriter(message: ChainInfo, writer: jspb.BinaryWriter): void;
|
|
219
|
+
static deserializeBinary(bytes: Uint8Array): ChainInfo;
|
|
220
|
+
static deserializeBinaryFromReader(message: ChainInfo, reader: jspb.BinaryReader): ChainInfo;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export namespace ChainInfo {
|
|
224
|
+
export type AsObject = {
|
|
225
|
+
id: string,
|
|
226
|
+
network: string,
|
|
227
|
+
moniker: string,
|
|
228
|
+
consensusVersion: string,
|
|
229
|
+
synced: boolean,
|
|
230
|
+
appHash: Uint8Array | string,
|
|
231
|
+
blockHash: Uint8Array | string,
|
|
232
|
+
blockHeight: string,
|
|
233
|
+
blockTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
234
|
+
address: string,
|
|
235
|
+
votingPower: string,
|
|
236
|
+
totalTxs: string,
|
|
237
|
+
version: string,
|
|
238
|
+
forgeAppsVersionMap: Array<[string, string]>,
|
|
239
|
+
supportedTxsList: Array<string>,
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export class NodeInfo extends jspb.Message {
|
|
244
|
+
getId(): string;
|
|
245
|
+
setId(value: string): void;
|
|
246
|
+
|
|
247
|
+
getNetwork(): string;
|
|
248
|
+
setNetwork(value: string): void;
|
|
249
|
+
|
|
250
|
+
getMoniker(): string;
|
|
251
|
+
setMoniker(value: string): void;
|
|
252
|
+
|
|
253
|
+
getConsensusVersion(): string;
|
|
254
|
+
setConsensusVersion(value: string): void;
|
|
255
|
+
|
|
256
|
+
getSynced(): boolean;
|
|
257
|
+
setSynced(value: boolean): void;
|
|
258
|
+
|
|
259
|
+
getAppHash(): Uint8Array | string;
|
|
260
|
+
getAppHash_asU8(): Uint8Array;
|
|
261
|
+
getAppHash_asB64(): string;
|
|
262
|
+
setAppHash(value: Uint8Array | string): void;
|
|
263
|
+
|
|
264
|
+
getBlockHash(): Uint8Array | string;
|
|
265
|
+
getBlockHash_asU8(): Uint8Array;
|
|
266
|
+
getBlockHash_asB64(): string;
|
|
267
|
+
setBlockHash(value: Uint8Array | string): void;
|
|
268
|
+
|
|
269
|
+
getBlockHeight(): string;
|
|
270
|
+
setBlockHeight(value: string): void;
|
|
271
|
+
|
|
272
|
+
hasBlockTime(): boolean;
|
|
273
|
+
clearBlockTime(): void;
|
|
274
|
+
getBlockTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
275
|
+
setBlockTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
276
|
+
|
|
277
|
+
getAddress(): string;
|
|
278
|
+
setAddress(value: string): void;
|
|
279
|
+
|
|
280
|
+
getVotingPower(): string;
|
|
281
|
+
setVotingPower(value: string): void;
|
|
282
|
+
|
|
283
|
+
getTotalTxs(): string;
|
|
284
|
+
setTotalTxs(value: string): void;
|
|
285
|
+
|
|
286
|
+
getVersion(): string;
|
|
287
|
+
setVersion(value: string): void;
|
|
288
|
+
|
|
289
|
+
getForgeAppsVersionMap(): jspb.Map<string, string>;
|
|
290
|
+
clearForgeAppsVersionMap(): void;
|
|
291
|
+
clearSupportedTxsList(): void;
|
|
292
|
+
getSupportedTxsList(): Array<string>;
|
|
293
|
+
setSupportedTxsList(value: Array<string>): void;
|
|
294
|
+
addSupportedTxs(value: string, index?: number): string;
|
|
295
|
+
|
|
296
|
+
getIp(): string;
|
|
297
|
+
setIp(value: string): void;
|
|
298
|
+
|
|
299
|
+
hasGeoInfo(): boolean;
|
|
300
|
+
clearGeoInfo(): void;
|
|
301
|
+
getGeoInfo(): GeoInfo | undefined;
|
|
302
|
+
setGeoInfo(value?: GeoInfo): void;
|
|
303
|
+
|
|
304
|
+
getP2pAddress(): string;
|
|
305
|
+
setP2pAddress(value: string): void;
|
|
306
|
+
|
|
307
|
+
serializeBinary(): Uint8Array;
|
|
308
|
+
toObject(includeInstance?: boolean): NodeInfo.AsObject;
|
|
309
|
+
static toObject(includeInstance: boolean, msg: NodeInfo): NodeInfo.AsObject;
|
|
310
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
311
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
312
|
+
static serializeBinaryToWriter(message: NodeInfo, writer: jspb.BinaryWriter): void;
|
|
313
|
+
static deserializeBinary(bytes: Uint8Array): NodeInfo;
|
|
314
|
+
static deserializeBinaryFromReader(message: NodeInfo, reader: jspb.BinaryReader): NodeInfo;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
export namespace NodeInfo {
|
|
318
|
+
export type AsObject = {
|
|
319
|
+
id: string,
|
|
320
|
+
network: string,
|
|
321
|
+
moniker: string,
|
|
322
|
+
consensusVersion: string,
|
|
323
|
+
synced: boolean,
|
|
324
|
+
appHash: Uint8Array | string,
|
|
325
|
+
blockHash: Uint8Array | string,
|
|
326
|
+
blockHeight: string,
|
|
327
|
+
blockTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
328
|
+
address: string,
|
|
329
|
+
votingPower: string,
|
|
330
|
+
totalTxs: string,
|
|
331
|
+
version: string,
|
|
332
|
+
forgeAppsVersionMap: Array<[string, string]>,
|
|
333
|
+
supportedTxsList: Array<string>,
|
|
334
|
+
ip: string,
|
|
335
|
+
geoInfo?: GeoInfo.AsObject,
|
|
336
|
+
p2pAddress: string,
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
export class Validator extends jspb.Message {
|
|
341
|
+
getAddress(): string;
|
|
342
|
+
setAddress(value: string): void;
|
|
343
|
+
|
|
344
|
+
getPower(): string;
|
|
345
|
+
setPower(value: string): void;
|
|
346
|
+
|
|
347
|
+
serializeBinary(): Uint8Array;
|
|
348
|
+
toObject(includeInstance?: boolean): Validator.AsObject;
|
|
349
|
+
static toObject(includeInstance: boolean, msg: Validator): Validator.AsObject;
|
|
350
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
351
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
352
|
+
static serializeBinaryToWriter(message: Validator, writer: jspb.BinaryWriter): void;
|
|
353
|
+
static deserializeBinary(bytes: Uint8Array): Validator;
|
|
354
|
+
static deserializeBinaryFromReader(message: Validator, reader: jspb.BinaryReader): Validator;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export namespace Validator {
|
|
358
|
+
export type AsObject = {
|
|
359
|
+
address: string,
|
|
360
|
+
power: string,
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
export class ConsensusParams extends jspb.Message {
|
|
365
|
+
getMaxBytes(): string;
|
|
366
|
+
setMaxBytes(value: string): void;
|
|
367
|
+
|
|
368
|
+
getMaxGas(): string;
|
|
369
|
+
setMaxGas(value: string): void;
|
|
370
|
+
|
|
371
|
+
getMaxValidators(): number;
|
|
372
|
+
setMaxValidators(value: number): void;
|
|
373
|
+
|
|
374
|
+
getMaxCandidates(): number;
|
|
375
|
+
setMaxCandidates(value: number): void;
|
|
376
|
+
|
|
377
|
+
clearPubKeyTypesList(): void;
|
|
378
|
+
getPubKeyTypesList(): Array<string>;
|
|
379
|
+
setPubKeyTypesList(value: Array<string>): void;
|
|
380
|
+
addPubKeyTypes(value: string, index?: number): string;
|
|
381
|
+
|
|
382
|
+
clearValidatorsList(): void;
|
|
383
|
+
getValidatorsList(): Array<Validator>;
|
|
384
|
+
setValidatorsList(value: Array<Validator>): void;
|
|
385
|
+
addValidators(value?: Validator, index?: number): Validator;
|
|
386
|
+
|
|
387
|
+
getValidatorChanged(): boolean;
|
|
388
|
+
setValidatorChanged(value: boolean): void;
|
|
389
|
+
|
|
390
|
+
getParamChanged(): boolean;
|
|
391
|
+
setParamChanged(value: boolean): void;
|
|
392
|
+
|
|
393
|
+
serializeBinary(): Uint8Array;
|
|
394
|
+
toObject(includeInstance?: boolean): ConsensusParams.AsObject;
|
|
395
|
+
static toObject(includeInstance: boolean, msg: ConsensusParams): ConsensusParams.AsObject;
|
|
396
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
397
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
398
|
+
static serializeBinaryToWriter(message: ConsensusParams, writer: jspb.BinaryWriter): void;
|
|
399
|
+
static deserializeBinary(bytes: Uint8Array): ConsensusParams;
|
|
400
|
+
static deserializeBinaryFromReader(message: ConsensusParams, reader: jspb.BinaryReader): ConsensusParams;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export namespace ConsensusParams {
|
|
404
|
+
export type AsObject = {
|
|
405
|
+
maxBytes: string,
|
|
406
|
+
maxGas: string,
|
|
407
|
+
maxValidators: number,
|
|
408
|
+
maxCandidates: number,
|
|
409
|
+
pubKeyTypesList: Array<string>,
|
|
410
|
+
validatorsList: Array<Validator.AsObject>,
|
|
411
|
+
validatorChanged: boolean,
|
|
412
|
+
paramChanged: boolean,
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export class UpgradeTask extends jspb.Message {
|
|
417
|
+
getType(): enum_pb.UpgradeTypeMap[keyof enum_pb.UpgradeTypeMap];
|
|
418
|
+
setType(value: enum_pb.UpgradeTypeMap[keyof enum_pb.UpgradeTypeMap]): void;
|
|
419
|
+
|
|
420
|
+
getDataHash(): string;
|
|
421
|
+
setDataHash(value: string): void;
|
|
422
|
+
|
|
423
|
+
clearActionsList(): void;
|
|
424
|
+
getActionsList(): Array<enum_pb.UpgradeActionMap[keyof enum_pb.UpgradeActionMap]>;
|
|
425
|
+
setActionsList(value: Array<enum_pb.UpgradeActionMap[keyof enum_pb.UpgradeActionMap]>): void;
|
|
426
|
+
addActions(value: enum_pb.UpgradeActionMap[keyof enum_pb.UpgradeActionMap], index?: number): enum_pb.UpgradeActionMap[keyof enum_pb.UpgradeActionMap];
|
|
427
|
+
|
|
428
|
+
serializeBinary(): Uint8Array;
|
|
429
|
+
toObject(includeInstance?: boolean): UpgradeTask.AsObject;
|
|
430
|
+
static toObject(includeInstance: boolean, msg: UpgradeTask): UpgradeTask.AsObject;
|
|
431
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
432
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
433
|
+
static serializeBinaryToWriter(message: UpgradeTask, writer: jspb.BinaryWriter): void;
|
|
434
|
+
static deserializeBinary(bytes: Uint8Array): UpgradeTask;
|
|
435
|
+
static deserializeBinaryFromReader(message: UpgradeTask, reader: jspb.BinaryReader): UpgradeTask;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export namespace UpgradeTask {
|
|
439
|
+
export type AsObject = {
|
|
440
|
+
type: enum_pb.UpgradeTypeMap[keyof enum_pb.UpgradeTypeMap],
|
|
441
|
+
dataHash: string,
|
|
442
|
+
actionsList: Array<enum_pb.UpgradeActionMap[keyof enum_pb.UpgradeActionMap]>,
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
export class UpgradeTasks extends jspb.Message {
|
|
447
|
+
clearItemList(): void;
|
|
448
|
+
getItemList(): Array<UpgradeTask>;
|
|
449
|
+
setItemList(value: Array<UpgradeTask>): void;
|
|
450
|
+
addItem(value?: UpgradeTask, index?: number): UpgradeTask;
|
|
451
|
+
|
|
452
|
+
serializeBinary(): Uint8Array;
|
|
453
|
+
toObject(includeInstance?: boolean): UpgradeTasks.AsObject;
|
|
454
|
+
static toObject(includeInstance: boolean, msg: UpgradeTasks): UpgradeTasks.AsObject;
|
|
455
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
456
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
457
|
+
static serializeBinaryToWriter(message: UpgradeTasks, writer: jspb.BinaryWriter): void;
|
|
458
|
+
static deserializeBinary(bytes: Uint8Array): UpgradeTasks;
|
|
459
|
+
static deserializeBinaryFromReader(message: UpgradeTasks, reader: jspb.BinaryReader): UpgradeTasks;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export namespace UpgradeTasks {
|
|
463
|
+
export type AsObject = {
|
|
464
|
+
itemList: Array<UpgradeTask.AsObject>,
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
export class Multisig extends jspb.Message {
|
|
469
|
+
getSigner(): string;
|
|
470
|
+
setSigner(value: string): void;
|
|
471
|
+
|
|
472
|
+
getPk(): Uint8Array | string;
|
|
473
|
+
getPk_asU8(): Uint8Array;
|
|
474
|
+
getPk_asB64(): string;
|
|
475
|
+
setPk(value: Uint8Array | string): void;
|
|
476
|
+
|
|
477
|
+
getSignature(): Uint8Array | string;
|
|
478
|
+
getSignature_asU8(): Uint8Array;
|
|
479
|
+
getSignature_asB64(): string;
|
|
480
|
+
setSignature(value: Uint8Array | string): void;
|
|
481
|
+
|
|
482
|
+
getDelegator(): string;
|
|
483
|
+
setDelegator(value: string): void;
|
|
484
|
+
|
|
485
|
+
hasData(): boolean;
|
|
486
|
+
clearData(): void;
|
|
487
|
+
getData(): google_protobuf_any_pb.Any | undefined;
|
|
488
|
+
setData(value?: google_protobuf_any_pb.Any): void;
|
|
489
|
+
|
|
490
|
+
serializeBinary(): Uint8Array;
|
|
491
|
+
toObject(includeInstance?: boolean): Multisig.AsObject;
|
|
492
|
+
static toObject(includeInstance: boolean, msg: Multisig): Multisig.AsObject;
|
|
493
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
494
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
495
|
+
static serializeBinaryToWriter(message: Multisig, writer: jspb.BinaryWriter): void;
|
|
496
|
+
static deserializeBinary(bytes: Uint8Array): Multisig;
|
|
497
|
+
static deserializeBinaryFromReader(message: Multisig, reader: jspb.BinaryReader): Multisig;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
export namespace Multisig {
|
|
501
|
+
export type AsObject = {
|
|
502
|
+
signer: string,
|
|
503
|
+
pk: Uint8Array | string,
|
|
504
|
+
signature: Uint8Array | string,
|
|
505
|
+
delegator: string,
|
|
506
|
+
data?: google_protobuf_any_pb.Any.AsObject,
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
export class Transaction extends jspb.Message {
|
|
511
|
+
getFrom(): string;
|
|
512
|
+
setFrom(value: string): void;
|
|
513
|
+
|
|
514
|
+
getNonce(): number;
|
|
515
|
+
setNonce(value: number): void;
|
|
516
|
+
|
|
517
|
+
getChainId(): string;
|
|
518
|
+
setChainId(value: string): void;
|
|
519
|
+
|
|
520
|
+
getPk(): Uint8Array | string;
|
|
521
|
+
getPk_asU8(): Uint8Array;
|
|
522
|
+
getPk_asB64(): string;
|
|
523
|
+
setPk(value: Uint8Array | string): void;
|
|
524
|
+
|
|
525
|
+
getGas(): number;
|
|
526
|
+
setGas(value: number): void;
|
|
527
|
+
|
|
528
|
+
getDelegator(): string;
|
|
529
|
+
setDelegator(value: string): void;
|
|
530
|
+
|
|
531
|
+
getSignature(): Uint8Array | string;
|
|
532
|
+
getSignature_asU8(): Uint8Array;
|
|
533
|
+
getSignature_asB64(): string;
|
|
534
|
+
setSignature(value: Uint8Array | string): void;
|
|
535
|
+
|
|
536
|
+
clearSignaturesList(): void;
|
|
537
|
+
getSignaturesList(): Array<Multisig>;
|
|
538
|
+
setSignaturesList(value: Array<Multisig>): void;
|
|
539
|
+
addSignatures(value?: Multisig, index?: number): Multisig;
|
|
540
|
+
|
|
541
|
+
hasItx(): boolean;
|
|
542
|
+
clearItx(): void;
|
|
543
|
+
getItx(): google_protobuf_any_pb.Any | undefined;
|
|
544
|
+
setItx(value?: google_protobuf_any_pb.Any): void;
|
|
545
|
+
|
|
546
|
+
clearReceiptsList(): void;
|
|
547
|
+
getReceiptsList(): Array<TransactionReceipt>;
|
|
548
|
+
setReceiptsList(value: Array<TransactionReceipt>): void;
|
|
549
|
+
addReceipts(value?: TransactionReceipt, index?: number): TransactionReceipt;
|
|
550
|
+
|
|
551
|
+
getServiceFee(): string;
|
|
552
|
+
setServiceFee(value: string): void;
|
|
553
|
+
|
|
554
|
+
serializeBinary(): Uint8Array;
|
|
555
|
+
toObject(includeInstance?: boolean): Transaction.AsObject;
|
|
556
|
+
static toObject(includeInstance: boolean, msg: Transaction): Transaction.AsObject;
|
|
557
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
558
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
559
|
+
static serializeBinaryToWriter(message: Transaction, writer: jspb.BinaryWriter): void;
|
|
560
|
+
static deserializeBinary(bytes: Uint8Array): Transaction;
|
|
561
|
+
static deserializeBinaryFromReader(message: Transaction, reader: jspb.BinaryReader): Transaction;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
export namespace Transaction {
|
|
565
|
+
export type AsObject = {
|
|
566
|
+
from: string,
|
|
567
|
+
nonce: number,
|
|
568
|
+
chainId: string,
|
|
569
|
+
pk: Uint8Array | string,
|
|
570
|
+
gas: number,
|
|
571
|
+
delegator: string,
|
|
572
|
+
signature: Uint8Array | string,
|
|
573
|
+
signaturesList: Array<Multisig.AsObject>,
|
|
574
|
+
itx?: google_protobuf_any_pb.Any.AsObject,
|
|
575
|
+
receiptsList: Array<TransactionReceipt.AsObject>,
|
|
576
|
+
serviceFee: string,
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
export class TransactionInfo extends jspb.Message {
|
|
581
|
+
hasTx(): boolean;
|
|
582
|
+
clearTx(): void;
|
|
583
|
+
getTx(): Transaction | undefined;
|
|
584
|
+
setTx(value?: Transaction): void;
|
|
585
|
+
|
|
586
|
+
getHeight(): string;
|
|
587
|
+
setHeight(value: string): void;
|
|
588
|
+
|
|
589
|
+
getIndex(): number;
|
|
590
|
+
setIndex(value: number): void;
|
|
591
|
+
|
|
592
|
+
getHash(): string;
|
|
593
|
+
setHash(value: string): void;
|
|
594
|
+
|
|
595
|
+
clearTagsList(): void;
|
|
596
|
+
getTagsList(): Array<vendor_pb.KVPair>;
|
|
597
|
+
setTagsList(value: Array<vendor_pb.KVPair>): void;
|
|
598
|
+
addTags(value?: vendor_pb.KVPair, index?: number): vendor_pb.KVPair;
|
|
599
|
+
|
|
600
|
+
getCode(): enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap];
|
|
601
|
+
setCode(value: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap]): void;
|
|
602
|
+
|
|
603
|
+
hasTime(): boolean;
|
|
604
|
+
clearTime(): void;
|
|
605
|
+
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
606
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
607
|
+
|
|
608
|
+
clearReceiptsList(): void;
|
|
609
|
+
getReceiptsList(): Array<TransactionReceipt>;
|
|
610
|
+
setReceiptsList(value: Array<TransactionReceipt>): void;
|
|
611
|
+
addReceipts(value?: TransactionReceipt, index?: number): TransactionReceipt;
|
|
612
|
+
|
|
613
|
+
getSender(): string;
|
|
614
|
+
setSender(value: string): void;
|
|
615
|
+
|
|
616
|
+
getReceiver(): string;
|
|
617
|
+
setReceiver(value: string): void;
|
|
618
|
+
|
|
619
|
+
clearTokenSymbolsList(): void;
|
|
620
|
+
getTokenSymbolsList(): Array<TokenSymbol>;
|
|
621
|
+
setTokenSymbolsList(value: Array<TokenSymbol>): void;
|
|
622
|
+
addTokenSymbols(value?: TokenSymbol, index?: number): TokenSymbol;
|
|
623
|
+
|
|
624
|
+
serializeBinary(): Uint8Array;
|
|
625
|
+
toObject(includeInstance?: boolean): TransactionInfo.AsObject;
|
|
626
|
+
static toObject(includeInstance: boolean, msg: TransactionInfo): TransactionInfo.AsObject;
|
|
627
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
628
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
629
|
+
static serializeBinaryToWriter(message: TransactionInfo, writer: jspb.BinaryWriter): void;
|
|
630
|
+
static deserializeBinary(bytes: Uint8Array): TransactionInfo;
|
|
631
|
+
static deserializeBinaryFromReader(message: TransactionInfo, reader: jspb.BinaryReader): TransactionInfo;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
export namespace TransactionInfo {
|
|
635
|
+
export type AsObject = {
|
|
636
|
+
tx?: Transaction.AsObject,
|
|
637
|
+
height: string,
|
|
638
|
+
index: number,
|
|
639
|
+
hash: string,
|
|
640
|
+
tagsList: Array<vendor_pb.KVPair.AsObject>,
|
|
641
|
+
code: enum_pb.StatusCodeMap[keyof enum_pb.StatusCodeMap],
|
|
642
|
+
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
643
|
+
receiptsList: Array<TransactionReceipt.AsObject>,
|
|
644
|
+
sender: string,
|
|
645
|
+
receiver: string,
|
|
646
|
+
tokenSymbolsList: Array<TokenSymbol.AsObject>,
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
export class TransactionReceipt extends jspb.Message {
|
|
651
|
+
getAddress(): string;
|
|
652
|
+
setAddress(value: string): void;
|
|
653
|
+
|
|
654
|
+
clearChangesList(): void;
|
|
655
|
+
getChangesList(): Array<ReceiptChange>;
|
|
656
|
+
setChangesList(value: Array<ReceiptChange>): void;
|
|
657
|
+
addChanges(value?: ReceiptChange, index?: number): ReceiptChange;
|
|
658
|
+
|
|
659
|
+
serializeBinary(): Uint8Array;
|
|
660
|
+
toObject(includeInstance?: boolean): TransactionReceipt.AsObject;
|
|
661
|
+
static toObject(includeInstance: boolean, msg: TransactionReceipt): TransactionReceipt.AsObject;
|
|
662
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
663
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
664
|
+
static serializeBinaryToWriter(message: TransactionReceipt, writer: jspb.BinaryWriter): void;
|
|
665
|
+
static deserializeBinary(bytes: Uint8Array): TransactionReceipt;
|
|
666
|
+
static deserializeBinaryFromReader(message: TransactionReceipt, reader: jspb.BinaryReader): TransactionReceipt;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
export namespace TransactionReceipt {
|
|
670
|
+
export type AsObject = {
|
|
671
|
+
address: string,
|
|
672
|
+
changesList: Array<ReceiptChange.AsObject>,
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
export class ReceiptChange extends jspb.Message {
|
|
677
|
+
getTarget(): string;
|
|
678
|
+
setTarget(value: string): void;
|
|
679
|
+
|
|
680
|
+
getAction(): string;
|
|
681
|
+
setAction(value: string): void;
|
|
682
|
+
|
|
683
|
+
getValue(): string;
|
|
684
|
+
setValue(value: string): void;
|
|
685
|
+
|
|
686
|
+
serializeBinary(): Uint8Array;
|
|
687
|
+
toObject(includeInstance?: boolean): ReceiptChange.AsObject;
|
|
688
|
+
static toObject(includeInstance: boolean, msg: ReceiptChange): ReceiptChange.AsObject;
|
|
689
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
690
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
691
|
+
static serializeBinaryToWriter(message: ReceiptChange, writer: jspb.BinaryWriter): void;
|
|
692
|
+
static deserializeBinary(bytes: Uint8Array): ReceiptChange;
|
|
693
|
+
static deserializeBinaryFromReader(message: ReceiptChange, reader: jspb.BinaryReader): ReceiptChange;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
export namespace ReceiptChange {
|
|
697
|
+
export type AsObject = {
|
|
698
|
+
target: string,
|
|
699
|
+
action: string,
|
|
700
|
+
value: string,
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
export class TokenInput extends jspb.Message {
|
|
705
|
+
getAddress(): string;
|
|
706
|
+
setAddress(value: string): void;
|
|
707
|
+
|
|
708
|
+
getValue(): string;
|
|
709
|
+
setValue(value: string): void;
|
|
710
|
+
|
|
711
|
+
serializeBinary(): Uint8Array;
|
|
712
|
+
toObject(includeInstance?: boolean): TokenInput.AsObject;
|
|
713
|
+
static toObject(includeInstance: boolean, msg: TokenInput): TokenInput.AsObject;
|
|
714
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
715
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
716
|
+
static serializeBinaryToWriter(message: TokenInput, writer: jspb.BinaryWriter): void;
|
|
717
|
+
static deserializeBinary(bytes: Uint8Array): TokenInput;
|
|
718
|
+
static deserializeBinaryFromReader(message: TokenInput, reader: jspb.BinaryReader): TokenInput;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
export namespace TokenInput {
|
|
722
|
+
export type AsObject = {
|
|
723
|
+
address: string,
|
|
724
|
+
value: string,
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
export class TransactionInput extends jspb.Message {
|
|
729
|
+
getOwner(): string;
|
|
730
|
+
setOwner(value: string): void;
|
|
731
|
+
|
|
732
|
+
clearTokensList(): void;
|
|
733
|
+
getTokensList(): Array<TokenInput>;
|
|
734
|
+
setTokensList(value: Array<TokenInput>): void;
|
|
735
|
+
addTokens(value?: TokenInput, index?: number): TokenInput;
|
|
736
|
+
|
|
737
|
+
clearAssetsList(): void;
|
|
738
|
+
getAssetsList(): Array<string>;
|
|
739
|
+
setAssetsList(value: Array<string>): void;
|
|
740
|
+
addAssets(value: string, index?: number): string;
|
|
741
|
+
|
|
742
|
+
serializeBinary(): Uint8Array;
|
|
743
|
+
toObject(includeInstance?: boolean): TransactionInput.AsObject;
|
|
744
|
+
static toObject(includeInstance: boolean, msg: TransactionInput): TransactionInput.AsObject;
|
|
745
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
746
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
747
|
+
static serializeBinaryToWriter(message: TransactionInput, writer: jspb.BinaryWriter): void;
|
|
748
|
+
static deserializeBinary(bytes: Uint8Array): TransactionInput;
|
|
749
|
+
static deserializeBinaryFromReader(message: TransactionInput, reader: jspb.BinaryReader): TransactionInput;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
export namespace TransactionInput {
|
|
753
|
+
export type AsObject = {
|
|
754
|
+
owner: string,
|
|
755
|
+
tokensList: Array<TokenInput.AsObject>,
|
|
756
|
+
assetsList: Array<string>,
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
export class VariableInput extends jspb.Message {
|
|
761
|
+
getName(): string;
|
|
762
|
+
setName(value: string): void;
|
|
763
|
+
|
|
764
|
+
getValue(): string;
|
|
765
|
+
setValue(value: string): void;
|
|
766
|
+
|
|
767
|
+
getDescription(): string;
|
|
768
|
+
setDescription(value: string): void;
|
|
769
|
+
|
|
770
|
+
getRequired(): boolean;
|
|
771
|
+
setRequired(value: boolean): void;
|
|
772
|
+
|
|
773
|
+
serializeBinary(): Uint8Array;
|
|
774
|
+
toObject(includeInstance?: boolean): VariableInput.AsObject;
|
|
775
|
+
static toObject(includeInstance: boolean, msg: VariableInput): VariableInput.AsObject;
|
|
776
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
777
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
778
|
+
static serializeBinaryToWriter(message: VariableInput, writer: jspb.BinaryWriter): void;
|
|
779
|
+
static deserializeBinary(bytes: Uint8Array): VariableInput;
|
|
780
|
+
static deserializeBinaryFromReader(message: VariableInput, reader: jspb.BinaryReader): VariableInput;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
export namespace VariableInput {
|
|
784
|
+
export type AsObject = {
|
|
785
|
+
name: string,
|
|
786
|
+
value: string,
|
|
787
|
+
description: string,
|
|
788
|
+
required: boolean,
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
export class DelegateConfig extends jspb.Message {
|
|
793
|
+
getDeltaInterval(): number;
|
|
794
|
+
setDeltaInterval(value: number): void;
|
|
795
|
+
|
|
796
|
+
clearTypeUrlsList(): void;
|
|
797
|
+
getTypeUrlsList(): Array<string>;
|
|
798
|
+
setTypeUrlsList(value: Array<string>): void;
|
|
799
|
+
addTypeUrls(value: string, index?: number): string;
|
|
800
|
+
|
|
801
|
+
serializeBinary(): Uint8Array;
|
|
802
|
+
toObject(includeInstance?: boolean): DelegateConfig.AsObject;
|
|
803
|
+
static toObject(includeInstance: boolean, msg: DelegateConfig): DelegateConfig.AsObject;
|
|
804
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
805
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
806
|
+
static serializeBinaryToWriter(message: DelegateConfig, writer: jspb.BinaryWriter): void;
|
|
807
|
+
static deserializeBinary(bytes: Uint8Array): DelegateConfig;
|
|
808
|
+
static deserializeBinaryFromReader(message: DelegateConfig, reader: jspb.BinaryReader): DelegateConfig;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
export namespace DelegateConfig {
|
|
812
|
+
export type AsObject = {
|
|
813
|
+
deltaInterval: number,
|
|
814
|
+
typeUrlsList: Array<string>,
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
export class TxFeeConfig extends jspb.Message {
|
|
819
|
+
getTypeUrl(): string;
|
|
820
|
+
setTypeUrl(value: string): void;
|
|
821
|
+
|
|
822
|
+
getFee(): string;
|
|
823
|
+
setFee(value: string): void;
|
|
824
|
+
|
|
825
|
+
serializeBinary(): Uint8Array;
|
|
826
|
+
toObject(includeInstance?: boolean): TxFeeConfig.AsObject;
|
|
827
|
+
static toObject(includeInstance: boolean, msg: TxFeeConfig): TxFeeConfig.AsObject;
|
|
828
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
829
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
830
|
+
static serializeBinaryToWriter(message: TxFeeConfig, writer: jspb.BinaryWriter): void;
|
|
831
|
+
static deserializeBinary(bytes: Uint8Array): TxFeeConfig;
|
|
832
|
+
static deserializeBinaryFromReader(message: TxFeeConfig, reader: jspb.BinaryReader): TxFeeConfig;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
export namespace TxFeeConfig {
|
|
836
|
+
export type AsObject = {
|
|
837
|
+
typeUrl: string,
|
|
838
|
+
fee: string,
|
|
839
|
+
}
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
export class TransactionConfig extends jspb.Message {
|
|
843
|
+
getMaxAssetSize(): number;
|
|
844
|
+
setMaxAssetSize(value: number): void;
|
|
845
|
+
|
|
846
|
+
getMaxListSize(): number;
|
|
847
|
+
setMaxListSize(value: number): void;
|
|
848
|
+
|
|
849
|
+
getMaxMultisig(): number;
|
|
850
|
+
setMaxMultisig(value: number): void;
|
|
851
|
+
|
|
852
|
+
hasDelegate(): boolean;
|
|
853
|
+
clearDelegate(): void;
|
|
854
|
+
getDelegate(): DelegateConfig | undefined;
|
|
855
|
+
setDelegate(value?: DelegateConfig): void;
|
|
856
|
+
|
|
857
|
+
clearTxFeeList(): void;
|
|
858
|
+
getTxFeeList(): Array<TxFeeConfig>;
|
|
859
|
+
setTxFeeList(value: Array<TxFeeConfig>): void;
|
|
860
|
+
addTxFee(value?: TxFeeConfig, index?: number): TxFeeConfig;
|
|
861
|
+
|
|
862
|
+
serializeBinary(): Uint8Array;
|
|
863
|
+
toObject(includeInstance?: boolean): TransactionConfig.AsObject;
|
|
864
|
+
static toObject(includeInstance: boolean, msg: TransactionConfig): TransactionConfig.AsObject;
|
|
865
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
866
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
867
|
+
static serializeBinaryToWriter(message: TransactionConfig, writer: jspb.BinaryWriter): void;
|
|
868
|
+
static deserializeBinary(bytes: Uint8Array): TransactionConfig;
|
|
869
|
+
static deserializeBinaryFromReader(message: TransactionConfig, reader: jspb.BinaryReader): TransactionConfig;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
export namespace TransactionConfig {
|
|
873
|
+
export type AsObject = {
|
|
874
|
+
maxAssetSize: number,
|
|
875
|
+
maxListSize: number,
|
|
876
|
+
maxMultisig: number,
|
|
877
|
+
delegate?: DelegateConfig.AsObject,
|
|
878
|
+
txFeeList: Array<TxFeeConfig.AsObject>,
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
export class BlockInfo extends jspb.Message {
|
|
883
|
+
getHeight(): string;
|
|
884
|
+
setHeight(value: string): void;
|
|
885
|
+
|
|
886
|
+
getNumTxs(): number;
|
|
887
|
+
setNumTxs(value: number): void;
|
|
888
|
+
|
|
889
|
+
hasTime(): boolean;
|
|
890
|
+
clearTime(): void;
|
|
891
|
+
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
892
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
893
|
+
|
|
894
|
+
getAppHash(): Uint8Array | string;
|
|
895
|
+
getAppHash_asU8(): Uint8Array;
|
|
896
|
+
getAppHash_asB64(): string;
|
|
897
|
+
setAppHash(value: Uint8Array | string): void;
|
|
898
|
+
|
|
899
|
+
getProposer(): Uint8Array | string;
|
|
900
|
+
getProposer_asU8(): Uint8Array;
|
|
901
|
+
getProposer_asB64(): string;
|
|
902
|
+
setProposer(value: Uint8Array | string): void;
|
|
903
|
+
|
|
904
|
+
clearTxsList(): void;
|
|
905
|
+
getTxsList(): Array<TransactionInfo>;
|
|
906
|
+
setTxsList(value: Array<TransactionInfo>): void;
|
|
907
|
+
addTxs(value?: TransactionInfo, index?: number): TransactionInfo;
|
|
908
|
+
|
|
909
|
+
getTotalTxs(): string;
|
|
910
|
+
setTotalTxs(value: string): void;
|
|
911
|
+
|
|
912
|
+
clearInvalidTxsList(): void;
|
|
913
|
+
getInvalidTxsList(): Array<TransactionInfo>;
|
|
914
|
+
setInvalidTxsList(value: Array<TransactionInfo>): void;
|
|
915
|
+
addInvalidTxs(value?: TransactionInfo, index?: number): TransactionInfo;
|
|
916
|
+
|
|
917
|
+
clearTxsHashesList(): void;
|
|
918
|
+
getTxsHashesList(): Array<string>;
|
|
919
|
+
setTxsHashesList(value: Array<string>): void;
|
|
920
|
+
addTxsHashes(value: string, index?: number): string;
|
|
921
|
+
|
|
922
|
+
clearInvalidTxsHashesList(): void;
|
|
923
|
+
getInvalidTxsHashesList(): Array<string>;
|
|
924
|
+
setInvalidTxsHashesList(value: Array<string>): void;
|
|
925
|
+
addInvalidTxsHashes(value: string, index?: number): string;
|
|
926
|
+
|
|
927
|
+
getConsensusHash(): Uint8Array | string;
|
|
928
|
+
getConsensusHash_asU8(): Uint8Array;
|
|
929
|
+
getConsensusHash_asB64(): string;
|
|
930
|
+
setConsensusHash(value: Uint8Array | string): void;
|
|
931
|
+
|
|
932
|
+
getDataHash(): Uint8Array | string;
|
|
933
|
+
getDataHash_asU8(): Uint8Array;
|
|
934
|
+
getDataHash_asB64(): string;
|
|
935
|
+
setDataHash(value: Uint8Array | string): void;
|
|
936
|
+
|
|
937
|
+
getEvidenceHash(): Uint8Array | string;
|
|
938
|
+
getEvidenceHash_asU8(): Uint8Array;
|
|
939
|
+
getEvidenceHash_asB64(): string;
|
|
940
|
+
setEvidenceHash(value: Uint8Array | string): void;
|
|
941
|
+
|
|
942
|
+
getLastCommitHash(): Uint8Array | string;
|
|
943
|
+
getLastCommitHash_asU8(): Uint8Array;
|
|
944
|
+
getLastCommitHash_asB64(): string;
|
|
945
|
+
setLastCommitHash(value: Uint8Array | string): void;
|
|
946
|
+
|
|
947
|
+
getLastResultsHash(): Uint8Array | string;
|
|
948
|
+
getLastResultsHash_asU8(): Uint8Array;
|
|
949
|
+
getLastResultsHash_asB64(): string;
|
|
950
|
+
setLastResultsHash(value: Uint8Array | string): void;
|
|
951
|
+
|
|
952
|
+
getNextValidatorsHash(): Uint8Array | string;
|
|
953
|
+
getNextValidatorsHash_asU8(): Uint8Array;
|
|
954
|
+
getNextValidatorsHash_asB64(): string;
|
|
955
|
+
setNextValidatorsHash(value: Uint8Array | string): void;
|
|
956
|
+
|
|
957
|
+
getValidatorsHash(): Uint8Array | string;
|
|
958
|
+
getValidatorsHash_asU8(): Uint8Array;
|
|
959
|
+
getValidatorsHash_asB64(): string;
|
|
960
|
+
setValidatorsHash(value: Uint8Array | string): void;
|
|
961
|
+
|
|
962
|
+
hasVersion(): boolean;
|
|
963
|
+
clearVersion(): void;
|
|
964
|
+
getVersion(): vendor_pb.Version | undefined;
|
|
965
|
+
setVersion(value?: vendor_pb.Version): void;
|
|
966
|
+
|
|
967
|
+
hasLastBlockId(): boolean;
|
|
968
|
+
clearLastBlockId(): void;
|
|
969
|
+
getLastBlockId(): vendor_pb.BlockID | undefined;
|
|
970
|
+
setLastBlockId(value?: vendor_pb.BlockID): void;
|
|
971
|
+
|
|
972
|
+
serializeBinary(): Uint8Array;
|
|
973
|
+
toObject(includeInstance?: boolean): BlockInfo.AsObject;
|
|
974
|
+
static toObject(includeInstance: boolean, msg: BlockInfo): BlockInfo.AsObject;
|
|
975
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
976
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
977
|
+
static serializeBinaryToWriter(message: BlockInfo, writer: jspb.BinaryWriter): void;
|
|
978
|
+
static deserializeBinary(bytes: Uint8Array): BlockInfo;
|
|
979
|
+
static deserializeBinaryFromReader(message: BlockInfo, reader: jspb.BinaryReader): BlockInfo;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
export namespace BlockInfo {
|
|
983
|
+
export type AsObject = {
|
|
984
|
+
height: string,
|
|
985
|
+
numTxs: number,
|
|
986
|
+
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
987
|
+
appHash: Uint8Array | string,
|
|
988
|
+
proposer: Uint8Array | string,
|
|
989
|
+
txsList: Array<TransactionInfo.AsObject>,
|
|
990
|
+
totalTxs: string,
|
|
991
|
+
invalidTxsList: Array<TransactionInfo.AsObject>,
|
|
992
|
+
txsHashesList: Array<string>,
|
|
993
|
+
invalidTxsHashesList: Array<string>,
|
|
994
|
+
consensusHash: Uint8Array | string,
|
|
995
|
+
dataHash: Uint8Array | string,
|
|
996
|
+
evidenceHash: Uint8Array | string,
|
|
997
|
+
lastCommitHash: Uint8Array | string,
|
|
998
|
+
lastResultsHash: Uint8Array | string,
|
|
999
|
+
nextValidatorsHash: Uint8Array | string,
|
|
1000
|
+
validatorsHash: Uint8Array | string,
|
|
1001
|
+
version?: vendor_pb.Version.AsObject,
|
|
1002
|
+
lastBlockId?: vendor_pb.BlockID.AsObject,
|
|
1003
|
+
}
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
export class BlockInfoSimple extends jspb.Message {
|
|
1007
|
+
getHeight(): string;
|
|
1008
|
+
setHeight(value: string): void;
|
|
1009
|
+
|
|
1010
|
+
getNumTxs(): number;
|
|
1011
|
+
setNumTxs(value: number): void;
|
|
1012
|
+
|
|
1013
|
+
hasTime(): boolean;
|
|
1014
|
+
clearTime(): void;
|
|
1015
|
+
getTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1016
|
+
setTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
1017
|
+
|
|
1018
|
+
getAppHash(): Uint8Array | string;
|
|
1019
|
+
getAppHash_asU8(): Uint8Array;
|
|
1020
|
+
getAppHash_asB64(): string;
|
|
1021
|
+
setAppHash(value: Uint8Array | string): void;
|
|
1022
|
+
|
|
1023
|
+
getProposer(): Uint8Array | string;
|
|
1024
|
+
getProposer_asU8(): Uint8Array;
|
|
1025
|
+
getProposer_asB64(): string;
|
|
1026
|
+
setProposer(value: Uint8Array | string): void;
|
|
1027
|
+
|
|
1028
|
+
getTotalTxs(): string;
|
|
1029
|
+
setTotalTxs(value: string): void;
|
|
1030
|
+
|
|
1031
|
+
clearTxsHashesList(): void;
|
|
1032
|
+
getTxsHashesList(): Array<string>;
|
|
1033
|
+
setTxsHashesList(value: Array<string>): void;
|
|
1034
|
+
addTxsHashes(value: string, index?: number): string;
|
|
1035
|
+
|
|
1036
|
+
clearInvalidTxsHashesList(): void;
|
|
1037
|
+
getInvalidTxsHashesList(): Array<string>;
|
|
1038
|
+
setInvalidTxsHashesList(value: Array<string>): void;
|
|
1039
|
+
addInvalidTxsHashes(value: string, index?: number): string;
|
|
1040
|
+
|
|
1041
|
+
getConsensusHash(): Uint8Array | string;
|
|
1042
|
+
getConsensusHash_asU8(): Uint8Array;
|
|
1043
|
+
getConsensusHash_asB64(): string;
|
|
1044
|
+
setConsensusHash(value: Uint8Array | string): void;
|
|
1045
|
+
|
|
1046
|
+
getDataHash(): Uint8Array | string;
|
|
1047
|
+
getDataHash_asU8(): Uint8Array;
|
|
1048
|
+
getDataHash_asB64(): string;
|
|
1049
|
+
setDataHash(value: Uint8Array | string): void;
|
|
1050
|
+
|
|
1051
|
+
getEvidenceHash(): Uint8Array | string;
|
|
1052
|
+
getEvidenceHash_asU8(): Uint8Array;
|
|
1053
|
+
getEvidenceHash_asB64(): string;
|
|
1054
|
+
setEvidenceHash(value: Uint8Array | string): void;
|
|
1055
|
+
|
|
1056
|
+
getLastCommitHash(): Uint8Array | string;
|
|
1057
|
+
getLastCommitHash_asU8(): Uint8Array;
|
|
1058
|
+
getLastCommitHash_asB64(): string;
|
|
1059
|
+
setLastCommitHash(value: Uint8Array | string): void;
|
|
1060
|
+
|
|
1061
|
+
getLastResultsHash(): Uint8Array | string;
|
|
1062
|
+
getLastResultsHash_asU8(): Uint8Array;
|
|
1063
|
+
getLastResultsHash_asB64(): string;
|
|
1064
|
+
setLastResultsHash(value: Uint8Array | string): void;
|
|
1065
|
+
|
|
1066
|
+
getNextValidatorsHash(): Uint8Array | string;
|
|
1067
|
+
getNextValidatorsHash_asU8(): Uint8Array;
|
|
1068
|
+
getNextValidatorsHash_asB64(): string;
|
|
1069
|
+
setNextValidatorsHash(value: Uint8Array | string): void;
|
|
1070
|
+
|
|
1071
|
+
getValidatorsHash(): Uint8Array | string;
|
|
1072
|
+
getValidatorsHash_asU8(): Uint8Array;
|
|
1073
|
+
getValidatorsHash_asB64(): string;
|
|
1074
|
+
setValidatorsHash(value: Uint8Array | string): void;
|
|
1075
|
+
|
|
1076
|
+
hasVersion(): boolean;
|
|
1077
|
+
clearVersion(): void;
|
|
1078
|
+
getVersion(): vendor_pb.Version | undefined;
|
|
1079
|
+
setVersion(value?: vendor_pb.Version): void;
|
|
1080
|
+
|
|
1081
|
+
hasLastBlockId(): boolean;
|
|
1082
|
+
clearLastBlockId(): void;
|
|
1083
|
+
getLastBlockId(): vendor_pb.BlockID | undefined;
|
|
1084
|
+
setLastBlockId(value?: vendor_pb.BlockID): void;
|
|
1085
|
+
|
|
1086
|
+
serializeBinary(): Uint8Array;
|
|
1087
|
+
toObject(includeInstance?: boolean): BlockInfoSimple.AsObject;
|
|
1088
|
+
static toObject(includeInstance: boolean, msg: BlockInfoSimple): BlockInfoSimple.AsObject;
|
|
1089
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1090
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1091
|
+
static serializeBinaryToWriter(message: BlockInfoSimple, writer: jspb.BinaryWriter): void;
|
|
1092
|
+
static deserializeBinary(bytes: Uint8Array): BlockInfoSimple;
|
|
1093
|
+
static deserializeBinaryFromReader(message: BlockInfoSimple, reader: jspb.BinaryReader): BlockInfoSimple;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
export namespace BlockInfoSimple {
|
|
1097
|
+
export type AsObject = {
|
|
1098
|
+
height: string,
|
|
1099
|
+
numTxs: number,
|
|
1100
|
+
time?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1101
|
+
appHash: Uint8Array | string,
|
|
1102
|
+
proposer: Uint8Array | string,
|
|
1103
|
+
totalTxs: string,
|
|
1104
|
+
txsHashesList: Array<string>,
|
|
1105
|
+
invalidTxsHashesList: Array<string>,
|
|
1106
|
+
consensusHash: Uint8Array | string,
|
|
1107
|
+
dataHash: Uint8Array | string,
|
|
1108
|
+
evidenceHash: Uint8Array | string,
|
|
1109
|
+
lastCommitHash: Uint8Array | string,
|
|
1110
|
+
lastResultsHash: Uint8Array | string,
|
|
1111
|
+
nextValidatorsHash: Uint8Array | string,
|
|
1112
|
+
validatorsHash: Uint8Array | string,
|
|
1113
|
+
version?: vendor_pb.Version.AsObject,
|
|
1114
|
+
lastBlockId?: vendor_pb.BlockID.AsObject,
|
|
1115
|
+
}
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
export class StateContext extends jspb.Message {
|
|
1119
|
+
getGenesisTx(): string;
|
|
1120
|
+
setGenesisTx(value: string): void;
|
|
1121
|
+
|
|
1122
|
+
getRenaissanceTx(): string;
|
|
1123
|
+
setRenaissanceTx(value: string): void;
|
|
1124
|
+
|
|
1125
|
+
hasGenesisTime(): boolean;
|
|
1126
|
+
clearGenesisTime(): void;
|
|
1127
|
+
getGenesisTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1128
|
+
setGenesisTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
1129
|
+
|
|
1130
|
+
hasRenaissanceTime(): boolean;
|
|
1131
|
+
clearRenaissanceTime(): void;
|
|
1132
|
+
getRenaissanceTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
1133
|
+
setRenaissanceTime(value?: google_protobuf_timestamp_pb.Timestamp): void;
|
|
1134
|
+
|
|
1135
|
+
serializeBinary(): Uint8Array;
|
|
1136
|
+
toObject(includeInstance?: boolean): StateContext.AsObject;
|
|
1137
|
+
static toObject(includeInstance: boolean, msg: StateContext): StateContext.AsObject;
|
|
1138
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1139
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1140
|
+
static serializeBinaryToWriter(message: StateContext, writer: jspb.BinaryWriter): void;
|
|
1141
|
+
static deserializeBinary(bytes: Uint8Array): StateContext;
|
|
1142
|
+
static deserializeBinaryFromReader(message: StateContext, reader: jspb.BinaryReader): StateContext;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
export namespace StateContext {
|
|
1146
|
+
export type AsObject = {
|
|
1147
|
+
genesisTx: string,
|
|
1148
|
+
renaissanceTx: string,
|
|
1149
|
+
genesisTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1150
|
+
renaissanceTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
export class StakeSummary extends jspb.Message {
|
|
1155
|
+
hasTotalStakes(): boolean;
|
|
1156
|
+
clearTotalStakes(): void;
|
|
1157
|
+
getTotalStakes(): BigUint | undefined;
|
|
1158
|
+
setTotalStakes(value?: BigUint): void;
|
|
1159
|
+
|
|
1160
|
+
hasTotalUnstakes(): boolean;
|
|
1161
|
+
clearTotalUnstakes(): void;
|
|
1162
|
+
getTotalUnstakes(): BigUint | undefined;
|
|
1163
|
+
setTotalUnstakes(value?: BigUint): void;
|
|
1164
|
+
|
|
1165
|
+
hasContext(): boolean;
|
|
1166
|
+
clearContext(): void;
|
|
1167
|
+
getContext(): StateContext | undefined;
|
|
1168
|
+
setContext(value?: StateContext): void;
|
|
1169
|
+
|
|
1170
|
+
serializeBinary(): Uint8Array;
|
|
1171
|
+
toObject(includeInstance?: boolean): StakeSummary.AsObject;
|
|
1172
|
+
static toObject(includeInstance: boolean, msg: StakeSummary): StakeSummary.AsObject;
|
|
1173
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1174
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1175
|
+
static serializeBinaryToWriter(message: StakeSummary, writer: jspb.BinaryWriter): void;
|
|
1176
|
+
static deserializeBinary(bytes: Uint8Array): StakeSummary;
|
|
1177
|
+
static deserializeBinaryFromReader(message: StakeSummary, reader: jspb.BinaryReader): StakeSummary;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
export namespace StakeSummary {
|
|
1181
|
+
export type AsObject = {
|
|
1182
|
+
totalStakes?: BigUint.AsObject,
|
|
1183
|
+
totalUnstakes?: BigUint.AsObject,
|
|
1184
|
+
context?: StateContext.AsObject,
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
export class UnconfirmedTxs extends jspb.Message {
|
|
1189
|
+
getNTxs(): number;
|
|
1190
|
+
setNTxs(value: number): void;
|
|
1191
|
+
|
|
1192
|
+
clearTxsList(): void;
|
|
1193
|
+
getTxsList(): Array<Transaction>;
|
|
1194
|
+
setTxsList(value: Array<Transaction>): void;
|
|
1195
|
+
addTxs(value?: Transaction, index?: number): Transaction;
|
|
1196
|
+
|
|
1197
|
+
serializeBinary(): Uint8Array;
|
|
1198
|
+
toObject(includeInstance?: boolean): UnconfirmedTxs.AsObject;
|
|
1199
|
+
static toObject(includeInstance: boolean, msg: UnconfirmedTxs): UnconfirmedTxs.AsObject;
|
|
1200
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1201
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1202
|
+
static serializeBinaryToWriter(message: UnconfirmedTxs, writer: jspb.BinaryWriter): void;
|
|
1203
|
+
static deserializeBinary(bytes: Uint8Array): UnconfirmedTxs;
|
|
1204
|
+
static deserializeBinaryFromReader(message: UnconfirmedTxs, reader: jspb.BinaryReader): UnconfirmedTxs;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
export namespace UnconfirmedTxs {
|
|
1208
|
+
export type AsObject = {
|
|
1209
|
+
nTxs: number,
|
|
1210
|
+
txsList: Array<Transaction.AsObject>,
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
export class NetInfo extends jspb.Message {
|
|
1215
|
+
getListening(): boolean;
|
|
1216
|
+
setListening(value: boolean): void;
|
|
1217
|
+
|
|
1218
|
+
clearListenersList(): void;
|
|
1219
|
+
getListenersList(): Array<string>;
|
|
1220
|
+
setListenersList(value: Array<string>): void;
|
|
1221
|
+
addListeners(value: string, index?: number): string;
|
|
1222
|
+
|
|
1223
|
+
getNPeers(): number;
|
|
1224
|
+
setNPeers(value: number): void;
|
|
1225
|
+
|
|
1226
|
+
clearPeersList(): void;
|
|
1227
|
+
getPeersList(): Array<PeerInfo>;
|
|
1228
|
+
setPeersList(value: Array<PeerInfo>): void;
|
|
1229
|
+
addPeers(value?: PeerInfo, index?: number): PeerInfo;
|
|
1230
|
+
|
|
1231
|
+
serializeBinary(): Uint8Array;
|
|
1232
|
+
toObject(includeInstance?: boolean): NetInfo.AsObject;
|
|
1233
|
+
static toObject(includeInstance: boolean, msg: NetInfo): NetInfo.AsObject;
|
|
1234
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1235
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1236
|
+
static serializeBinaryToWriter(message: NetInfo, writer: jspb.BinaryWriter): void;
|
|
1237
|
+
static deserializeBinary(bytes: Uint8Array): NetInfo;
|
|
1238
|
+
static deserializeBinaryFromReader(message: NetInfo, reader: jspb.BinaryReader): NetInfo;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
export namespace NetInfo {
|
|
1242
|
+
export type AsObject = {
|
|
1243
|
+
listening: boolean,
|
|
1244
|
+
listenersList: Array<string>,
|
|
1245
|
+
nPeers: number,
|
|
1246
|
+
peersList: Array<PeerInfo.AsObject>,
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
export class GeoInfo extends jspb.Message {
|
|
1251
|
+
getCity(): string;
|
|
1252
|
+
setCity(value: string): void;
|
|
1253
|
+
|
|
1254
|
+
getCountry(): string;
|
|
1255
|
+
setCountry(value: string): void;
|
|
1256
|
+
|
|
1257
|
+
getLatitude(): number;
|
|
1258
|
+
setLatitude(value: number): void;
|
|
1259
|
+
|
|
1260
|
+
getLongitude(): number;
|
|
1261
|
+
setLongitude(value: number): void;
|
|
1262
|
+
|
|
1263
|
+
serializeBinary(): Uint8Array;
|
|
1264
|
+
toObject(includeInstance?: boolean): GeoInfo.AsObject;
|
|
1265
|
+
static toObject(includeInstance: boolean, msg: GeoInfo): GeoInfo.AsObject;
|
|
1266
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1267
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1268
|
+
static serializeBinaryToWriter(message: GeoInfo, writer: jspb.BinaryWriter): void;
|
|
1269
|
+
static deserializeBinary(bytes: Uint8Array): GeoInfo;
|
|
1270
|
+
static deserializeBinaryFromReader(message: GeoInfo, reader: jspb.BinaryReader): GeoInfo;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
export namespace GeoInfo {
|
|
1274
|
+
export type AsObject = {
|
|
1275
|
+
city: string,
|
|
1276
|
+
country: string,
|
|
1277
|
+
latitude: number,
|
|
1278
|
+
longitude: number,
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
export class PeerInfo extends jspb.Message {
|
|
1283
|
+
getId(): string;
|
|
1284
|
+
setId(value: string): void;
|
|
1285
|
+
|
|
1286
|
+
getNetwork(): string;
|
|
1287
|
+
setNetwork(value: string): void;
|
|
1288
|
+
|
|
1289
|
+
getConsensusVersion(): string;
|
|
1290
|
+
setConsensusVersion(value: string): void;
|
|
1291
|
+
|
|
1292
|
+
getMoniker(): string;
|
|
1293
|
+
setMoniker(value: string): void;
|
|
1294
|
+
|
|
1295
|
+
getIp(): string;
|
|
1296
|
+
setIp(value: string): void;
|
|
1297
|
+
|
|
1298
|
+
hasGeoInfo(): boolean;
|
|
1299
|
+
clearGeoInfo(): void;
|
|
1300
|
+
getGeoInfo(): GeoInfo | undefined;
|
|
1301
|
+
setGeoInfo(value?: GeoInfo): void;
|
|
1302
|
+
|
|
1303
|
+
serializeBinary(): Uint8Array;
|
|
1304
|
+
toObject(includeInstance?: boolean): PeerInfo.AsObject;
|
|
1305
|
+
static toObject(includeInstance: boolean, msg: PeerInfo): PeerInfo.AsObject;
|
|
1306
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1307
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1308
|
+
static serializeBinaryToWriter(message: PeerInfo, writer: jspb.BinaryWriter): void;
|
|
1309
|
+
static deserializeBinary(bytes: Uint8Array): PeerInfo;
|
|
1310
|
+
static deserializeBinaryFromReader(message: PeerInfo, reader: jspb.BinaryReader): PeerInfo;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
export namespace PeerInfo {
|
|
1314
|
+
export type AsObject = {
|
|
1315
|
+
id: string,
|
|
1316
|
+
network: string,
|
|
1317
|
+
consensusVersion: string,
|
|
1318
|
+
moniker: string,
|
|
1319
|
+
ip: string,
|
|
1320
|
+
geoInfo?: GeoInfo.AsObject,
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
export class ValidatorsInfo extends jspb.Message {
|
|
1325
|
+
getBlockHeight(): string;
|
|
1326
|
+
setBlockHeight(value: string): void;
|
|
1327
|
+
|
|
1328
|
+
clearValidatorsList(): void;
|
|
1329
|
+
getValidatorsList(): Array<ValidatorInfo>;
|
|
1330
|
+
setValidatorsList(value: Array<ValidatorInfo>): void;
|
|
1331
|
+
addValidators(value?: ValidatorInfo, index?: number): ValidatorInfo;
|
|
1332
|
+
|
|
1333
|
+
serializeBinary(): Uint8Array;
|
|
1334
|
+
toObject(includeInstance?: boolean): ValidatorsInfo.AsObject;
|
|
1335
|
+
static toObject(includeInstance: boolean, msg: ValidatorsInfo): ValidatorsInfo.AsObject;
|
|
1336
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1337
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1338
|
+
static serializeBinaryToWriter(message: ValidatorsInfo, writer: jspb.BinaryWriter): void;
|
|
1339
|
+
static deserializeBinary(bytes: Uint8Array): ValidatorsInfo;
|
|
1340
|
+
static deserializeBinaryFromReader(message: ValidatorsInfo, reader: jspb.BinaryReader): ValidatorsInfo;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
export namespace ValidatorsInfo {
|
|
1344
|
+
export type AsObject = {
|
|
1345
|
+
blockHeight: string,
|
|
1346
|
+
validatorsList: Array<ValidatorInfo.AsObject>,
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
export class ValidatorInfo extends jspb.Message {
|
|
1351
|
+
getAddress(): string;
|
|
1352
|
+
setAddress(value: string): void;
|
|
1353
|
+
|
|
1354
|
+
hasPubKey(): boolean;
|
|
1355
|
+
clearPubKey(): void;
|
|
1356
|
+
getPubKey(): vendor_pb.PubKey | undefined;
|
|
1357
|
+
setPubKey(value?: vendor_pb.PubKey): void;
|
|
1358
|
+
|
|
1359
|
+
getVotingPower(): string;
|
|
1360
|
+
setVotingPower(value: string): void;
|
|
1361
|
+
|
|
1362
|
+
getProposerPriority(): string;
|
|
1363
|
+
setProposerPriority(value: string): void;
|
|
1364
|
+
|
|
1365
|
+
getName(): string;
|
|
1366
|
+
setName(value: string): void;
|
|
1367
|
+
|
|
1368
|
+
hasGeoInfo(): boolean;
|
|
1369
|
+
clearGeoInfo(): void;
|
|
1370
|
+
getGeoInfo(): GeoInfo | undefined;
|
|
1371
|
+
setGeoInfo(value?: GeoInfo): void;
|
|
1372
|
+
|
|
1373
|
+
serializeBinary(): Uint8Array;
|
|
1374
|
+
toObject(includeInstance?: boolean): ValidatorInfo.AsObject;
|
|
1375
|
+
static toObject(includeInstance: boolean, msg: ValidatorInfo): ValidatorInfo.AsObject;
|
|
1376
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1377
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1378
|
+
static serializeBinaryToWriter(message: ValidatorInfo, writer: jspb.BinaryWriter): void;
|
|
1379
|
+
static deserializeBinary(bytes: Uint8Array): ValidatorInfo;
|
|
1380
|
+
static deserializeBinaryFromReader(message: ValidatorInfo, reader: jspb.BinaryReader): ValidatorInfo;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
export namespace ValidatorInfo {
|
|
1384
|
+
export type AsObject = {
|
|
1385
|
+
address: string,
|
|
1386
|
+
pubKey?: vendor_pb.PubKey.AsObject,
|
|
1387
|
+
votingPower: string,
|
|
1388
|
+
proposerPriority: string,
|
|
1389
|
+
name: string,
|
|
1390
|
+
geoInfo?: GeoInfo.AsObject,
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
export class ForgeToken extends jspb.Message {
|
|
1395
|
+
getName(): string;
|
|
1396
|
+
setName(value: string): void;
|
|
1397
|
+
|
|
1398
|
+
getSymbol(): string;
|
|
1399
|
+
setSymbol(value: string): void;
|
|
1400
|
+
|
|
1401
|
+
getUnit(): string;
|
|
1402
|
+
setUnit(value: string): void;
|
|
1403
|
+
|
|
1404
|
+
getDescription(): string;
|
|
1405
|
+
setDescription(value: string): void;
|
|
1406
|
+
|
|
1407
|
+
getIcon(): Uint8Array | string;
|
|
1408
|
+
getIcon_asU8(): Uint8Array;
|
|
1409
|
+
getIcon_asB64(): string;
|
|
1410
|
+
setIcon(value: Uint8Array | string): void;
|
|
1411
|
+
|
|
1412
|
+
getDecimal(): number;
|
|
1413
|
+
setDecimal(value: number): void;
|
|
1414
|
+
|
|
1415
|
+
getInitialSupply(): string;
|
|
1416
|
+
setInitialSupply(value: string): void;
|
|
1417
|
+
|
|
1418
|
+
getTotalSupply(): string;
|
|
1419
|
+
setTotalSupply(value: string): void;
|
|
1420
|
+
|
|
1421
|
+
getInflationRate(): number;
|
|
1422
|
+
setInflationRate(value: number): void;
|
|
1423
|
+
|
|
1424
|
+
getAddress(): string;
|
|
1425
|
+
setAddress(value: string): void;
|
|
1426
|
+
|
|
1427
|
+
serializeBinary(): Uint8Array;
|
|
1428
|
+
toObject(includeInstance?: boolean): ForgeToken.AsObject;
|
|
1429
|
+
static toObject(includeInstance: boolean, msg: ForgeToken): ForgeToken.AsObject;
|
|
1430
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1431
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1432
|
+
static serializeBinaryToWriter(message: ForgeToken, writer: jspb.BinaryWriter): void;
|
|
1433
|
+
static deserializeBinary(bytes: Uint8Array): ForgeToken;
|
|
1434
|
+
static deserializeBinaryFromReader(message: ForgeToken, reader: jspb.BinaryReader): ForgeToken;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
export namespace ForgeToken {
|
|
1438
|
+
export type AsObject = {
|
|
1439
|
+
name: string,
|
|
1440
|
+
symbol: string,
|
|
1441
|
+
unit: string,
|
|
1442
|
+
description: string,
|
|
1443
|
+
icon: Uint8Array | string,
|
|
1444
|
+
decimal: number,
|
|
1445
|
+
initialSupply: string,
|
|
1446
|
+
totalSupply: string,
|
|
1447
|
+
inflationRate: number,
|
|
1448
|
+
address: string,
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
export class UpgradeInfo extends jspb.Message {
|
|
1453
|
+
getHeight(): string;
|
|
1454
|
+
setHeight(value: string): void;
|
|
1455
|
+
|
|
1456
|
+
getVersion(): string;
|
|
1457
|
+
setVersion(value: string): void;
|
|
1458
|
+
|
|
1459
|
+
serializeBinary(): Uint8Array;
|
|
1460
|
+
toObject(includeInstance?: boolean): UpgradeInfo.AsObject;
|
|
1461
|
+
static toObject(includeInstance: boolean, msg: UpgradeInfo): UpgradeInfo.AsObject;
|
|
1462
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1463
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1464
|
+
static serializeBinaryToWriter(message: UpgradeInfo, writer: jspb.BinaryWriter): void;
|
|
1465
|
+
static deserializeBinary(bytes: Uint8Array): UpgradeInfo;
|
|
1466
|
+
static deserializeBinaryFromReader(message: UpgradeInfo, reader: jspb.BinaryReader): UpgradeInfo;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
export namespace UpgradeInfo {
|
|
1470
|
+
export type AsObject = {
|
|
1471
|
+
height: string,
|
|
1472
|
+
version: string,
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
export class WithdrawItem extends jspb.Message {
|
|
1477
|
+
getHash(): string;
|
|
1478
|
+
setHash(value: string): void;
|
|
1479
|
+
|
|
1480
|
+
hasValue(): boolean;
|
|
1481
|
+
clearValue(): void;
|
|
1482
|
+
getValue(): BigUint | undefined;
|
|
1483
|
+
setValue(value?: BigUint): void;
|
|
1484
|
+
|
|
1485
|
+
serializeBinary(): Uint8Array;
|
|
1486
|
+
toObject(includeInstance?: boolean): WithdrawItem.AsObject;
|
|
1487
|
+
static toObject(includeInstance: boolean, msg: WithdrawItem): WithdrawItem.AsObject;
|
|
1488
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1489
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1490
|
+
static serializeBinaryToWriter(message: WithdrawItem, writer: jspb.BinaryWriter): void;
|
|
1491
|
+
static deserializeBinary(bytes: Uint8Array): WithdrawItem;
|
|
1492
|
+
static deserializeBinaryFromReader(message: WithdrawItem, reader: jspb.BinaryReader): WithdrawItem;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
export namespace WithdrawItem {
|
|
1496
|
+
export type AsObject = {
|
|
1497
|
+
hash: string,
|
|
1498
|
+
value?: BigUint.AsObject,
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
export class AccountConfig extends jspb.Message {
|
|
1503
|
+
getAddress(): string;
|
|
1504
|
+
setAddress(value: string): void;
|
|
1505
|
+
|
|
1506
|
+
getPk(): Uint8Array | string;
|
|
1507
|
+
getPk_asU8(): Uint8Array;
|
|
1508
|
+
getPk_asB64(): string;
|
|
1509
|
+
setPk(value: Uint8Array | string): void;
|
|
1510
|
+
|
|
1511
|
+
hasBalance(): boolean;
|
|
1512
|
+
clearBalance(): void;
|
|
1513
|
+
getBalance(): BigUint | undefined;
|
|
1514
|
+
setBalance(value?: BigUint): void;
|
|
1515
|
+
|
|
1516
|
+
serializeBinary(): Uint8Array;
|
|
1517
|
+
toObject(includeInstance?: boolean): AccountConfig.AsObject;
|
|
1518
|
+
static toObject(includeInstance: boolean, msg: AccountConfig): AccountConfig.AsObject;
|
|
1519
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1520
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1521
|
+
static serializeBinaryToWriter(message: AccountConfig, writer: jspb.BinaryWriter): void;
|
|
1522
|
+
static deserializeBinary(bytes: Uint8Array): AccountConfig;
|
|
1523
|
+
static deserializeBinaryFromReader(message: AccountConfig, reader: jspb.BinaryReader): AccountConfig;
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
export namespace AccountConfig {
|
|
1527
|
+
export type AsObject = {
|
|
1528
|
+
address: string,
|
|
1529
|
+
pk: Uint8Array | string,
|
|
1530
|
+
balance?: BigUint.AsObject,
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export class Evidence extends jspb.Message {
|
|
1535
|
+
getHash(): string;
|
|
1536
|
+
setHash(value: string): void;
|
|
1537
|
+
|
|
1538
|
+
serializeBinary(): Uint8Array;
|
|
1539
|
+
toObject(includeInstance?: boolean): Evidence.AsObject;
|
|
1540
|
+
static toObject(includeInstance: boolean, msg: Evidence): Evidence.AsObject;
|
|
1541
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1542
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1543
|
+
static serializeBinaryToWriter(message: Evidence, writer: jspb.BinaryWriter): void;
|
|
1544
|
+
static deserializeBinary(bytes: Uint8Array): Evidence;
|
|
1545
|
+
static deserializeBinaryFromReader(message: Evidence, reader: jspb.BinaryReader): Evidence;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
export namespace Evidence {
|
|
1549
|
+
export type AsObject = {
|
|
1550
|
+
hash: string,
|
|
1551
|
+
}
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
export class NFTEndpoint extends jspb.Message {
|
|
1555
|
+
getId(): string;
|
|
1556
|
+
setId(value: string): void;
|
|
1557
|
+
|
|
1558
|
+
getScope(): string;
|
|
1559
|
+
setScope(value: string): void;
|
|
1560
|
+
|
|
1561
|
+
serializeBinary(): Uint8Array;
|
|
1562
|
+
toObject(includeInstance?: boolean): NFTEndpoint.AsObject;
|
|
1563
|
+
static toObject(includeInstance: boolean, msg: NFTEndpoint): NFTEndpoint.AsObject;
|
|
1564
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1565
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1566
|
+
static serializeBinaryToWriter(message: NFTEndpoint, writer: jspb.BinaryWriter): void;
|
|
1567
|
+
static deserializeBinary(bytes: Uint8Array): NFTEndpoint;
|
|
1568
|
+
static deserializeBinaryFromReader(message: NFTEndpoint, reader: jspb.BinaryReader): NFTEndpoint;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
export namespace NFTEndpoint {
|
|
1572
|
+
export type AsObject = {
|
|
1573
|
+
id: string,
|
|
1574
|
+
scope: string,
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
export class NFTDisplay extends jspb.Message {
|
|
1579
|
+
getType(): string;
|
|
1580
|
+
setType(value: string): void;
|
|
1581
|
+
|
|
1582
|
+
getContent(): string;
|
|
1583
|
+
setContent(value: string): void;
|
|
1584
|
+
|
|
1585
|
+
serializeBinary(): Uint8Array;
|
|
1586
|
+
toObject(includeInstance?: boolean): NFTDisplay.AsObject;
|
|
1587
|
+
static toObject(includeInstance: boolean, msg: NFTDisplay): NFTDisplay.AsObject;
|
|
1588
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1589
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1590
|
+
static serializeBinaryToWriter(message: NFTDisplay, writer: jspb.BinaryWriter): void;
|
|
1591
|
+
static deserializeBinary(bytes: Uint8Array): NFTDisplay;
|
|
1592
|
+
static deserializeBinaryFromReader(message: NFTDisplay, reader: jspb.BinaryReader): NFTDisplay;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
export namespace NFTDisplay {
|
|
1596
|
+
export type AsObject = {
|
|
1597
|
+
type: string,
|
|
1598
|
+
content: string,
|
|
1599
|
+
}
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
export class NFTIssuer extends jspb.Message {
|
|
1603
|
+
getId(): string;
|
|
1604
|
+
setId(value: string): void;
|
|
1605
|
+
|
|
1606
|
+
getPk(): string;
|
|
1607
|
+
setPk(value: string): void;
|
|
1608
|
+
|
|
1609
|
+
getName(): string;
|
|
1610
|
+
setName(value: string): void;
|
|
1611
|
+
|
|
1612
|
+
serializeBinary(): Uint8Array;
|
|
1613
|
+
toObject(includeInstance?: boolean): NFTIssuer.AsObject;
|
|
1614
|
+
static toObject(includeInstance: boolean, msg: NFTIssuer): NFTIssuer.AsObject;
|
|
1615
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1616
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1617
|
+
static serializeBinaryToWriter(message: NFTIssuer, writer: jspb.BinaryWriter): void;
|
|
1618
|
+
static deserializeBinary(bytes: Uint8Array): NFTIssuer;
|
|
1619
|
+
static deserializeBinaryFromReader(message: NFTIssuer, reader: jspb.BinaryReader): NFTIssuer;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
export namespace NFTIssuer {
|
|
1623
|
+
export type AsObject = {
|
|
1624
|
+
id: string,
|
|
1625
|
+
pk: string,
|
|
1626
|
+
name: string,
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
export class AssetFactoryHook extends jspb.Message {
|
|
1631
|
+
getName(): string;
|
|
1632
|
+
setName(value: string): void;
|
|
1633
|
+
|
|
1634
|
+
getType(): string;
|
|
1635
|
+
setType(value: string): void;
|
|
1636
|
+
|
|
1637
|
+
getHook(): string;
|
|
1638
|
+
setHook(value: string): void;
|
|
1639
|
+
|
|
1640
|
+
serializeBinary(): Uint8Array;
|
|
1641
|
+
toObject(includeInstance?: boolean): AssetFactoryHook.AsObject;
|
|
1642
|
+
static toObject(includeInstance: boolean, msg: AssetFactoryHook): AssetFactoryHook.AsObject;
|
|
1643
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1644
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1645
|
+
static serializeBinaryToWriter(message: AssetFactoryHook, writer: jspb.BinaryWriter): void;
|
|
1646
|
+
static deserializeBinary(bytes: Uint8Array): AssetFactoryHook;
|
|
1647
|
+
static deserializeBinaryFromReader(message: AssetFactoryHook, reader: jspb.BinaryReader): AssetFactoryHook;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
export namespace AssetFactoryHook {
|
|
1651
|
+
export type AsObject = {
|
|
1652
|
+
name: string,
|
|
1653
|
+
type: string,
|
|
1654
|
+
hook: string,
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
export class IndexedTokenInput extends jspb.Message {
|
|
1659
|
+
getAddress(): string;
|
|
1660
|
+
setAddress(value: string): void;
|
|
1661
|
+
|
|
1662
|
+
getValue(): string;
|
|
1663
|
+
setValue(value: string): void;
|
|
1664
|
+
|
|
1665
|
+
getDecimal(): number;
|
|
1666
|
+
setDecimal(value: number): void;
|
|
1667
|
+
|
|
1668
|
+
getUnit(): string;
|
|
1669
|
+
setUnit(value: string): void;
|
|
1670
|
+
|
|
1671
|
+
getSymbol(): string;
|
|
1672
|
+
setSymbol(value: string): void;
|
|
1673
|
+
|
|
1674
|
+
serializeBinary(): Uint8Array;
|
|
1675
|
+
toObject(includeInstance?: boolean): IndexedTokenInput.AsObject;
|
|
1676
|
+
static toObject(includeInstance: boolean, msg: IndexedTokenInput): IndexedTokenInput.AsObject;
|
|
1677
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1678
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1679
|
+
static serializeBinaryToWriter(message: IndexedTokenInput, writer: jspb.BinaryWriter): void;
|
|
1680
|
+
static deserializeBinary(bytes: Uint8Array): IndexedTokenInput;
|
|
1681
|
+
static deserializeBinaryFromReader(message: IndexedTokenInput, reader: jspb.BinaryReader): IndexedTokenInput;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
export namespace IndexedTokenInput {
|
|
1685
|
+
export type AsObject = {
|
|
1686
|
+
address: string,
|
|
1687
|
+
value: string,
|
|
1688
|
+
decimal: number,
|
|
1689
|
+
unit: string,
|
|
1690
|
+
symbol: string,
|
|
1691
|
+
}
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
export class IndexedFactoryInput extends jspb.Message {
|
|
1695
|
+
getValue(): string;
|
|
1696
|
+
setValue(value: string): void;
|
|
1697
|
+
|
|
1698
|
+
clearTokensList(): void;
|
|
1699
|
+
getTokensList(): Array<IndexedTokenInput>;
|
|
1700
|
+
setTokensList(value: Array<IndexedTokenInput>): void;
|
|
1701
|
+
addTokens(value?: IndexedTokenInput, index?: number): IndexedTokenInput;
|
|
1702
|
+
|
|
1703
|
+
clearAssetsList(): void;
|
|
1704
|
+
getAssetsList(): Array<string>;
|
|
1705
|
+
setAssetsList(value: Array<string>): void;
|
|
1706
|
+
addAssets(value: string, index?: number): string;
|
|
1707
|
+
|
|
1708
|
+
clearVariablesList(): void;
|
|
1709
|
+
getVariablesList(): Array<VariableInput>;
|
|
1710
|
+
setVariablesList(value: Array<VariableInput>): void;
|
|
1711
|
+
addVariables(value?: VariableInput, index?: number): VariableInput;
|
|
1712
|
+
|
|
1713
|
+
serializeBinary(): Uint8Array;
|
|
1714
|
+
toObject(includeInstance?: boolean): IndexedFactoryInput.AsObject;
|
|
1715
|
+
static toObject(includeInstance: boolean, msg: IndexedFactoryInput): IndexedFactoryInput.AsObject;
|
|
1716
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1717
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1718
|
+
static serializeBinaryToWriter(message: IndexedFactoryInput, writer: jspb.BinaryWriter): void;
|
|
1719
|
+
static deserializeBinary(bytes: Uint8Array): IndexedFactoryInput;
|
|
1720
|
+
static deserializeBinaryFromReader(message: IndexedFactoryInput, reader: jspb.BinaryReader): IndexedFactoryInput;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
export namespace IndexedFactoryInput {
|
|
1724
|
+
export type AsObject = {
|
|
1725
|
+
value: string,
|
|
1726
|
+
tokensList: Array<IndexedTokenInput.AsObject>,
|
|
1727
|
+
assetsList: Array<string>,
|
|
1728
|
+
variablesList: Array<VariableInput.AsObject>,
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
export class RollupValidator extends jspb.Message {
|
|
1733
|
+
getPk(): string;
|
|
1734
|
+
setPk(value: string): void;
|
|
1735
|
+
|
|
1736
|
+
getAddress(): string;
|
|
1737
|
+
setAddress(value: string): void;
|
|
1738
|
+
|
|
1739
|
+
getEndpoint(): string;
|
|
1740
|
+
setEndpoint(value: string): void;
|
|
1741
|
+
|
|
1742
|
+
serializeBinary(): Uint8Array;
|
|
1743
|
+
toObject(includeInstance?: boolean): RollupValidator.AsObject;
|
|
1744
|
+
static toObject(includeInstance: boolean, msg: RollupValidator): RollupValidator.AsObject;
|
|
1745
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1746
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1747
|
+
static serializeBinaryToWriter(message: RollupValidator, writer: jspb.BinaryWriter): void;
|
|
1748
|
+
static deserializeBinary(bytes: Uint8Array): RollupValidator;
|
|
1749
|
+
static deserializeBinaryFromReader(message: RollupValidator, reader: jspb.BinaryReader): RollupValidator;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
export namespace RollupValidator {
|
|
1753
|
+
export type AsObject = {
|
|
1754
|
+
pk: string,
|
|
1755
|
+
address: string,
|
|
1756
|
+
endpoint: string,
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
export class RollupSignature extends jspb.Message {
|
|
1761
|
+
getSigner(): string;
|
|
1762
|
+
setSigner(value: string): void;
|
|
1763
|
+
|
|
1764
|
+
getSignature(): string;
|
|
1765
|
+
setSignature(value: string): void;
|
|
1766
|
+
|
|
1767
|
+
serializeBinary(): Uint8Array;
|
|
1768
|
+
toObject(includeInstance?: boolean): RollupSignature.AsObject;
|
|
1769
|
+
static toObject(includeInstance: boolean, msg: RollupSignature): RollupSignature.AsObject;
|
|
1770
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1771
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1772
|
+
static serializeBinaryToWriter(message: RollupSignature, writer: jspb.BinaryWriter): void;
|
|
1773
|
+
static deserializeBinary(bytes: Uint8Array): RollupSignature;
|
|
1774
|
+
static deserializeBinaryFromReader(message: RollupSignature, reader: jspb.BinaryReader): RollupSignature;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
export namespace RollupSignature {
|
|
1778
|
+
export type AsObject = {
|
|
1779
|
+
signer: string,
|
|
1780
|
+
signature: string,
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
export class ForeignToken extends jspb.Message {
|
|
1785
|
+
getType(): string;
|
|
1786
|
+
setType(value: string): void;
|
|
1787
|
+
|
|
1788
|
+
getContractAddress(): string;
|
|
1789
|
+
setContractAddress(value: string): void;
|
|
1790
|
+
|
|
1791
|
+
getChainType(): string;
|
|
1792
|
+
setChainType(value: string): void;
|
|
1793
|
+
|
|
1794
|
+
getChainName(): string;
|
|
1795
|
+
setChainName(value: string): void;
|
|
1796
|
+
|
|
1797
|
+
getChainId(): number;
|
|
1798
|
+
setChainId(value: number): void;
|
|
1799
|
+
|
|
1800
|
+
serializeBinary(): Uint8Array;
|
|
1801
|
+
toObject(includeInstance?: boolean): ForeignToken.AsObject;
|
|
1802
|
+
static toObject(includeInstance: boolean, msg: ForeignToken): ForeignToken.AsObject;
|
|
1803
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1804
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1805
|
+
static serializeBinaryToWriter(message: ForeignToken, writer: jspb.BinaryWriter): void;
|
|
1806
|
+
static deserializeBinary(bytes: Uint8Array): ForeignToken;
|
|
1807
|
+
static deserializeBinaryFromReader(message: ForeignToken, reader: jspb.BinaryReader): ForeignToken;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
export namespace ForeignToken {
|
|
1811
|
+
export type AsObject = {
|
|
1812
|
+
type: string,
|
|
1813
|
+
contractAddress: string,
|
|
1814
|
+
chainType: string,
|
|
1815
|
+
chainName: string,
|
|
1816
|
+
chainId: number,
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
export class RevokedStake extends jspb.Message {
|
|
1821
|
+
clearTokensList(): void;
|
|
1822
|
+
getTokensList(): Array<TokenInput>;
|
|
1823
|
+
setTokensList(value: Array<TokenInput>): void;
|
|
1824
|
+
addTokens(value?: TokenInput, index?: number): TokenInput;
|
|
1825
|
+
|
|
1826
|
+
clearAssetsList(): void;
|
|
1827
|
+
getAssetsList(): Array<string>;
|
|
1828
|
+
setAssetsList(value: Array<string>): void;
|
|
1829
|
+
addAssets(value: string, index?: number): string;
|
|
1830
|
+
|
|
1831
|
+
serializeBinary(): Uint8Array;
|
|
1832
|
+
toObject(includeInstance?: boolean): RevokedStake.AsObject;
|
|
1833
|
+
static toObject(includeInstance: boolean, msg: RevokedStake): RevokedStake.AsObject;
|
|
1834
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1835
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1836
|
+
static serializeBinaryToWriter(message: RevokedStake, writer: jspb.BinaryWriter): void;
|
|
1837
|
+
static deserializeBinary(bytes: Uint8Array): RevokedStake;
|
|
1838
|
+
static deserializeBinaryFromReader(message: RevokedStake, reader: jspb.BinaryReader): RevokedStake;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
export namespace RevokedStake {
|
|
1842
|
+
export type AsObject = {
|
|
1843
|
+
tokensList: Array<TokenInput.AsObject>,
|
|
1844
|
+
assetsList: Array<string>,
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
export class ForgeStats extends jspb.Message {
|
|
1849
|
+
clearNumBlocksList(): void;
|
|
1850
|
+
getNumBlocksList(): Array<string>;
|
|
1851
|
+
setNumBlocksList(value: Array<string>): void;
|
|
1852
|
+
addNumBlocks(value: string, index?: number): string;
|
|
1853
|
+
|
|
1854
|
+
clearNumTxsList(): void;
|
|
1855
|
+
getNumTxsList(): Array<string>;
|
|
1856
|
+
setNumTxsList(value: Array<string>): void;
|
|
1857
|
+
addNumTxs(value: string, index?: number): string;
|
|
1858
|
+
|
|
1859
|
+
clearNumStakesList(): void;
|
|
1860
|
+
getNumStakesList(): Array<BigUint>;
|
|
1861
|
+
setNumStakesList(value: Array<BigUint>): void;
|
|
1862
|
+
addNumStakes(value?: BigUint, index?: number): BigUint;
|
|
1863
|
+
|
|
1864
|
+
clearNumValidatorsList(): void;
|
|
1865
|
+
getNumValidatorsList(): Array<number>;
|
|
1866
|
+
setNumValidatorsList(value: Array<number>): void;
|
|
1867
|
+
addNumValidators(value: number, index?: number): number;
|
|
1868
|
+
|
|
1869
|
+
clearNumAccountMigrateTxsList(): void;
|
|
1870
|
+
getNumAccountMigrateTxsList(): Array<string>;
|
|
1871
|
+
setNumAccountMigrateTxsList(value: Array<string>): void;
|
|
1872
|
+
addNumAccountMigrateTxs(value: string, index?: number): string;
|
|
1873
|
+
|
|
1874
|
+
clearNumCreateAssetTxsList(): void;
|
|
1875
|
+
getNumCreateAssetTxsList(): Array<string>;
|
|
1876
|
+
setNumCreateAssetTxsList(value: Array<string>): void;
|
|
1877
|
+
addNumCreateAssetTxs(value: string, index?: number): string;
|
|
1878
|
+
|
|
1879
|
+
clearNumConsensusUpgradeTxsList(): void;
|
|
1880
|
+
getNumConsensusUpgradeTxsList(): Array<number>;
|
|
1881
|
+
setNumConsensusUpgradeTxsList(value: Array<number>): void;
|
|
1882
|
+
addNumConsensusUpgradeTxs(value: number, index?: number): number;
|
|
1883
|
+
|
|
1884
|
+
clearNumDeclareTxsList(): void;
|
|
1885
|
+
getNumDeclareTxsList(): Array<string>;
|
|
1886
|
+
setNumDeclareTxsList(value: Array<string>): void;
|
|
1887
|
+
addNumDeclareTxs(value: string, index?: number): string;
|
|
1888
|
+
|
|
1889
|
+
clearNumDeclareFileTxsList(): void;
|
|
1890
|
+
getNumDeclareFileTxsList(): Array<string>;
|
|
1891
|
+
setNumDeclareFileTxsList(value: Array<string>): void;
|
|
1892
|
+
addNumDeclareFileTxs(value: string, index?: number): string;
|
|
1893
|
+
|
|
1894
|
+
clearNumExchangeTxsList(): void;
|
|
1895
|
+
getNumExchangeTxsList(): Array<string>;
|
|
1896
|
+
setNumExchangeTxsList(value: Array<string>): void;
|
|
1897
|
+
addNumExchangeTxs(value: string, index?: number): string;
|
|
1898
|
+
|
|
1899
|
+
clearNumStakeTxsList(): void;
|
|
1900
|
+
getNumStakeTxsList(): Array<string>;
|
|
1901
|
+
setNumStakeTxsList(value: Array<string>): void;
|
|
1902
|
+
addNumStakeTxs(value: string, index?: number): string;
|
|
1903
|
+
|
|
1904
|
+
clearNumSysUpgradeTxsList(): void;
|
|
1905
|
+
getNumSysUpgradeTxsList(): Array<number>;
|
|
1906
|
+
setNumSysUpgradeTxsList(value: Array<number>): void;
|
|
1907
|
+
addNumSysUpgradeTxs(value: number, index?: number): number;
|
|
1908
|
+
|
|
1909
|
+
clearNumTransferTxsList(): void;
|
|
1910
|
+
getNumTransferTxsList(): Array<string>;
|
|
1911
|
+
setNumTransferTxsList(value: Array<string>): void;
|
|
1912
|
+
addNumTransferTxs(value: string, index?: number): string;
|
|
1913
|
+
|
|
1914
|
+
clearNumUpdateAssetTxsList(): void;
|
|
1915
|
+
getNumUpdateAssetTxsList(): Array<string>;
|
|
1916
|
+
setNumUpdateAssetTxsList(value: Array<string>): void;
|
|
1917
|
+
addNumUpdateAssetTxs(value: string, index?: number): string;
|
|
1918
|
+
|
|
1919
|
+
clearNumConsumeAssetTxsList(): void;
|
|
1920
|
+
getNumConsumeAssetTxsList(): Array<string>;
|
|
1921
|
+
setNumConsumeAssetTxsList(value: Array<string>): void;
|
|
1922
|
+
addNumConsumeAssetTxs(value: string, index?: number): string;
|
|
1923
|
+
|
|
1924
|
+
clearTpsList(): void;
|
|
1925
|
+
getTpsList(): Array<number>;
|
|
1926
|
+
setTpsList(value: Array<number>): void;
|
|
1927
|
+
addTps(value: number, index?: number): number;
|
|
1928
|
+
|
|
1929
|
+
getMaxTps(): number;
|
|
1930
|
+
setMaxTps(value: number): void;
|
|
1931
|
+
|
|
1932
|
+
getAvgTps(): number;
|
|
1933
|
+
setAvgTps(value: number): void;
|
|
1934
|
+
|
|
1935
|
+
getAvgBlockTime(): number;
|
|
1936
|
+
setAvgBlockTime(value: number): void;
|
|
1937
|
+
|
|
1938
|
+
serializeBinary(): Uint8Array;
|
|
1939
|
+
toObject(includeInstance?: boolean): ForgeStats.AsObject;
|
|
1940
|
+
static toObject(includeInstance: boolean, msg: ForgeStats): ForgeStats.AsObject;
|
|
1941
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1942
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1943
|
+
static serializeBinaryToWriter(message: ForgeStats, writer: jspb.BinaryWriter): void;
|
|
1944
|
+
static deserializeBinary(bytes: Uint8Array): ForgeStats;
|
|
1945
|
+
static deserializeBinaryFromReader(message: ForgeStats, reader: jspb.BinaryReader): ForgeStats;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
export namespace ForgeStats {
|
|
1949
|
+
export type AsObject = {
|
|
1950
|
+
numBlocksList: Array<string>,
|
|
1951
|
+
numTxsList: Array<string>,
|
|
1952
|
+
numStakesList: Array<BigUint.AsObject>,
|
|
1953
|
+
numValidatorsList: Array<number>,
|
|
1954
|
+
numAccountMigrateTxsList: Array<string>,
|
|
1955
|
+
numCreateAssetTxsList: Array<string>,
|
|
1956
|
+
numConsensusUpgradeTxsList: Array<number>,
|
|
1957
|
+
numDeclareTxsList: Array<string>,
|
|
1958
|
+
numDeclareFileTxsList: Array<string>,
|
|
1959
|
+
numExchangeTxsList: Array<string>,
|
|
1960
|
+
numStakeTxsList: Array<string>,
|
|
1961
|
+
numSysUpgradeTxsList: Array<number>,
|
|
1962
|
+
numTransferTxsList: Array<string>,
|
|
1963
|
+
numUpdateAssetTxsList: Array<string>,
|
|
1964
|
+
numConsumeAssetTxsList: Array<string>,
|
|
1965
|
+
tpsList: Array<number>,
|
|
1966
|
+
maxTps: number,
|
|
1967
|
+
avgTps: number,
|
|
1968
|
+
avgBlockTime: number,
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
|