@keepkey/device-protocol 7.10.0 → 7.10.2
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/lib/messages-binance_pb.d.ts +428 -0
- package/lib/messages-binance_pb.js +1 -7
- package/lib/messages-cosmos_pb.d.ts +466 -0
- package/lib/messages-cosmos_pb.js +1 -7
- package/lib/messages-eos_pb.d.ts +1057 -0
- package/lib/messages-eos_pb.js +1 -7
- package/lib/messages-ethereum_pb.d.ts +530 -0
- package/lib/messages-ethereum_pb.js +1 -7
- package/lib/messages-nano_pb.d.ts +207 -0
- package/lib/messages-nano_pb.js +1 -7
- package/lib/messages-osmosis_pb.d.ts +774 -0
- package/lib/messages-osmosis_pb.js +1 -7
- package/lib/messages-ripple_pb.d.ts +173 -0
- package/lib/messages-ripple_pb.js +1 -7
- package/lib/messages-tendermint_pb.d.ts +526 -0
- package/lib/messages-tendermint_pb.js +1 -7
- package/lib/messages-thorchain_pb.d.ts +288 -0
- package/lib/messages-thorchain_pb.js +1 -7
- package/lib/messages_pb.d.ts +2357 -0
- package/lib/messages_pb.js +1 -7
- package/lib/types_pb.d.ts +843 -0
- package/lib/types_pb.js +1 -7
- package/package.json +2 -2
@@ -0,0 +1,2357 @@
|
|
1
|
+
// package:
|
2
|
+
// file: messages.proto
|
3
|
+
|
4
|
+
import * as jspb from "google-protobuf";
|
5
|
+
import * as types_pb from "./types_pb";
|
6
|
+
|
7
|
+
export class Initialize extends jspb.Message {
|
8
|
+
serializeBinary(): Uint8Array;
|
9
|
+
toObject(includeInstance?: boolean): Initialize.AsObject;
|
10
|
+
static toObject(includeInstance: boolean, msg: Initialize): Initialize.AsObject;
|
11
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
12
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
13
|
+
static serializeBinaryToWriter(message: Initialize, writer: jspb.BinaryWriter): void;
|
14
|
+
static deserializeBinary(bytes: Uint8Array): Initialize;
|
15
|
+
static deserializeBinaryFromReader(message: Initialize, reader: jspb.BinaryReader): Initialize;
|
16
|
+
}
|
17
|
+
|
18
|
+
export namespace Initialize {
|
19
|
+
export type AsObject = {
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
export class GetFeatures extends jspb.Message {
|
24
|
+
serializeBinary(): Uint8Array;
|
25
|
+
toObject(includeInstance?: boolean): GetFeatures.AsObject;
|
26
|
+
static toObject(includeInstance: boolean, msg: GetFeatures): GetFeatures.AsObject;
|
27
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
28
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
29
|
+
static serializeBinaryToWriter(message: GetFeatures, writer: jspb.BinaryWriter): void;
|
30
|
+
static deserializeBinary(bytes: Uint8Array): GetFeatures;
|
31
|
+
static deserializeBinaryFromReader(message: GetFeatures, reader: jspb.BinaryReader): GetFeatures;
|
32
|
+
}
|
33
|
+
|
34
|
+
export namespace GetFeatures {
|
35
|
+
export type AsObject = {
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
export class Features extends jspb.Message {
|
40
|
+
hasVendor(): boolean;
|
41
|
+
clearVendor(): void;
|
42
|
+
getVendor(): string | undefined;
|
43
|
+
setVendor(value: string): void;
|
44
|
+
|
45
|
+
hasMajorVersion(): boolean;
|
46
|
+
clearMajorVersion(): void;
|
47
|
+
getMajorVersion(): number | undefined;
|
48
|
+
setMajorVersion(value: number): void;
|
49
|
+
|
50
|
+
hasMinorVersion(): boolean;
|
51
|
+
clearMinorVersion(): void;
|
52
|
+
getMinorVersion(): number | undefined;
|
53
|
+
setMinorVersion(value: number): void;
|
54
|
+
|
55
|
+
hasPatchVersion(): boolean;
|
56
|
+
clearPatchVersion(): void;
|
57
|
+
getPatchVersion(): number | undefined;
|
58
|
+
setPatchVersion(value: number): void;
|
59
|
+
|
60
|
+
hasBootloaderMode(): boolean;
|
61
|
+
clearBootloaderMode(): void;
|
62
|
+
getBootloaderMode(): boolean | undefined;
|
63
|
+
setBootloaderMode(value: boolean): void;
|
64
|
+
|
65
|
+
hasDeviceId(): boolean;
|
66
|
+
clearDeviceId(): void;
|
67
|
+
getDeviceId(): string | undefined;
|
68
|
+
setDeviceId(value: string): void;
|
69
|
+
|
70
|
+
hasPinProtection(): boolean;
|
71
|
+
clearPinProtection(): void;
|
72
|
+
getPinProtection(): boolean | undefined;
|
73
|
+
setPinProtection(value: boolean): void;
|
74
|
+
|
75
|
+
hasPassphraseProtection(): boolean;
|
76
|
+
clearPassphraseProtection(): void;
|
77
|
+
getPassphraseProtection(): boolean | undefined;
|
78
|
+
setPassphraseProtection(value: boolean): void;
|
79
|
+
|
80
|
+
hasLanguage(): boolean;
|
81
|
+
clearLanguage(): void;
|
82
|
+
getLanguage(): string | undefined;
|
83
|
+
setLanguage(value: string): void;
|
84
|
+
|
85
|
+
hasLabel(): boolean;
|
86
|
+
clearLabel(): void;
|
87
|
+
getLabel(): string | undefined;
|
88
|
+
setLabel(value: string): void;
|
89
|
+
|
90
|
+
clearCoinsList(): void;
|
91
|
+
getCoinsList(): Array<types_pb.CoinType>;
|
92
|
+
setCoinsList(value: Array<types_pb.CoinType>): void;
|
93
|
+
addCoins(value?: types_pb.CoinType, index?: number): types_pb.CoinType;
|
94
|
+
|
95
|
+
hasInitialized(): boolean;
|
96
|
+
clearInitialized(): void;
|
97
|
+
getInitialized(): boolean | undefined;
|
98
|
+
setInitialized(value: boolean): void;
|
99
|
+
|
100
|
+
hasRevision(): boolean;
|
101
|
+
clearRevision(): void;
|
102
|
+
getRevision(): Uint8Array | string;
|
103
|
+
getRevision_asU8(): Uint8Array;
|
104
|
+
getRevision_asB64(): string;
|
105
|
+
setRevision(value: Uint8Array | string): void;
|
106
|
+
|
107
|
+
hasBootloaderHash(): boolean;
|
108
|
+
clearBootloaderHash(): void;
|
109
|
+
getBootloaderHash(): Uint8Array | string;
|
110
|
+
getBootloaderHash_asU8(): Uint8Array;
|
111
|
+
getBootloaderHash_asB64(): string;
|
112
|
+
setBootloaderHash(value: Uint8Array | string): void;
|
113
|
+
|
114
|
+
hasImported(): boolean;
|
115
|
+
clearImported(): void;
|
116
|
+
getImported(): boolean | undefined;
|
117
|
+
setImported(value: boolean): void;
|
118
|
+
|
119
|
+
hasPinCached(): boolean;
|
120
|
+
clearPinCached(): void;
|
121
|
+
getPinCached(): boolean | undefined;
|
122
|
+
setPinCached(value: boolean): void;
|
123
|
+
|
124
|
+
hasPassphraseCached(): boolean;
|
125
|
+
clearPassphraseCached(): void;
|
126
|
+
getPassphraseCached(): boolean | undefined;
|
127
|
+
setPassphraseCached(value: boolean): void;
|
128
|
+
|
129
|
+
clearPoliciesList(): void;
|
130
|
+
getPoliciesList(): Array<types_pb.PolicyType>;
|
131
|
+
setPoliciesList(value: Array<types_pb.PolicyType>): void;
|
132
|
+
addPolicies(value?: types_pb.PolicyType, index?: number): types_pb.PolicyType;
|
133
|
+
|
134
|
+
hasModel(): boolean;
|
135
|
+
clearModel(): void;
|
136
|
+
getModel(): string | undefined;
|
137
|
+
setModel(value: string): void;
|
138
|
+
|
139
|
+
hasFirmwareVariant(): boolean;
|
140
|
+
clearFirmwareVariant(): void;
|
141
|
+
getFirmwareVariant(): string | undefined;
|
142
|
+
setFirmwareVariant(value: string): void;
|
143
|
+
|
144
|
+
hasFirmwareHash(): boolean;
|
145
|
+
clearFirmwareHash(): void;
|
146
|
+
getFirmwareHash(): Uint8Array | string;
|
147
|
+
getFirmwareHash_asU8(): Uint8Array;
|
148
|
+
getFirmwareHash_asB64(): string;
|
149
|
+
setFirmwareHash(value: Uint8Array | string): void;
|
150
|
+
|
151
|
+
hasNoBackup(): boolean;
|
152
|
+
clearNoBackup(): void;
|
153
|
+
getNoBackup(): boolean | undefined;
|
154
|
+
setNoBackup(value: boolean): void;
|
155
|
+
|
156
|
+
hasWipeCodeProtection(): boolean;
|
157
|
+
clearWipeCodeProtection(): void;
|
158
|
+
getWipeCodeProtection(): boolean | undefined;
|
159
|
+
setWipeCodeProtection(value: boolean): void;
|
160
|
+
|
161
|
+
hasAutoLockDelayMs(): boolean;
|
162
|
+
clearAutoLockDelayMs(): void;
|
163
|
+
getAutoLockDelayMs(): number | undefined;
|
164
|
+
setAutoLockDelayMs(value: number): void;
|
165
|
+
|
166
|
+
serializeBinary(): Uint8Array;
|
167
|
+
toObject(includeInstance?: boolean): Features.AsObject;
|
168
|
+
static toObject(includeInstance: boolean, msg: Features): Features.AsObject;
|
169
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
170
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
171
|
+
static serializeBinaryToWriter(message: Features, writer: jspb.BinaryWriter): void;
|
172
|
+
static deserializeBinary(bytes: Uint8Array): Features;
|
173
|
+
static deserializeBinaryFromReader(message: Features, reader: jspb.BinaryReader): Features;
|
174
|
+
}
|
175
|
+
|
176
|
+
export namespace Features {
|
177
|
+
export type AsObject = {
|
178
|
+
vendor?: string,
|
179
|
+
majorVersion?: number,
|
180
|
+
minorVersion?: number,
|
181
|
+
patchVersion?: number,
|
182
|
+
bootloaderMode?: boolean,
|
183
|
+
deviceId?: string,
|
184
|
+
pinProtection?: boolean,
|
185
|
+
passphraseProtection?: boolean,
|
186
|
+
language?: string,
|
187
|
+
label?: string,
|
188
|
+
coinsList: Array<types_pb.CoinType.AsObject>,
|
189
|
+
initialized?: boolean,
|
190
|
+
revision: Uint8Array | string,
|
191
|
+
bootloaderHash: Uint8Array | string,
|
192
|
+
imported?: boolean,
|
193
|
+
pinCached?: boolean,
|
194
|
+
passphraseCached?: boolean,
|
195
|
+
policiesList: Array<types_pb.PolicyType.AsObject>,
|
196
|
+
model?: string,
|
197
|
+
firmwareVariant?: string,
|
198
|
+
firmwareHash: Uint8Array | string,
|
199
|
+
noBackup?: boolean,
|
200
|
+
wipeCodeProtection?: boolean,
|
201
|
+
autoLockDelayMs?: number,
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
export class GetCoinTable extends jspb.Message {
|
206
|
+
hasStart(): boolean;
|
207
|
+
clearStart(): void;
|
208
|
+
getStart(): number | undefined;
|
209
|
+
setStart(value: number): void;
|
210
|
+
|
211
|
+
hasEnd(): boolean;
|
212
|
+
clearEnd(): void;
|
213
|
+
getEnd(): number | undefined;
|
214
|
+
setEnd(value: number): void;
|
215
|
+
|
216
|
+
serializeBinary(): Uint8Array;
|
217
|
+
toObject(includeInstance?: boolean): GetCoinTable.AsObject;
|
218
|
+
static toObject(includeInstance: boolean, msg: GetCoinTable): GetCoinTable.AsObject;
|
219
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
220
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
221
|
+
static serializeBinaryToWriter(message: GetCoinTable, writer: jspb.BinaryWriter): void;
|
222
|
+
static deserializeBinary(bytes: Uint8Array): GetCoinTable;
|
223
|
+
static deserializeBinaryFromReader(message: GetCoinTable, reader: jspb.BinaryReader): GetCoinTable;
|
224
|
+
}
|
225
|
+
|
226
|
+
export namespace GetCoinTable {
|
227
|
+
export type AsObject = {
|
228
|
+
start?: number,
|
229
|
+
end?: number,
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
233
|
+
export class CoinTable extends jspb.Message {
|
234
|
+
clearTableList(): void;
|
235
|
+
getTableList(): Array<types_pb.CoinType>;
|
236
|
+
setTableList(value: Array<types_pb.CoinType>): void;
|
237
|
+
addTable(value?: types_pb.CoinType, index?: number): types_pb.CoinType;
|
238
|
+
|
239
|
+
hasNumCoins(): boolean;
|
240
|
+
clearNumCoins(): void;
|
241
|
+
getNumCoins(): number | undefined;
|
242
|
+
setNumCoins(value: number): void;
|
243
|
+
|
244
|
+
hasChunkSize(): boolean;
|
245
|
+
clearChunkSize(): void;
|
246
|
+
getChunkSize(): number | undefined;
|
247
|
+
setChunkSize(value: number): void;
|
248
|
+
|
249
|
+
serializeBinary(): Uint8Array;
|
250
|
+
toObject(includeInstance?: boolean): CoinTable.AsObject;
|
251
|
+
static toObject(includeInstance: boolean, msg: CoinTable): CoinTable.AsObject;
|
252
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
253
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
254
|
+
static serializeBinaryToWriter(message: CoinTable, writer: jspb.BinaryWriter): void;
|
255
|
+
static deserializeBinary(bytes: Uint8Array): CoinTable;
|
256
|
+
static deserializeBinaryFromReader(message: CoinTable, reader: jspb.BinaryReader): CoinTable;
|
257
|
+
}
|
258
|
+
|
259
|
+
export namespace CoinTable {
|
260
|
+
export type AsObject = {
|
261
|
+
tableList: Array<types_pb.CoinType.AsObject>,
|
262
|
+
numCoins?: number,
|
263
|
+
chunkSize?: number,
|
264
|
+
}
|
265
|
+
}
|
266
|
+
|
267
|
+
export class ClearSession extends jspb.Message {
|
268
|
+
serializeBinary(): Uint8Array;
|
269
|
+
toObject(includeInstance?: boolean): ClearSession.AsObject;
|
270
|
+
static toObject(includeInstance: boolean, msg: ClearSession): ClearSession.AsObject;
|
271
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
272
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
273
|
+
static serializeBinaryToWriter(message: ClearSession, writer: jspb.BinaryWriter): void;
|
274
|
+
static deserializeBinary(bytes: Uint8Array): ClearSession;
|
275
|
+
static deserializeBinaryFromReader(message: ClearSession, reader: jspb.BinaryReader): ClearSession;
|
276
|
+
}
|
277
|
+
|
278
|
+
export namespace ClearSession {
|
279
|
+
export type AsObject = {
|
280
|
+
}
|
281
|
+
}
|
282
|
+
|
283
|
+
export class ApplySettings extends jspb.Message {
|
284
|
+
hasLanguage(): boolean;
|
285
|
+
clearLanguage(): void;
|
286
|
+
getLanguage(): string | undefined;
|
287
|
+
setLanguage(value: string): void;
|
288
|
+
|
289
|
+
hasLabel(): boolean;
|
290
|
+
clearLabel(): void;
|
291
|
+
getLabel(): string | undefined;
|
292
|
+
setLabel(value: string): void;
|
293
|
+
|
294
|
+
hasUsePassphrase(): boolean;
|
295
|
+
clearUsePassphrase(): void;
|
296
|
+
getUsePassphrase(): boolean | undefined;
|
297
|
+
setUsePassphrase(value: boolean): void;
|
298
|
+
|
299
|
+
hasAutoLockDelayMs(): boolean;
|
300
|
+
clearAutoLockDelayMs(): void;
|
301
|
+
getAutoLockDelayMs(): number | undefined;
|
302
|
+
setAutoLockDelayMs(value: number): void;
|
303
|
+
|
304
|
+
hasU2fCounter(): boolean;
|
305
|
+
clearU2fCounter(): void;
|
306
|
+
getU2fCounter(): number | undefined;
|
307
|
+
setU2fCounter(value: number): void;
|
308
|
+
|
309
|
+
serializeBinary(): Uint8Array;
|
310
|
+
toObject(includeInstance?: boolean): ApplySettings.AsObject;
|
311
|
+
static toObject(includeInstance: boolean, msg: ApplySettings): ApplySettings.AsObject;
|
312
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
313
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
314
|
+
static serializeBinaryToWriter(message: ApplySettings, writer: jspb.BinaryWriter): void;
|
315
|
+
static deserializeBinary(bytes: Uint8Array): ApplySettings;
|
316
|
+
static deserializeBinaryFromReader(message: ApplySettings, reader: jspb.BinaryReader): ApplySettings;
|
317
|
+
}
|
318
|
+
|
319
|
+
export namespace ApplySettings {
|
320
|
+
export type AsObject = {
|
321
|
+
language?: string,
|
322
|
+
label?: string,
|
323
|
+
usePassphrase?: boolean,
|
324
|
+
autoLockDelayMs?: number,
|
325
|
+
u2fCounter?: number,
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
export class ChangePin extends jspb.Message {
|
330
|
+
hasRemove(): boolean;
|
331
|
+
clearRemove(): void;
|
332
|
+
getRemove(): boolean | undefined;
|
333
|
+
setRemove(value: boolean): void;
|
334
|
+
|
335
|
+
serializeBinary(): Uint8Array;
|
336
|
+
toObject(includeInstance?: boolean): ChangePin.AsObject;
|
337
|
+
static toObject(includeInstance: boolean, msg: ChangePin): ChangePin.AsObject;
|
338
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
339
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
340
|
+
static serializeBinaryToWriter(message: ChangePin, writer: jspb.BinaryWriter): void;
|
341
|
+
static deserializeBinary(bytes: Uint8Array): ChangePin;
|
342
|
+
static deserializeBinaryFromReader(message: ChangePin, reader: jspb.BinaryReader): ChangePin;
|
343
|
+
}
|
344
|
+
|
345
|
+
export namespace ChangePin {
|
346
|
+
export type AsObject = {
|
347
|
+
remove?: boolean,
|
348
|
+
}
|
349
|
+
}
|
350
|
+
|
351
|
+
export class Ping extends jspb.Message {
|
352
|
+
hasMessage(): boolean;
|
353
|
+
clearMessage(): void;
|
354
|
+
getMessage(): string | undefined;
|
355
|
+
setMessage(value: string): void;
|
356
|
+
|
357
|
+
hasButtonProtection(): boolean;
|
358
|
+
clearButtonProtection(): void;
|
359
|
+
getButtonProtection(): boolean | undefined;
|
360
|
+
setButtonProtection(value: boolean): void;
|
361
|
+
|
362
|
+
hasPinProtection(): boolean;
|
363
|
+
clearPinProtection(): void;
|
364
|
+
getPinProtection(): boolean | undefined;
|
365
|
+
setPinProtection(value: boolean): void;
|
366
|
+
|
367
|
+
hasPassphraseProtection(): boolean;
|
368
|
+
clearPassphraseProtection(): void;
|
369
|
+
getPassphraseProtection(): boolean | undefined;
|
370
|
+
setPassphraseProtection(value: boolean): void;
|
371
|
+
|
372
|
+
hasWipeCodeProtection(): boolean;
|
373
|
+
clearWipeCodeProtection(): void;
|
374
|
+
getWipeCodeProtection(): boolean | undefined;
|
375
|
+
setWipeCodeProtection(value: boolean): void;
|
376
|
+
|
377
|
+
serializeBinary(): Uint8Array;
|
378
|
+
toObject(includeInstance?: boolean): Ping.AsObject;
|
379
|
+
static toObject(includeInstance: boolean, msg: Ping): Ping.AsObject;
|
380
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
381
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
382
|
+
static serializeBinaryToWriter(message: Ping, writer: jspb.BinaryWriter): void;
|
383
|
+
static deserializeBinary(bytes: Uint8Array): Ping;
|
384
|
+
static deserializeBinaryFromReader(message: Ping, reader: jspb.BinaryReader): Ping;
|
385
|
+
}
|
386
|
+
|
387
|
+
export namespace Ping {
|
388
|
+
export type AsObject = {
|
389
|
+
message?: string,
|
390
|
+
buttonProtection?: boolean,
|
391
|
+
pinProtection?: boolean,
|
392
|
+
passphraseProtection?: boolean,
|
393
|
+
wipeCodeProtection?: boolean,
|
394
|
+
}
|
395
|
+
}
|
396
|
+
|
397
|
+
export class Success extends jspb.Message {
|
398
|
+
hasMessage(): boolean;
|
399
|
+
clearMessage(): void;
|
400
|
+
getMessage(): string | undefined;
|
401
|
+
setMessage(value: string): void;
|
402
|
+
|
403
|
+
serializeBinary(): Uint8Array;
|
404
|
+
toObject(includeInstance?: boolean): Success.AsObject;
|
405
|
+
static toObject(includeInstance: boolean, msg: Success): Success.AsObject;
|
406
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
407
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
408
|
+
static serializeBinaryToWriter(message: Success, writer: jspb.BinaryWriter): void;
|
409
|
+
static deserializeBinary(bytes: Uint8Array): Success;
|
410
|
+
static deserializeBinaryFromReader(message: Success, reader: jspb.BinaryReader): Success;
|
411
|
+
}
|
412
|
+
|
413
|
+
export namespace Success {
|
414
|
+
export type AsObject = {
|
415
|
+
message?: string,
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
419
|
+
export class Failure extends jspb.Message {
|
420
|
+
hasCode(): boolean;
|
421
|
+
clearCode(): void;
|
422
|
+
getCode(): types_pb.FailureTypeMap[keyof types_pb.FailureTypeMap] | undefined;
|
423
|
+
setCode(value: types_pb.FailureTypeMap[keyof types_pb.FailureTypeMap]): void;
|
424
|
+
|
425
|
+
hasMessage(): boolean;
|
426
|
+
clearMessage(): void;
|
427
|
+
getMessage(): string | undefined;
|
428
|
+
setMessage(value: string): void;
|
429
|
+
|
430
|
+
serializeBinary(): Uint8Array;
|
431
|
+
toObject(includeInstance?: boolean): Failure.AsObject;
|
432
|
+
static toObject(includeInstance: boolean, msg: Failure): Failure.AsObject;
|
433
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
434
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
435
|
+
static serializeBinaryToWriter(message: Failure, writer: jspb.BinaryWriter): void;
|
436
|
+
static deserializeBinary(bytes: Uint8Array): Failure;
|
437
|
+
static deserializeBinaryFromReader(message: Failure, reader: jspb.BinaryReader): Failure;
|
438
|
+
}
|
439
|
+
|
440
|
+
export namespace Failure {
|
441
|
+
export type AsObject = {
|
442
|
+
code?: types_pb.FailureTypeMap[keyof types_pb.FailureTypeMap],
|
443
|
+
message?: string,
|
444
|
+
}
|
445
|
+
}
|
446
|
+
|
447
|
+
export class ButtonRequest extends jspb.Message {
|
448
|
+
hasCode(): boolean;
|
449
|
+
clearCode(): void;
|
450
|
+
getCode(): types_pb.ButtonRequestTypeMap[keyof types_pb.ButtonRequestTypeMap] | undefined;
|
451
|
+
setCode(value: types_pb.ButtonRequestTypeMap[keyof types_pb.ButtonRequestTypeMap]): void;
|
452
|
+
|
453
|
+
hasData(): boolean;
|
454
|
+
clearData(): void;
|
455
|
+
getData(): string | undefined;
|
456
|
+
setData(value: string): void;
|
457
|
+
|
458
|
+
serializeBinary(): Uint8Array;
|
459
|
+
toObject(includeInstance?: boolean): ButtonRequest.AsObject;
|
460
|
+
static toObject(includeInstance: boolean, msg: ButtonRequest): ButtonRequest.AsObject;
|
461
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
462
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
463
|
+
static serializeBinaryToWriter(message: ButtonRequest, writer: jspb.BinaryWriter): void;
|
464
|
+
static deserializeBinary(bytes: Uint8Array): ButtonRequest;
|
465
|
+
static deserializeBinaryFromReader(message: ButtonRequest, reader: jspb.BinaryReader): ButtonRequest;
|
466
|
+
}
|
467
|
+
|
468
|
+
export namespace ButtonRequest {
|
469
|
+
export type AsObject = {
|
470
|
+
code?: types_pb.ButtonRequestTypeMap[keyof types_pb.ButtonRequestTypeMap],
|
471
|
+
data?: string,
|
472
|
+
}
|
473
|
+
}
|
474
|
+
|
475
|
+
export class ButtonAck extends jspb.Message {
|
476
|
+
serializeBinary(): Uint8Array;
|
477
|
+
toObject(includeInstance?: boolean): ButtonAck.AsObject;
|
478
|
+
static toObject(includeInstance: boolean, msg: ButtonAck): ButtonAck.AsObject;
|
479
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
480
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
481
|
+
static serializeBinaryToWriter(message: ButtonAck, writer: jspb.BinaryWriter): void;
|
482
|
+
static deserializeBinary(bytes: Uint8Array): ButtonAck;
|
483
|
+
static deserializeBinaryFromReader(message: ButtonAck, reader: jspb.BinaryReader): ButtonAck;
|
484
|
+
}
|
485
|
+
|
486
|
+
export namespace ButtonAck {
|
487
|
+
export type AsObject = {
|
488
|
+
}
|
489
|
+
}
|
490
|
+
|
491
|
+
export class PinMatrixRequest extends jspb.Message {
|
492
|
+
hasType(): boolean;
|
493
|
+
clearType(): void;
|
494
|
+
getType(): types_pb.PinMatrixRequestTypeMap[keyof types_pb.PinMatrixRequestTypeMap] | undefined;
|
495
|
+
setType(value: types_pb.PinMatrixRequestTypeMap[keyof types_pb.PinMatrixRequestTypeMap]): void;
|
496
|
+
|
497
|
+
serializeBinary(): Uint8Array;
|
498
|
+
toObject(includeInstance?: boolean): PinMatrixRequest.AsObject;
|
499
|
+
static toObject(includeInstance: boolean, msg: PinMatrixRequest): PinMatrixRequest.AsObject;
|
500
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
501
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
502
|
+
static serializeBinaryToWriter(message: PinMatrixRequest, writer: jspb.BinaryWriter): void;
|
503
|
+
static deserializeBinary(bytes: Uint8Array): PinMatrixRequest;
|
504
|
+
static deserializeBinaryFromReader(message: PinMatrixRequest, reader: jspb.BinaryReader): PinMatrixRequest;
|
505
|
+
}
|
506
|
+
|
507
|
+
export namespace PinMatrixRequest {
|
508
|
+
export type AsObject = {
|
509
|
+
type?: types_pb.PinMatrixRequestTypeMap[keyof types_pb.PinMatrixRequestTypeMap],
|
510
|
+
}
|
511
|
+
}
|
512
|
+
|
513
|
+
export class PinMatrixAck extends jspb.Message {
|
514
|
+
hasPin(): boolean;
|
515
|
+
clearPin(): void;
|
516
|
+
getPin(): string | undefined;
|
517
|
+
setPin(value: string): void;
|
518
|
+
|
519
|
+
serializeBinary(): Uint8Array;
|
520
|
+
toObject(includeInstance?: boolean): PinMatrixAck.AsObject;
|
521
|
+
static toObject(includeInstance: boolean, msg: PinMatrixAck): PinMatrixAck.AsObject;
|
522
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
523
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
524
|
+
static serializeBinaryToWriter(message: PinMatrixAck, writer: jspb.BinaryWriter): void;
|
525
|
+
static deserializeBinary(bytes: Uint8Array): PinMatrixAck;
|
526
|
+
static deserializeBinaryFromReader(message: PinMatrixAck, reader: jspb.BinaryReader): PinMatrixAck;
|
527
|
+
}
|
528
|
+
|
529
|
+
export namespace PinMatrixAck {
|
530
|
+
export type AsObject = {
|
531
|
+
pin?: string,
|
532
|
+
}
|
533
|
+
}
|
534
|
+
|
535
|
+
export class Cancel extends jspb.Message {
|
536
|
+
serializeBinary(): Uint8Array;
|
537
|
+
toObject(includeInstance?: boolean): Cancel.AsObject;
|
538
|
+
static toObject(includeInstance: boolean, msg: Cancel): Cancel.AsObject;
|
539
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
540
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
541
|
+
static serializeBinaryToWriter(message: Cancel, writer: jspb.BinaryWriter): void;
|
542
|
+
static deserializeBinary(bytes: Uint8Array): Cancel;
|
543
|
+
static deserializeBinaryFromReader(message: Cancel, reader: jspb.BinaryReader): Cancel;
|
544
|
+
}
|
545
|
+
|
546
|
+
export namespace Cancel {
|
547
|
+
export type AsObject = {
|
548
|
+
}
|
549
|
+
}
|
550
|
+
|
551
|
+
export class PassphraseRequest extends jspb.Message {
|
552
|
+
serializeBinary(): Uint8Array;
|
553
|
+
toObject(includeInstance?: boolean): PassphraseRequest.AsObject;
|
554
|
+
static toObject(includeInstance: boolean, msg: PassphraseRequest): PassphraseRequest.AsObject;
|
555
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
556
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
557
|
+
static serializeBinaryToWriter(message: PassphraseRequest, writer: jspb.BinaryWriter): void;
|
558
|
+
static deserializeBinary(bytes: Uint8Array): PassphraseRequest;
|
559
|
+
static deserializeBinaryFromReader(message: PassphraseRequest, reader: jspb.BinaryReader): PassphraseRequest;
|
560
|
+
}
|
561
|
+
|
562
|
+
export namespace PassphraseRequest {
|
563
|
+
export type AsObject = {
|
564
|
+
}
|
565
|
+
}
|
566
|
+
|
567
|
+
export class PassphraseAck extends jspb.Message {
|
568
|
+
hasPassphrase(): boolean;
|
569
|
+
clearPassphrase(): void;
|
570
|
+
getPassphrase(): string | undefined;
|
571
|
+
setPassphrase(value: string): void;
|
572
|
+
|
573
|
+
serializeBinary(): Uint8Array;
|
574
|
+
toObject(includeInstance?: boolean): PassphraseAck.AsObject;
|
575
|
+
static toObject(includeInstance: boolean, msg: PassphraseAck): PassphraseAck.AsObject;
|
576
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
577
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
578
|
+
static serializeBinaryToWriter(message: PassphraseAck, writer: jspb.BinaryWriter): void;
|
579
|
+
static deserializeBinary(bytes: Uint8Array): PassphraseAck;
|
580
|
+
static deserializeBinaryFromReader(message: PassphraseAck, reader: jspb.BinaryReader): PassphraseAck;
|
581
|
+
}
|
582
|
+
|
583
|
+
export namespace PassphraseAck {
|
584
|
+
export type AsObject = {
|
585
|
+
passphrase?: string,
|
586
|
+
}
|
587
|
+
}
|
588
|
+
|
589
|
+
export class GetEntropy extends jspb.Message {
|
590
|
+
hasSize(): boolean;
|
591
|
+
clearSize(): void;
|
592
|
+
getSize(): number | undefined;
|
593
|
+
setSize(value: number): void;
|
594
|
+
|
595
|
+
serializeBinary(): Uint8Array;
|
596
|
+
toObject(includeInstance?: boolean): GetEntropy.AsObject;
|
597
|
+
static toObject(includeInstance: boolean, msg: GetEntropy): GetEntropy.AsObject;
|
598
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
599
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
600
|
+
static serializeBinaryToWriter(message: GetEntropy, writer: jspb.BinaryWriter): void;
|
601
|
+
static deserializeBinary(bytes: Uint8Array): GetEntropy;
|
602
|
+
static deserializeBinaryFromReader(message: GetEntropy, reader: jspb.BinaryReader): GetEntropy;
|
603
|
+
}
|
604
|
+
|
605
|
+
export namespace GetEntropy {
|
606
|
+
export type AsObject = {
|
607
|
+
size?: number,
|
608
|
+
}
|
609
|
+
}
|
610
|
+
|
611
|
+
export class Entropy extends jspb.Message {
|
612
|
+
hasEntropy(): boolean;
|
613
|
+
clearEntropy(): void;
|
614
|
+
getEntropy(): Uint8Array | string;
|
615
|
+
getEntropy_asU8(): Uint8Array;
|
616
|
+
getEntropy_asB64(): string;
|
617
|
+
setEntropy(value: Uint8Array | string): void;
|
618
|
+
|
619
|
+
serializeBinary(): Uint8Array;
|
620
|
+
toObject(includeInstance?: boolean): Entropy.AsObject;
|
621
|
+
static toObject(includeInstance: boolean, msg: Entropy): Entropy.AsObject;
|
622
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
623
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
624
|
+
static serializeBinaryToWriter(message: Entropy, writer: jspb.BinaryWriter): void;
|
625
|
+
static deserializeBinary(bytes: Uint8Array): Entropy;
|
626
|
+
static deserializeBinaryFromReader(message: Entropy, reader: jspb.BinaryReader): Entropy;
|
627
|
+
}
|
628
|
+
|
629
|
+
export namespace Entropy {
|
630
|
+
export type AsObject = {
|
631
|
+
entropy: Uint8Array | string,
|
632
|
+
}
|
633
|
+
}
|
634
|
+
|
635
|
+
export class GetPublicKey extends jspb.Message {
|
636
|
+
clearAddressNList(): void;
|
637
|
+
getAddressNList(): Array<number>;
|
638
|
+
setAddressNList(value: Array<number>): void;
|
639
|
+
addAddressN(value: number, index?: number): number;
|
640
|
+
|
641
|
+
hasEcdsaCurveName(): boolean;
|
642
|
+
clearEcdsaCurveName(): void;
|
643
|
+
getEcdsaCurveName(): string | undefined;
|
644
|
+
setEcdsaCurveName(value: string): void;
|
645
|
+
|
646
|
+
hasShowDisplay(): boolean;
|
647
|
+
clearShowDisplay(): void;
|
648
|
+
getShowDisplay(): boolean | undefined;
|
649
|
+
setShowDisplay(value: boolean): void;
|
650
|
+
|
651
|
+
hasCoinName(): boolean;
|
652
|
+
clearCoinName(): void;
|
653
|
+
getCoinName(): string | undefined;
|
654
|
+
setCoinName(value: string): void;
|
655
|
+
|
656
|
+
hasScriptType(): boolean;
|
657
|
+
clearScriptType(): void;
|
658
|
+
getScriptType(): types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap] | undefined;
|
659
|
+
setScriptType(value: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap]): void;
|
660
|
+
|
661
|
+
serializeBinary(): Uint8Array;
|
662
|
+
toObject(includeInstance?: boolean): GetPublicKey.AsObject;
|
663
|
+
static toObject(includeInstance: boolean, msg: GetPublicKey): GetPublicKey.AsObject;
|
664
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
665
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
666
|
+
static serializeBinaryToWriter(message: GetPublicKey, writer: jspb.BinaryWriter): void;
|
667
|
+
static deserializeBinary(bytes: Uint8Array): GetPublicKey;
|
668
|
+
static deserializeBinaryFromReader(message: GetPublicKey, reader: jspb.BinaryReader): GetPublicKey;
|
669
|
+
}
|
670
|
+
|
671
|
+
export namespace GetPublicKey {
|
672
|
+
export type AsObject = {
|
673
|
+
addressNList: Array<number>,
|
674
|
+
ecdsaCurveName?: string,
|
675
|
+
showDisplay?: boolean,
|
676
|
+
coinName?: string,
|
677
|
+
scriptType?: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap],
|
678
|
+
}
|
679
|
+
}
|
680
|
+
|
681
|
+
export class PublicKey extends jspb.Message {
|
682
|
+
hasNode(): boolean;
|
683
|
+
clearNode(): void;
|
684
|
+
getNode(): types_pb.HDNodeType;
|
685
|
+
setNode(value?: types_pb.HDNodeType): void;
|
686
|
+
|
687
|
+
hasXpub(): boolean;
|
688
|
+
clearXpub(): void;
|
689
|
+
getXpub(): string | undefined;
|
690
|
+
setXpub(value: string): void;
|
691
|
+
|
692
|
+
serializeBinary(): Uint8Array;
|
693
|
+
toObject(includeInstance?: boolean): PublicKey.AsObject;
|
694
|
+
static toObject(includeInstance: boolean, msg: PublicKey): PublicKey.AsObject;
|
695
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
696
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
697
|
+
static serializeBinaryToWriter(message: PublicKey, writer: jspb.BinaryWriter): void;
|
698
|
+
static deserializeBinary(bytes: Uint8Array): PublicKey;
|
699
|
+
static deserializeBinaryFromReader(message: PublicKey, reader: jspb.BinaryReader): PublicKey;
|
700
|
+
}
|
701
|
+
|
702
|
+
export namespace PublicKey {
|
703
|
+
export type AsObject = {
|
704
|
+
node: types_pb.HDNodeType.AsObject,
|
705
|
+
xpub?: string,
|
706
|
+
}
|
707
|
+
}
|
708
|
+
|
709
|
+
export class GetAddress extends jspb.Message {
|
710
|
+
clearAddressNList(): void;
|
711
|
+
getAddressNList(): Array<number>;
|
712
|
+
setAddressNList(value: Array<number>): void;
|
713
|
+
addAddressN(value: number, index?: number): number;
|
714
|
+
|
715
|
+
hasCoinName(): boolean;
|
716
|
+
clearCoinName(): void;
|
717
|
+
getCoinName(): string | undefined;
|
718
|
+
setCoinName(value: string): void;
|
719
|
+
|
720
|
+
hasShowDisplay(): boolean;
|
721
|
+
clearShowDisplay(): void;
|
722
|
+
getShowDisplay(): boolean | undefined;
|
723
|
+
setShowDisplay(value: boolean): void;
|
724
|
+
|
725
|
+
hasMultisig(): boolean;
|
726
|
+
clearMultisig(): void;
|
727
|
+
getMultisig(): types_pb.MultisigRedeemScriptType | undefined;
|
728
|
+
setMultisig(value?: types_pb.MultisigRedeemScriptType): void;
|
729
|
+
|
730
|
+
hasScriptType(): boolean;
|
731
|
+
clearScriptType(): void;
|
732
|
+
getScriptType(): types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap] | undefined;
|
733
|
+
setScriptType(value: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap]): void;
|
734
|
+
|
735
|
+
serializeBinary(): Uint8Array;
|
736
|
+
toObject(includeInstance?: boolean): GetAddress.AsObject;
|
737
|
+
static toObject(includeInstance: boolean, msg: GetAddress): GetAddress.AsObject;
|
738
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
739
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
740
|
+
static serializeBinaryToWriter(message: GetAddress, writer: jspb.BinaryWriter): void;
|
741
|
+
static deserializeBinary(bytes: Uint8Array): GetAddress;
|
742
|
+
static deserializeBinaryFromReader(message: GetAddress, reader: jspb.BinaryReader): GetAddress;
|
743
|
+
}
|
744
|
+
|
745
|
+
export namespace GetAddress {
|
746
|
+
export type AsObject = {
|
747
|
+
addressNList: Array<number>,
|
748
|
+
coinName?: string,
|
749
|
+
showDisplay?: boolean,
|
750
|
+
multisig?: types_pb.MultisigRedeemScriptType.AsObject,
|
751
|
+
scriptType?: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap],
|
752
|
+
}
|
753
|
+
}
|
754
|
+
|
755
|
+
export class Address extends jspb.Message {
|
756
|
+
hasAddress(): boolean;
|
757
|
+
clearAddress(): void;
|
758
|
+
getAddress(): string | undefined;
|
759
|
+
setAddress(value: string): void;
|
760
|
+
|
761
|
+
serializeBinary(): Uint8Array;
|
762
|
+
toObject(includeInstance?: boolean): Address.AsObject;
|
763
|
+
static toObject(includeInstance: boolean, msg: Address): Address.AsObject;
|
764
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
765
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
766
|
+
static serializeBinaryToWriter(message: Address, writer: jspb.BinaryWriter): void;
|
767
|
+
static deserializeBinary(bytes: Uint8Array): Address;
|
768
|
+
static deserializeBinaryFromReader(message: Address, reader: jspb.BinaryReader): Address;
|
769
|
+
}
|
770
|
+
|
771
|
+
export namespace Address {
|
772
|
+
export type AsObject = {
|
773
|
+
address?: string,
|
774
|
+
}
|
775
|
+
}
|
776
|
+
|
777
|
+
export class WipeDevice extends jspb.Message {
|
778
|
+
serializeBinary(): Uint8Array;
|
779
|
+
toObject(includeInstance?: boolean): WipeDevice.AsObject;
|
780
|
+
static toObject(includeInstance: boolean, msg: WipeDevice): WipeDevice.AsObject;
|
781
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
782
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
783
|
+
static serializeBinaryToWriter(message: WipeDevice, writer: jspb.BinaryWriter): void;
|
784
|
+
static deserializeBinary(bytes: Uint8Array): WipeDevice;
|
785
|
+
static deserializeBinaryFromReader(message: WipeDevice, reader: jspb.BinaryReader): WipeDevice;
|
786
|
+
}
|
787
|
+
|
788
|
+
export namespace WipeDevice {
|
789
|
+
export type AsObject = {
|
790
|
+
}
|
791
|
+
}
|
792
|
+
|
793
|
+
export class LoadDevice extends jspb.Message {
|
794
|
+
hasMnemonic(): boolean;
|
795
|
+
clearMnemonic(): void;
|
796
|
+
getMnemonic(): string | undefined;
|
797
|
+
setMnemonic(value: string): void;
|
798
|
+
|
799
|
+
hasNode(): boolean;
|
800
|
+
clearNode(): void;
|
801
|
+
getNode(): types_pb.HDNodeType | undefined;
|
802
|
+
setNode(value?: types_pb.HDNodeType): void;
|
803
|
+
|
804
|
+
hasPin(): boolean;
|
805
|
+
clearPin(): void;
|
806
|
+
getPin(): string | undefined;
|
807
|
+
setPin(value: string): void;
|
808
|
+
|
809
|
+
hasPassphraseProtection(): boolean;
|
810
|
+
clearPassphraseProtection(): void;
|
811
|
+
getPassphraseProtection(): boolean | undefined;
|
812
|
+
setPassphraseProtection(value: boolean): void;
|
813
|
+
|
814
|
+
hasLanguage(): boolean;
|
815
|
+
clearLanguage(): void;
|
816
|
+
getLanguage(): string | undefined;
|
817
|
+
setLanguage(value: string): void;
|
818
|
+
|
819
|
+
hasLabel(): boolean;
|
820
|
+
clearLabel(): void;
|
821
|
+
getLabel(): string | undefined;
|
822
|
+
setLabel(value: string): void;
|
823
|
+
|
824
|
+
hasSkipChecksum(): boolean;
|
825
|
+
clearSkipChecksum(): void;
|
826
|
+
getSkipChecksum(): boolean | undefined;
|
827
|
+
setSkipChecksum(value: boolean): void;
|
828
|
+
|
829
|
+
hasU2fCounter(): boolean;
|
830
|
+
clearU2fCounter(): void;
|
831
|
+
getU2fCounter(): number | undefined;
|
832
|
+
setU2fCounter(value: number): void;
|
833
|
+
|
834
|
+
serializeBinary(): Uint8Array;
|
835
|
+
toObject(includeInstance?: boolean): LoadDevice.AsObject;
|
836
|
+
static toObject(includeInstance: boolean, msg: LoadDevice): LoadDevice.AsObject;
|
837
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
838
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
839
|
+
static serializeBinaryToWriter(message: LoadDevice, writer: jspb.BinaryWriter): void;
|
840
|
+
static deserializeBinary(bytes: Uint8Array): LoadDevice;
|
841
|
+
static deserializeBinaryFromReader(message: LoadDevice, reader: jspb.BinaryReader): LoadDevice;
|
842
|
+
}
|
843
|
+
|
844
|
+
export namespace LoadDevice {
|
845
|
+
export type AsObject = {
|
846
|
+
mnemonic?: string,
|
847
|
+
node?: types_pb.HDNodeType.AsObject,
|
848
|
+
pin?: string,
|
849
|
+
passphraseProtection?: boolean,
|
850
|
+
language?: string,
|
851
|
+
label?: string,
|
852
|
+
skipChecksum?: boolean,
|
853
|
+
u2fCounter?: number,
|
854
|
+
}
|
855
|
+
}
|
856
|
+
|
857
|
+
export class ResetDevice extends jspb.Message {
|
858
|
+
hasDisplayRandom(): boolean;
|
859
|
+
clearDisplayRandom(): void;
|
860
|
+
getDisplayRandom(): boolean | undefined;
|
861
|
+
setDisplayRandom(value: boolean): void;
|
862
|
+
|
863
|
+
hasStrength(): boolean;
|
864
|
+
clearStrength(): void;
|
865
|
+
getStrength(): number | undefined;
|
866
|
+
setStrength(value: number): void;
|
867
|
+
|
868
|
+
hasPassphraseProtection(): boolean;
|
869
|
+
clearPassphraseProtection(): void;
|
870
|
+
getPassphraseProtection(): boolean | undefined;
|
871
|
+
setPassphraseProtection(value: boolean): void;
|
872
|
+
|
873
|
+
hasPinProtection(): boolean;
|
874
|
+
clearPinProtection(): void;
|
875
|
+
getPinProtection(): boolean | undefined;
|
876
|
+
setPinProtection(value: boolean): void;
|
877
|
+
|
878
|
+
hasLanguage(): boolean;
|
879
|
+
clearLanguage(): void;
|
880
|
+
getLanguage(): string | undefined;
|
881
|
+
setLanguage(value: string): void;
|
882
|
+
|
883
|
+
hasLabel(): boolean;
|
884
|
+
clearLabel(): void;
|
885
|
+
getLabel(): string | undefined;
|
886
|
+
setLabel(value: string): void;
|
887
|
+
|
888
|
+
hasNoBackup(): boolean;
|
889
|
+
clearNoBackup(): void;
|
890
|
+
getNoBackup(): boolean | undefined;
|
891
|
+
setNoBackup(value: boolean): void;
|
892
|
+
|
893
|
+
hasAutoLockDelayMs(): boolean;
|
894
|
+
clearAutoLockDelayMs(): void;
|
895
|
+
getAutoLockDelayMs(): number | undefined;
|
896
|
+
setAutoLockDelayMs(value: number): void;
|
897
|
+
|
898
|
+
hasU2fCounter(): boolean;
|
899
|
+
clearU2fCounter(): void;
|
900
|
+
getU2fCounter(): number | undefined;
|
901
|
+
setU2fCounter(value: number): void;
|
902
|
+
|
903
|
+
serializeBinary(): Uint8Array;
|
904
|
+
toObject(includeInstance?: boolean): ResetDevice.AsObject;
|
905
|
+
static toObject(includeInstance: boolean, msg: ResetDevice): ResetDevice.AsObject;
|
906
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
907
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
908
|
+
static serializeBinaryToWriter(message: ResetDevice, writer: jspb.BinaryWriter): void;
|
909
|
+
static deserializeBinary(bytes: Uint8Array): ResetDevice;
|
910
|
+
static deserializeBinaryFromReader(message: ResetDevice, reader: jspb.BinaryReader): ResetDevice;
|
911
|
+
}
|
912
|
+
|
913
|
+
export namespace ResetDevice {
|
914
|
+
export type AsObject = {
|
915
|
+
displayRandom?: boolean,
|
916
|
+
strength?: number,
|
917
|
+
passphraseProtection?: boolean,
|
918
|
+
pinProtection?: boolean,
|
919
|
+
language?: string,
|
920
|
+
label?: string,
|
921
|
+
noBackup?: boolean,
|
922
|
+
autoLockDelayMs?: number,
|
923
|
+
u2fCounter?: number,
|
924
|
+
}
|
925
|
+
}
|
926
|
+
|
927
|
+
export class EntropyRequest extends jspb.Message {
|
928
|
+
serializeBinary(): Uint8Array;
|
929
|
+
toObject(includeInstance?: boolean): EntropyRequest.AsObject;
|
930
|
+
static toObject(includeInstance: boolean, msg: EntropyRequest): EntropyRequest.AsObject;
|
931
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
932
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
933
|
+
static serializeBinaryToWriter(message: EntropyRequest, writer: jspb.BinaryWriter): void;
|
934
|
+
static deserializeBinary(bytes: Uint8Array): EntropyRequest;
|
935
|
+
static deserializeBinaryFromReader(message: EntropyRequest, reader: jspb.BinaryReader): EntropyRequest;
|
936
|
+
}
|
937
|
+
|
938
|
+
export namespace EntropyRequest {
|
939
|
+
export type AsObject = {
|
940
|
+
}
|
941
|
+
}
|
942
|
+
|
943
|
+
export class EntropyAck extends jspb.Message {
|
944
|
+
hasEntropy(): boolean;
|
945
|
+
clearEntropy(): void;
|
946
|
+
getEntropy(): Uint8Array | string;
|
947
|
+
getEntropy_asU8(): Uint8Array;
|
948
|
+
getEntropy_asB64(): string;
|
949
|
+
setEntropy(value: Uint8Array | string): void;
|
950
|
+
|
951
|
+
serializeBinary(): Uint8Array;
|
952
|
+
toObject(includeInstance?: boolean): EntropyAck.AsObject;
|
953
|
+
static toObject(includeInstance: boolean, msg: EntropyAck): EntropyAck.AsObject;
|
954
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
955
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
956
|
+
static serializeBinaryToWriter(message: EntropyAck, writer: jspb.BinaryWriter): void;
|
957
|
+
static deserializeBinary(bytes: Uint8Array): EntropyAck;
|
958
|
+
static deserializeBinaryFromReader(message: EntropyAck, reader: jspb.BinaryReader): EntropyAck;
|
959
|
+
}
|
960
|
+
|
961
|
+
export namespace EntropyAck {
|
962
|
+
export type AsObject = {
|
963
|
+
entropy: Uint8Array | string,
|
964
|
+
}
|
965
|
+
}
|
966
|
+
|
967
|
+
export class RecoveryDevice extends jspb.Message {
|
968
|
+
hasWordCount(): boolean;
|
969
|
+
clearWordCount(): void;
|
970
|
+
getWordCount(): number | undefined;
|
971
|
+
setWordCount(value: number): void;
|
972
|
+
|
973
|
+
hasPassphraseProtection(): boolean;
|
974
|
+
clearPassphraseProtection(): void;
|
975
|
+
getPassphraseProtection(): boolean | undefined;
|
976
|
+
setPassphraseProtection(value: boolean): void;
|
977
|
+
|
978
|
+
hasPinProtection(): boolean;
|
979
|
+
clearPinProtection(): void;
|
980
|
+
getPinProtection(): boolean | undefined;
|
981
|
+
setPinProtection(value: boolean): void;
|
982
|
+
|
983
|
+
hasLanguage(): boolean;
|
984
|
+
clearLanguage(): void;
|
985
|
+
getLanguage(): string | undefined;
|
986
|
+
setLanguage(value: string): void;
|
987
|
+
|
988
|
+
hasLabel(): boolean;
|
989
|
+
clearLabel(): void;
|
990
|
+
getLabel(): string | undefined;
|
991
|
+
setLabel(value: string): void;
|
992
|
+
|
993
|
+
hasEnforceWordlist(): boolean;
|
994
|
+
clearEnforceWordlist(): void;
|
995
|
+
getEnforceWordlist(): boolean | undefined;
|
996
|
+
setEnforceWordlist(value: boolean): void;
|
997
|
+
|
998
|
+
hasUseCharacterCipher(): boolean;
|
999
|
+
clearUseCharacterCipher(): void;
|
1000
|
+
getUseCharacterCipher(): boolean | undefined;
|
1001
|
+
setUseCharacterCipher(value: boolean): void;
|
1002
|
+
|
1003
|
+
hasAutoLockDelayMs(): boolean;
|
1004
|
+
clearAutoLockDelayMs(): void;
|
1005
|
+
getAutoLockDelayMs(): number | undefined;
|
1006
|
+
setAutoLockDelayMs(value: number): void;
|
1007
|
+
|
1008
|
+
hasU2fCounter(): boolean;
|
1009
|
+
clearU2fCounter(): void;
|
1010
|
+
getU2fCounter(): number | undefined;
|
1011
|
+
setU2fCounter(value: number): void;
|
1012
|
+
|
1013
|
+
hasDryRun(): boolean;
|
1014
|
+
clearDryRun(): void;
|
1015
|
+
getDryRun(): boolean | undefined;
|
1016
|
+
setDryRun(value: boolean): void;
|
1017
|
+
|
1018
|
+
serializeBinary(): Uint8Array;
|
1019
|
+
toObject(includeInstance?: boolean): RecoveryDevice.AsObject;
|
1020
|
+
static toObject(includeInstance: boolean, msg: RecoveryDevice): RecoveryDevice.AsObject;
|
1021
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1022
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1023
|
+
static serializeBinaryToWriter(message: RecoveryDevice, writer: jspb.BinaryWriter): void;
|
1024
|
+
static deserializeBinary(bytes: Uint8Array): RecoveryDevice;
|
1025
|
+
static deserializeBinaryFromReader(message: RecoveryDevice, reader: jspb.BinaryReader): RecoveryDevice;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
export namespace RecoveryDevice {
|
1029
|
+
export type AsObject = {
|
1030
|
+
wordCount?: number,
|
1031
|
+
passphraseProtection?: boolean,
|
1032
|
+
pinProtection?: boolean,
|
1033
|
+
language?: string,
|
1034
|
+
label?: string,
|
1035
|
+
enforceWordlist?: boolean,
|
1036
|
+
useCharacterCipher?: boolean,
|
1037
|
+
autoLockDelayMs?: number,
|
1038
|
+
u2fCounter?: number,
|
1039
|
+
dryRun?: boolean,
|
1040
|
+
}
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
export class WordRequest extends jspb.Message {
|
1044
|
+
serializeBinary(): Uint8Array;
|
1045
|
+
toObject(includeInstance?: boolean): WordRequest.AsObject;
|
1046
|
+
static toObject(includeInstance: boolean, msg: WordRequest): WordRequest.AsObject;
|
1047
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1048
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1049
|
+
static serializeBinaryToWriter(message: WordRequest, writer: jspb.BinaryWriter): void;
|
1050
|
+
static deserializeBinary(bytes: Uint8Array): WordRequest;
|
1051
|
+
static deserializeBinaryFromReader(message: WordRequest, reader: jspb.BinaryReader): WordRequest;
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
export namespace WordRequest {
|
1055
|
+
export type AsObject = {
|
1056
|
+
}
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
export class WordAck extends jspb.Message {
|
1060
|
+
hasWord(): boolean;
|
1061
|
+
clearWord(): void;
|
1062
|
+
getWord(): string | undefined;
|
1063
|
+
setWord(value: string): void;
|
1064
|
+
|
1065
|
+
serializeBinary(): Uint8Array;
|
1066
|
+
toObject(includeInstance?: boolean): WordAck.AsObject;
|
1067
|
+
static toObject(includeInstance: boolean, msg: WordAck): WordAck.AsObject;
|
1068
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1069
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1070
|
+
static serializeBinaryToWriter(message: WordAck, writer: jspb.BinaryWriter): void;
|
1071
|
+
static deserializeBinary(bytes: Uint8Array): WordAck;
|
1072
|
+
static deserializeBinaryFromReader(message: WordAck, reader: jspb.BinaryReader): WordAck;
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
export namespace WordAck {
|
1076
|
+
export type AsObject = {
|
1077
|
+
word?: string,
|
1078
|
+
}
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
export class CharacterRequest extends jspb.Message {
|
1082
|
+
hasWordPos(): boolean;
|
1083
|
+
clearWordPos(): void;
|
1084
|
+
getWordPos(): number | undefined;
|
1085
|
+
setWordPos(value: number): void;
|
1086
|
+
|
1087
|
+
hasCharacterPos(): boolean;
|
1088
|
+
clearCharacterPos(): void;
|
1089
|
+
getCharacterPos(): number | undefined;
|
1090
|
+
setCharacterPos(value: number): void;
|
1091
|
+
|
1092
|
+
serializeBinary(): Uint8Array;
|
1093
|
+
toObject(includeInstance?: boolean): CharacterRequest.AsObject;
|
1094
|
+
static toObject(includeInstance: boolean, msg: CharacterRequest): CharacterRequest.AsObject;
|
1095
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1096
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1097
|
+
static serializeBinaryToWriter(message: CharacterRequest, writer: jspb.BinaryWriter): void;
|
1098
|
+
static deserializeBinary(bytes: Uint8Array): CharacterRequest;
|
1099
|
+
static deserializeBinaryFromReader(message: CharacterRequest, reader: jspb.BinaryReader): CharacterRequest;
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
export namespace CharacterRequest {
|
1103
|
+
export type AsObject = {
|
1104
|
+
wordPos?: number,
|
1105
|
+
characterPos?: number,
|
1106
|
+
}
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
export class CharacterAck extends jspb.Message {
|
1110
|
+
hasCharacter(): boolean;
|
1111
|
+
clearCharacter(): void;
|
1112
|
+
getCharacter(): string | undefined;
|
1113
|
+
setCharacter(value: string): void;
|
1114
|
+
|
1115
|
+
hasDelete(): boolean;
|
1116
|
+
clearDelete(): void;
|
1117
|
+
getDelete(): boolean | undefined;
|
1118
|
+
setDelete(value: boolean): void;
|
1119
|
+
|
1120
|
+
hasDone(): boolean;
|
1121
|
+
clearDone(): void;
|
1122
|
+
getDone(): boolean | undefined;
|
1123
|
+
setDone(value: boolean): void;
|
1124
|
+
|
1125
|
+
serializeBinary(): Uint8Array;
|
1126
|
+
toObject(includeInstance?: boolean): CharacterAck.AsObject;
|
1127
|
+
static toObject(includeInstance: boolean, msg: CharacterAck): CharacterAck.AsObject;
|
1128
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1129
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1130
|
+
static serializeBinaryToWriter(message: CharacterAck, writer: jspb.BinaryWriter): void;
|
1131
|
+
static deserializeBinary(bytes: Uint8Array): CharacterAck;
|
1132
|
+
static deserializeBinaryFromReader(message: CharacterAck, reader: jspb.BinaryReader): CharacterAck;
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
export namespace CharacterAck {
|
1136
|
+
export type AsObject = {
|
1137
|
+
character?: string,
|
1138
|
+
pb_delete?: boolean,
|
1139
|
+
done?: boolean,
|
1140
|
+
}
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
export class SignMessage extends jspb.Message {
|
1144
|
+
clearAddressNList(): void;
|
1145
|
+
getAddressNList(): Array<number>;
|
1146
|
+
setAddressNList(value: Array<number>): void;
|
1147
|
+
addAddressN(value: number, index?: number): number;
|
1148
|
+
|
1149
|
+
hasMessage(): boolean;
|
1150
|
+
clearMessage(): void;
|
1151
|
+
getMessage(): Uint8Array | string;
|
1152
|
+
getMessage_asU8(): Uint8Array;
|
1153
|
+
getMessage_asB64(): string;
|
1154
|
+
setMessage(value: Uint8Array | string): void;
|
1155
|
+
|
1156
|
+
hasCoinName(): boolean;
|
1157
|
+
clearCoinName(): void;
|
1158
|
+
getCoinName(): string | undefined;
|
1159
|
+
setCoinName(value: string): void;
|
1160
|
+
|
1161
|
+
hasScriptType(): boolean;
|
1162
|
+
clearScriptType(): void;
|
1163
|
+
getScriptType(): types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap] | undefined;
|
1164
|
+
setScriptType(value: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap]): void;
|
1165
|
+
|
1166
|
+
serializeBinary(): Uint8Array;
|
1167
|
+
toObject(includeInstance?: boolean): SignMessage.AsObject;
|
1168
|
+
static toObject(includeInstance: boolean, msg: SignMessage): SignMessage.AsObject;
|
1169
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1170
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1171
|
+
static serializeBinaryToWriter(message: SignMessage, writer: jspb.BinaryWriter): void;
|
1172
|
+
static deserializeBinary(bytes: Uint8Array): SignMessage;
|
1173
|
+
static deserializeBinaryFromReader(message: SignMessage, reader: jspb.BinaryReader): SignMessage;
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
export namespace SignMessage {
|
1177
|
+
export type AsObject = {
|
1178
|
+
addressNList: Array<number>,
|
1179
|
+
message: Uint8Array | string,
|
1180
|
+
coinName?: string,
|
1181
|
+
scriptType?: types_pb.InputScriptTypeMap[keyof types_pb.InputScriptTypeMap],
|
1182
|
+
}
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
export class VerifyMessage extends jspb.Message {
|
1186
|
+
hasAddress(): boolean;
|
1187
|
+
clearAddress(): void;
|
1188
|
+
getAddress(): string | undefined;
|
1189
|
+
setAddress(value: string): void;
|
1190
|
+
|
1191
|
+
hasSignature(): boolean;
|
1192
|
+
clearSignature(): void;
|
1193
|
+
getSignature(): Uint8Array | string;
|
1194
|
+
getSignature_asU8(): Uint8Array;
|
1195
|
+
getSignature_asB64(): string;
|
1196
|
+
setSignature(value: Uint8Array | string): void;
|
1197
|
+
|
1198
|
+
hasMessage(): boolean;
|
1199
|
+
clearMessage(): void;
|
1200
|
+
getMessage(): Uint8Array | string;
|
1201
|
+
getMessage_asU8(): Uint8Array;
|
1202
|
+
getMessage_asB64(): string;
|
1203
|
+
setMessage(value: Uint8Array | string): void;
|
1204
|
+
|
1205
|
+
hasCoinName(): boolean;
|
1206
|
+
clearCoinName(): void;
|
1207
|
+
getCoinName(): string | undefined;
|
1208
|
+
setCoinName(value: string): void;
|
1209
|
+
|
1210
|
+
serializeBinary(): Uint8Array;
|
1211
|
+
toObject(includeInstance?: boolean): VerifyMessage.AsObject;
|
1212
|
+
static toObject(includeInstance: boolean, msg: VerifyMessage): VerifyMessage.AsObject;
|
1213
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1214
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1215
|
+
static serializeBinaryToWriter(message: VerifyMessage, writer: jspb.BinaryWriter): void;
|
1216
|
+
static deserializeBinary(bytes: Uint8Array): VerifyMessage;
|
1217
|
+
static deserializeBinaryFromReader(message: VerifyMessage, reader: jspb.BinaryReader): VerifyMessage;
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
export namespace VerifyMessage {
|
1221
|
+
export type AsObject = {
|
1222
|
+
address?: string,
|
1223
|
+
signature: Uint8Array | string,
|
1224
|
+
message: Uint8Array | string,
|
1225
|
+
coinName?: string,
|
1226
|
+
}
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
export class MessageSignature extends jspb.Message {
|
1230
|
+
hasAddress(): boolean;
|
1231
|
+
clearAddress(): void;
|
1232
|
+
getAddress(): string | undefined;
|
1233
|
+
setAddress(value: string): void;
|
1234
|
+
|
1235
|
+
hasSignature(): boolean;
|
1236
|
+
clearSignature(): void;
|
1237
|
+
getSignature(): Uint8Array | string;
|
1238
|
+
getSignature_asU8(): Uint8Array;
|
1239
|
+
getSignature_asB64(): string;
|
1240
|
+
setSignature(value: Uint8Array | string): void;
|
1241
|
+
|
1242
|
+
serializeBinary(): Uint8Array;
|
1243
|
+
toObject(includeInstance?: boolean): MessageSignature.AsObject;
|
1244
|
+
static toObject(includeInstance: boolean, msg: MessageSignature): MessageSignature.AsObject;
|
1245
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1246
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1247
|
+
static serializeBinaryToWriter(message: MessageSignature, writer: jspb.BinaryWriter): void;
|
1248
|
+
static deserializeBinary(bytes: Uint8Array): MessageSignature;
|
1249
|
+
static deserializeBinaryFromReader(message: MessageSignature, reader: jspb.BinaryReader): MessageSignature;
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
export namespace MessageSignature {
|
1253
|
+
export type AsObject = {
|
1254
|
+
address?: string,
|
1255
|
+
signature: Uint8Array | string,
|
1256
|
+
}
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
export class EncryptMessage extends jspb.Message {
|
1260
|
+
hasPubkey(): boolean;
|
1261
|
+
clearPubkey(): void;
|
1262
|
+
getPubkey(): Uint8Array | string;
|
1263
|
+
getPubkey_asU8(): Uint8Array;
|
1264
|
+
getPubkey_asB64(): string;
|
1265
|
+
setPubkey(value: Uint8Array | string): void;
|
1266
|
+
|
1267
|
+
hasMessage(): boolean;
|
1268
|
+
clearMessage(): void;
|
1269
|
+
getMessage(): Uint8Array | string;
|
1270
|
+
getMessage_asU8(): Uint8Array;
|
1271
|
+
getMessage_asB64(): string;
|
1272
|
+
setMessage(value: Uint8Array | string): void;
|
1273
|
+
|
1274
|
+
hasDisplayOnly(): boolean;
|
1275
|
+
clearDisplayOnly(): void;
|
1276
|
+
getDisplayOnly(): boolean | undefined;
|
1277
|
+
setDisplayOnly(value: boolean): void;
|
1278
|
+
|
1279
|
+
clearAddressNList(): void;
|
1280
|
+
getAddressNList(): Array<number>;
|
1281
|
+
setAddressNList(value: Array<number>): void;
|
1282
|
+
addAddressN(value: number, index?: number): number;
|
1283
|
+
|
1284
|
+
hasCoinName(): boolean;
|
1285
|
+
clearCoinName(): void;
|
1286
|
+
getCoinName(): string | undefined;
|
1287
|
+
setCoinName(value: string): void;
|
1288
|
+
|
1289
|
+
serializeBinary(): Uint8Array;
|
1290
|
+
toObject(includeInstance?: boolean): EncryptMessage.AsObject;
|
1291
|
+
static toObject(includeInstance: boolean, msg: EncryptMessage): EncryptMessage.AsObject;
|
1292
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1293
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1294
|
+
static serializeBinaryToWriter(message: EncryptMessage, writer: jspb.BinaryWriter): void;
|
1295
|
+
static deserializeBinary(bytes: Uint8Array): EncryptMessage;
|
1296
|
+
static deserializeBinaryFromReader(message: EncryptMessage, reader: jspb.BinaryReader): EncryptMessage;
|
1297
|
+
}
|
1298
|
+
|
1299
|
+
export namespace EncryptMessage {
|
1300
|
+
export type AsObject = {
|
1301
|
+
pubkey: Uint8Array | string,
|
1302
|
+
message: Uint8Array | string,
|
1303
|
+
displayOnly?: boolean,
|
1304
|
+
addressNList: Array<number>,
|
1305
|
+
coinName?: string,
|
1306
|
+
}
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
export class EncryptedMessage extends jspb.Message {
|
1310
|
+
hasNonce(): boolean;
|
1311
|
+
clearNonce(): void;
|
1312
|
+
getNonce(): Uint8Array | string;
|
1313
|
+
getNonce_asU8(): Uint8Array;
|
1314
|
+
getNonce_asB64(): string;
|
1315
|
+
setNonce(value: Uint8Array | string): void;
|
1316
|
+
|
1317
|
+
hasMessage(): boolean;
|
1318
|
+
clearMessage(): void;
|
1319
|
+
getMessage(): Uint8Array | string;
|
1320
|
+
getMessage_asU8(): Uint8Array;
|
1321
|
+
getMessage_asB64(): string;
|
1322
|
+
setMessage(value: Uint8Array | string): void;
|
1323
|
+
|
1324
|
+
hasHmac(): boolean;
|
1325
|
+
clearHmac(): void;
|
1326
|
+
getHmac(): Uint8Array | string;
|
1327
|
+
getHmac_asU8(): Uint8Array;
|
1328
|
+
getHmac_asB64(): string;
|
1329
|
+
setHmac(value: Uint8Array | string): void;
|
1330
|
+
|
1331
|
+
serializeBinary(): Uint8Array;
|
1332
|
+
toObject(includeInstance?: boolean): EncryptedMessage.AsObject;
|
1333
|
+
static toObject(includeInstance: boolean, msg: EncryptedMessage): EncryptedMessage.AsObject;
|
1334
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1335
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1336
|
+
static serializeBinaryToWriter(message: EncryptedMessage, writer: jspb.BinaryWriter): void;
|
1337
|
+
static deserializeBinary(bytes: Uint8Array): EncryptedMessage;
|
1338
|
+
static deserializeBinaryFromReader(message: EncryptedMessage, reader: jspb.BinaryReader): EncryptedMessage;
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
export namespace EncryptedMessage {
|
1342
|
+
export type AsObject = {
|
1343
|
+
nonce: Uint8Array | string,
|
1344
|
+
message: Uint8Array | string,
|
1345
|
+
hmac: Uint8Array | string,
|
1346
|
+
}
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
export class DecryptMessage extends jspb.Message {
|
1350
|
+
clearAddressNList(): void;
|
1351
|
+
getAddressNList(): Array<number>;
|
1352
|
+
setAddressNList(value: Array<number>): void;
|
1353
|
+
addAddressN(value: number, index?: number): number;
|
1354
|
+
|
1355
|
+
hasNonce(): boolean;
|
1356
|
+
clearNonce(): void;
|
1357
|
+
getNonce(): Uint8Array | string;
|
1358
|
+
getNonce_asU8(): Uint8Array;
|
1359
|
+
getNonce_asB64(): string;
|
1360
|
+
setNonce(value: Uint8Array | string): void;
|
1361
|
+
|
1362
|
+
hasMessage(): boolean;
|
1363
|
+
clearMessage(): void;
|
1364
|
+
getMessage(): Uint8Array | string;
|
1365
|
+
getMessage_asU8(): Uint8Array;
|
1366
|
+
getMessage_asB64(): string;
|
1367
|
+
setMessage(value: Uint8Array | string): void;
|
1368
|
+
|
1369
|
+
hasHmac(): boolean;
|
1370
|
+
clearHmac(): void;
|
1371
|
+
getHmac(): Uint8Array | string;
|
1372
|
+
getHmac_asU8(): Uint8Array;
|
1373
|
+
getHmac_asB64(): string;
|
1374
|
+
setHmac(value: Uint8Array | string): void;
|
1375
|
+
|
1376
|
+
serializeBinary(): Uint8Array;
|
1377
|
+
toObject(includeInstance?: boolean): DecryptMessage.AsObject;
|
1378
|
+
static toObject(includeInstance: boolean, msg: DecryptMessage): DecryptMessage.AsObject;
|
1379
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1380
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1381
|
+
static serializeBinaryToWriter(message: DecryptMessage, writer: jspb.BinaryWriter): void;
|
1382
|
+
static deserializeBinary(bytes: Uint8Array): DecryptMessage;
|
1383
|
+
static deserializeBinaryFromReader(message: DecryptMessage, reader: jspb.BinaryReader): DecryptMessage;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
export namespace DecryptMessage {
|
1387
|
+
export type AsObject = {
|
1388
|
+
addressNList: Array<number>,
|
1389
|
+
nonce: Uint8Array | string,
|
1390
|
+
message: Uint8Array | string,
|
1391
|
+
hmac: Uint8Array | string,
|
1392
|
+
}
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
export class DecryptedMessage extends jspb.Message {
|
1396
|
+
hasMessage(): boolean;
|
1397
|
+
clearMessage(): void;
|
1398
|
+
getMessage(): Uint8Array | string;
|
1399
|
+
getMessage_asU8(): Uint8Array;
|
1400
|
+
getMessage_asB64(): string;
|
1401
|
+
setMessage(value: Uint8Array | string): void;
|
1402
|
+
|
1403
|
+
hasAddress(): boolean;
|
1404
|
+
clearAddress(): void;
|
1405
|
+
getAddress(): string | undefined;
|
1406
|
+
setAddress(value: string): void;
|
1407
|
+
|
1408
|
+
serializeBinary(): Uint8Array;
|
1409
|
+
toObject(includeInstance?: boolean): DecryptedMessage.AsObject;
|
1410
|
+
static toObject(includeInstance: boolean, msg: DecryptedMessage): DecryptedMessage.AsObject;
|
1411
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1412
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1413
|
+
static serializeBinaryToWriter(message: DecryptedMessage, writer: jspb.BinaryWriter): void;
|
1414
|
+
static deserializeBinary(bytes: Uint8Array): DecryptedMessage;
|
1415
|
+
static deserializeBinaryFromReader(message: DecryptedMessage, reader: jspb.BinaryReader): DecryptedMessage;
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
export namespace DecryptedMessage {
|
1419
|
+
export type AsObject = {
|
1420
|
+
message: Uint8Array | string,
|
1421
|
+
address?: string,
|
1422
|
+
}
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
export class CipherKeyValue extends jspb.Message {
|
1426
|
+
clearAddressNList(): void;
|
1427
|
+
getAddressNList(): Array<number>;
|
1428
|
+
setAddressNList(value: Array<number>): void;
|
1429
|
+
addAddressN(value: number, index?: number): number;
|
1430
|
+
|
1431
|
+
hasKey(): boolean;
|
1432
|
+
clearKey(): void;
|
1433
|
+
getKey(): string | undefined;
|
1434
|
+
setKey(value: string): void;
|
1435
|
+
|
1436
|
+
hasValue(): boolean;
|
1437
|
+
clearValue(): void;
|
1438
|
+
getValue(): Uint8Array | string;
|
1439
|
+
getValue_asU8(): Uint8Array;
|
1440
|
+
getValue_asB64(): string;
|
1441
|
+
setValue(value: Uint8Array | string): void;
|
1442
|
+
|
1443
|
+
hasEncrypt(): boolean;
|
1444
|
+
clearEncrypt(): void;
|
1445
|
+
getEncrypt(): boolean | undefined;
|
1446
|
+
setEncrypt(value: boolean): void;
|
1447
|
+
|
1448
|
+
hasAskOnEncrypt(): boolean;
|
1449
|
+
clearAskOnEncrypt(): void;
|
1450
|
+
getAskOnEncrypt(): boolean | undefined;
|
1451
|
+
setAskOnEncrypt(value: boolean): void;
|
1452
|
+
|
1453
|
+
hasAskOnDecrypt(): boolean;
|
1454
|
+
clearAskOnDecrypt(): void;
|
1455
|
+
getAskOnDecrypt(): boolean | undefined;
|
1456
|
+
setAskOnDecrypt(value: boolean): void;
|
1457
|
+
|
1458
|
+
hasIv(): boolean;
|
1459
|
+
clearIv(): void;
|
1460
|
+
getIv(): Uint8Array | string;
|
1461
|
+
getIv_asU8(): Uint8Array;
|
1462
|
+
getIv_asB64(): string;
|
1463
|
+
setIv(value: Uint8Array | string): void;
|
1464
|
+
|
1465
|
+
serializeBinary(): Uint8Array;
|
1466
|
+
toObject(includeInstance?: boolean): CipherKeyValue.AsObject;
|
1467
|
+
static toObject(includeInstance: boolean, msg: CipherKeyValue): CipherKeyValue.AsObject;
|
1468
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1469
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1470
|
+
static serializeBinaryToWriter(message: CipherKeyValue, writer: jspb.BinaryWriter): void;
|
1471
|
+
static deserializeBinary(bytes: Uint8Array): CipherKeyValue;
|
1472
|
+
static deserializeBinaryFromReader(message: CipherKeyValue, reader: jspb.BinaryReader): CipherKeyValue;
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
export namespace CipherKeyValue {
|
1476
|
+
export type AsObject = {
|
1477
|
+
addressNList: Array<number>,
|
1478
|
+
key?: string,
|
1479
|
+
value: Uint8Array | string,
|
1480
|
+
encrypt?: boolean,
|
1481
|
+
askOnEncrypt?: boolean,
|
1482
|
+
askOnDecrypt?: boolean,
|
1483
|
+
iv: Uint8Array | string,
|
1484
|
+
}
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
export class CipheredKeyValue extends jspb.Message {
|
1488
|
+
hasValue(): boolean;
|
1489
|
+
clearValue(): void;
|
1490
|
+
getValue(): Uint8Array | string;
|
1491
|
+
getValue_asU8(): Uint8Array;
|
1492
|
+
getValue_asB64(): string;
|
1493
|
+
setValue(value: Uint8Array | string): void;
|
1494
|
+
|
1495
|
+
serializeBinary(): Uint8Array;
|
1496
|
+
toObject(includeInstance?: boolean): CipheredKeyValue.AsObject;
|
1497
|
+
static toObject(includeInstance: boolean, msg: CipheredKeyValue): CipheredKeyValue.AsObject;
|
1498
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1499
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1500
|
+
static serializeBinaryToWriter(message: CipheredKeyValue, writer: jspb.BinaryWriter): void;
|
1501
|
+
static deserializeBinary(bytes: Uint8Array): CipheredKeyValue;
|
1502
|
+
static deserializeBinaryFromReader(message: CipheredKeyValue, reader: jspb.BinaryReader): CipheredKeyValue;
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
export namespace CipheredKeyValue {
|
1506
|
+
export type AsObject = {
|
1507
|
+
value: Uint8Array | string,
|
1508
|
+
}
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
export class SignTx extends jspb.Message {
|
1512
|
+
hasOutputsCount(): boolean;
|
1513
|
+
clearOutputsCount(): void;
|
1514
|
+
getOutputsCount(): number | undefined;
|
1515
|
+
setOutputsCount(value: number): void;
|
1516
|
+
|
1517
|
+
hasInputsCount(): boolean;
|
1518
|
+
clearInputsCount(): void;
|
1519
|
+
getInputsCount(): number | undefined;
|
1520
|
+
setInputsCount(value: number): void;
|
1521
|
+
|
1522
|
+
hasCoinName(): boolean;
|
1523
|
+
clearCoinName(): void;
|
1524
|
+
getCoinName(): string | undefined;
|
1525
|
+
setCoinName(value: string): void;
|
1526
|
+
|
1527
|
+
hasVersion(): boolean;
|
1528
|
+
clearVersion(): void;
|
1529
|
+
getVersion(): number | undefined;
|
1530
|
+
setVersion(value: number): void;
|
1531
|
+
|
1532
|
+
hasLockTime(): boolean;
|
1533
|
+
clearLockTime(): void;
|
1534
|
+
getLockTime(): number | undefined;
|
1535
|
+
setLockTime(value: number): void;
|
1536
|
+
|
1537
|
+
hasExpiry(): boolean;
|
1538
|
+
clearExpiry(): void;
|
1539
|
+
getExpiry(): number | undefined;
|
1540
|
+
setExpiry(value: number): void;
|
1541
|
+
|
1542
|
+
hasOverwintered(): boolean;
|
1543
|
+
clearOverwintered(): void;
|
1544
|
+
getOverwintered(): boolean | undefined;
|
1545
|
+
setOverwintered(value: boolean): void;
|
1546
|
+
|
1547
|
+
hasVersionGroupId(): boolean;
|
1548
|
+
clearVersionGroupId(): void;
|
1549
|
+
getVersionGroupId(): number | undefined;
|
1550
|
+
setVersionGroupId(value: number): void;
|
1551
|
+
|
1552
|
+
hasBranchId(): boolean;
|
1553
|
+
clearBranchId(): void;
|
1554
|
+
getBranchId(): number | undefined;
|
1555
|
+
setBranchId(value: number): void;
|
1556
|
+
|
1557
|
+
serializeBinary(): Uint8Array;
|
1558
|
+
toObject(includeInstance?: boolean): SignTx.AsObject;
|
1559
|
+
static toObject(includeInstance: boolean, msg: SignTx): SignTx.AsObject;
|
1560
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1561
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1562
|
+
static serializeBinaryToWriter(message: SignTx, writer: jspb.BinaryWriter): void;
|
1563
|
+
static deserializeBinary(bytes: Uint8Array): SignTx;
|
1564
|
+
static deserializeBinaryFromReader(message: SignTx, reader: jspb.BinaryReader): SignTx;
|
1565
|
+
}
|
1566
|
+
|
1567
|
+
export namespace SignTx {
|
1568
|
+
export type AsObject = {
|
1569
|
+
outputsCount?: number,
|
1570
|
+
inputsCount?: number,
|
1571
|
+
coinName?: string,
|
1572
|
+
version?: number,
|
1573
|
+
lockTime?: number,
|
1574
|
+
expiry?: number,
|
1575
|
+
overwintered?: boolean,
|
1576
|
+
versionGroupId?: number,
|
1577
|
+
branchId?: number,
|
1578
|
+
}
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
export class TxRequest extends jspb.Message {
|
1582
|
+
hasRequestType(): boolean;
|
1583
|
+
clearRequestType(): void;
|
1584
|
+
getRequestType(): types_pb.RequestTypeMap[keyof types_pb.RequestTypeMap] | undefined;
|
1585
|
+
setRequestType(value: types_pb.RequestTypeMap[keyof types_pb.RequestTypeMap]): void;
|
1586
|
+
|
1587
|
+
hasDetails(): boolean;
|
1588
|
+
clearDetails(): void;
|
1589
|
+
getDetails(): types_pb.TxRequestDetailsType | undefined;
|
1590
|
+
setDetails(value?: types_pb.TxRequestDetailsType): void;
|
1591
|
+
|
1592
|
+
hasSerialized(): boolean;
|
1593
|
+
clearSerialized(): void;
|
1594
|
+
getSerialized(): types_pb.TxRequestSerializedType | undefined;
|
1595
|
+
setSerialized(value?: types_pb.TxRequestSerializedType): void;
|
1596
|
+
|
1597
|
+
serializeBinary(): Uint8Array;
|
1598
|
+
toObject(includeInstance?: boolean): TxRequest.AsObject;
|
1599
|
+
static toObject(includeInstance: boolean, msg: TxRequest): TxRequest.AsObject;
|
1600
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1601
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1602
|
+
static serializeBinaryToWriter(message: TxRequest, writer: jspb.BinaryWriter): void;
|
1603
|
+
static deserializeBinary(bytes: Uint8Array): TxRequest;
|
1604
|
+
static deserializeBinaryFromReader(message: TxRequest, reader: jspb.BinaryReader): TxRequest;
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
export namespace TxRequest {
|
1608
|
+
export type AsObject = {
|
1609
|
+
requestType?: types_pb.RequestTypeMap[keyof types_pb.RequestTypeMap],
|
1610
|
+
details?: types_pb.TxRequestDetailsType.AsObject,
|
1611
|
+
serialized?: types_pb.TxRequestSerializedType.AsObject,
|
1612
|
+
}
|
1613
|
+
}
|
1614
|
+
|
1615
|
+
export class TxAck extends jspb.Message {
|
1616
|
+
hasTx(): boolean;
|
1617
|
+
clearTx(): void;
|
1618
|
+
getTx(): types_pb.TransactionType | undefined;
|
1619
|
+
setTx(value?: types_pb.TransactionType): void;
|
1620
|
+
|
1621
|
+
serializeBinary(): Uint8Array;
|
1622
|
+
toObject(includeInstance?: boolean): TxAck.AsObject;
|
1623
|
+
static toObject(includeInstance: boolean, msg: TxAck): TxAck.AsObject;
|
1624
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1625
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1626
|
+
static serializeBinaryToWriter(message: TxAck, writer: jspb.BinaryWriter): void;
|
1627
|
+
static deserializeBinary(bytes: Uint8Array): TxAck;
|
1628
|
+
static deserializeBinaryFromReader(message: TxAck, reader: jspb.BinaryReader): TxAck;
|
1629
|
+
}
|
1630
|
+
|
1631
|
+
export namespace TxAck {
|
1632
|
+
export type AsObject = {
|
1633
|
+
tx?: types_pb.TransactionType.AsObject,
|
1634
|
+
}
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
export class RawTxAck extends jspb.Message {
|
1638
|
+
hasTx(): boolean;
|
1639
|
+
clearTx(): void;
|
1640
|
+
getTx(): types_pb.RawTransactionType | undefined;
|
1641
|
+
setTx(value?: types_pb.RawTransactionType): void;
|
1642
|
+
|
1643
|
+
serializeBinary(): Uint8Array;
|
1644
|
+
toObject(includeInstance?: boolean): RawTxAck.AsObject;
|
1645
|
+
static toObject(includeInstance: boolean, msg: RawTxAck): RawTxAck.AsObject;
|
1646
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1647
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1648
|
+
static serializeBinaryToWriter(message: RawTxAck, writer: jspb.BinaryWriter): void;
|
1649
|
+
static deserializeBinary(bytes: Uint8Array): RawTxAck;
|
1650
|
+
static deserializeBinaryFromReader(message: RawTxAck, reader: jspb.BinaryReader): RawTxAck;
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
export namespace RawTxAck {
|
1654
|
+
export type AsObject = {
|
1655
|
+
tx?: types_pb.RawTransactionType.AsObject,
|
1656
|
+
}
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
export class SignIdentity extends jspb.Message {
|
1660
|
+
hasIdentity(): boolean;
|
1661
|
+
clearIdentity(): void;
|
1662
|
+
getIdentity(): types_pb.IdentityType | undefined;
|
1663
|
+
setIdentity(value?: types_pb.IdentityType): void;
|
1664
|
+
|
1665
|
+
hasChallengeHidden(): boolean;
|
1666
|
+
clearChallengeHidden(): void;
|
1667
|
+
getChallengeHidden(): Uint8Array | string;
|
1668
|
+
getChallengeHidden_asU8(): Uint8Array;
|
1669
|
+
getChallengeHidden_asB64(): string;
|
1670
|
+
setChallengeHidden(value: Uint8Array | string): void;
|
1671
|
+
|
1672
|
+
hasChallengeVisual(): boolean;
|
1673
|
+
clearChallengeVisual(): void;
|
1674
|
+
getChallengeVisual(): string | undefined;
|
1675
|
+
setChallengeVisual(value: string): void;
|
1676
|
+
|
1677
|
+
hasEcdsaCurveName(): boolean;
|
1678
|
+
clearEcdsaCurveName(): void;
|
1679
|
+
getEcdsaCurveName(): string | undefined;
|
1680
|
+
setEcdsaCurveName(value: string): void;
|
1681
|
+
|
1682
|
+
serializeBinary(): Uint8Array;
|
1683
|
+
toObject(includeInstance?: boolean): SignIdentity.AsObject;
|
1684
|
+
static toObject(includeInstance: boolean, msg: SignIdentity): SignIdentity.AsObject;
|
1685
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1686
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1687
|
+
static serializeBinaryToWriter(message: SignIdentity, writer: jspb.BinaryWriter): void;
|
1688
|
+
static deserializeBinary(bytes: Uint8Array): SignIdentity;
|
1689
|
+
static deserializeBinaryFromReader(message: SignIdentity, reader: jspb.BinaryReader): SignIdentity;
|
1690
|
+
}
|
1691
|
+
|
1692
|
+
export namespace SignIdentity {
|
1693
|
+
export type AsObject = {
|
1694
|
+
identity?: types_pb.IdentityType.AsObject,
|
1695
|
+
challengeHidden: Uint8Array | string,
|
1696
|
+
challengeVisual?: string,
|
1697
|
+
ecdsaCurveName?: string,
|
1698
|
+
}
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
export class SignedIdentity extends jspb.Message {
|
1702
|
+
hasAddress(): boolean;
|
1703
|
+
clearAddress(): void;
|
1704
|
+
getAddress(): string | undefined;
|
1705
|
+
setAddress(value: string): void;
|
1706
|
+
|
1707
|
+
hasPublicKey(): boolean;
|
1708
|
+
clearPublicKey(): void;
|
1709
|
+
getPublicKey(): Uint8Array | string;
|
1710
|
+
getPublicKey_asU8(): Uint8Array;
|
1711
|
+
getPublicKey_asB64(): string;
|
1712
|
+
setPublicKey(value: Uint8Array | string): void;
|
1713
|
+
|
1714
|
+
hasSignature(): boolean;
|
1715
|
+
clearSignature(): void;
|
1716
|
+
getSignature(): Uint8Array | string;
|
1717
|
+
getSignature_asU8(): Uint8Array;
|
1718
|
+
getSignature_asB64(): string;
|
1719
|
+
setSignature(value: Uint8Array | string): void;
|
1720
|
+
|
1721
|
+
serializeBinary(): Uint8Array;
|
1722
|
+
toObject(includeInstance?: boolean): SignedIdentity.AsObject;
|
1723
|
+
static toObject(includeInstance: boolean, msg: SignedIdentity): SignedIdentity.AsObject;
|
1724
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1725
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1726
|
+
static serializeBinaryToWriter(message: SignedIdentity, writer: jspb.BinaryWriter): void;
|
1727
|
+
static deserializeBinary(bytes: Uint8Array): SignedIdentity;
|
1728
|
+
static deserializeBinaryFromReader(message: SignedIdentity, reader: jspb.BinaryReader): SignedIdentity;
|
1729
|
+
}
|
1730
|
+
|
1731
|
+
export namespace SignedIdentity {
|
1732
|
+
export type AsObject = {
|
1733
|
+
address?: string,
|
1734
|
+
publicKey: Uint8Array | string,
|
1735
|
+
signature: Uint8Array | string,
|
1736
|
+
}
|
1737
|
+
}
|
1738
|
+
|
1739
|
+
export class ApplyPolicies extends jspb.Message {
|
1740
|
+
clearPolicyList(): void;
|
1741
|
+
getPolicyList(): Array<types_pb.PolicyType>;
|
1742
|
+
setPolicyList(value: Array<types_pb.PolicyType>): void;
|
1743
|
+
addPolicy(value?: types_pb.PolicyType, index?: number): types_pb.PolicyType;
|
1744
|
+
|
1745
|
+
serializeBinary(): Uint8Array;
|
1746
|
+
toObject(includeInstance?: boolean): ApplyPolicies.AsObject;
|
1747
|
+
static toObject(includeInstance: boolean, msg: ApplyPolicies): ApplyPolicies.AsObject;
|
1748
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1749
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1750
|
+
static serializeBinaryToWriter(message: ApplyPolicies, writer: jspb.BinaryWriter): void;
|
1751
|
+
static deserializeBinary(bytes: Uint8Array): ApplyPolicies;
|
1752
|
+
static deserializeBinaryFromReader(message: ApplyPolicies, reader: jspb.BinaryReader): ApplyPolicies;
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
export namespace ApplyPolicies {
|
1756
|
+
export type AsObject = {
|
1757
|
+
policyList: Array<types_pb.PolicyType.AsObject>,
|
1758
|
+
}
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
export class FlashHash extends jspb.Message {
|
1762
|
+
hasAddress(): boolean;
|
1763
|
+
clearAddress(): void;
|
1764
|
+
getAddress(): number | undefined;
|
1765
|
+
setAddress(value: number): void;
|
1766
|
+
|
1767
|
+
hasLength(): boolean;
|
1768
|
+
clearLength(): void;
|
1769
|
+
getLength(): number | undefined;
|
1770
|
+
setLength(value: number): void;
|
1771
|
+
|
1772
|
+
hasChallenge(): boolean;
|
1773
|
+
clearChallenge(): void;
|
1774
|
+
getChallenge(): Uint8Array | string;
|
1775
|
+
getChallenge_asU8(): Uint8Array;
|
1776
|
+
getChallenge_asB64(): string;
|
1777
|
+
setChallenge(value: Uint8Array | string): void;
|
1778
|
+
|
1779
|
+
serializeBinary(): Uint8Array;
|
1780
|
+
toObject(includeInstance?: boolean): FlashHash.AsObject;
|
1781
|
+
static toObject(includeInstance: boolean, msg: FlashHash): FlashHash.AsObject;
|
1782
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1783
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1784
|
+
static serializeBinaryToWriter(message: FlashHash, writer: jspb.BinaryWriter): void;
|
1785
|
+
static deserializeBinary(bytes: Uint8Array): FlashHash;
|
1786
|
+
static deserializeBinaryFromReader(message: FlashHash, reader: jspb.BinaryReader): FlashHash;
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
export namespace FlashHash {
|
1790
|
+
export type AsObject = {
|
1791
|
+
address?: number,
|
1792
|
+
length?: number,
|
1793
|
+
challenge: Uint8Array | string,
|
1794
|
+
}
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
export class FlashWrite extends jspb.Message {
|
1798
|
+
hasAddress(): boolean;
|
1799
|
+
clearAddress(): void;
|
1800
|
+
getAddress(): number | undefined;
|
1801
|
+
setAddress(value: number): void;
|
1802
|
+
|
1803
|
+
hasData(): boolean;
|
1804
|
+
clearData(): void;
|
1805
|
+
getData(): Uint8Array | string;
|
1806
|
+
getData_asU8(): Uint8Array;
|
1807
|
+
getData_asB64(): string;
|
1808
|
+
setData(value: Uint8Array | string): void;
|
1809
|
+
|
1810
|
+
hasErase(): boolean;
|
1811
|
+
clearErase(): void;
|
1812
|
+
getErase(): boolean | undefined;
|
1813
|
+
setErase(value: boolean): void;
|
1814
|
+
|
1815
|
+
serializeBinary(): Uint8Array;
|
1816
|
+
toObject(includeInstance?: boolean): FlashWrite.AsObject;
|
1817
|
+
static toObject(includeInstance: boolean, msg: FlashWrite): FlashWrite.AsObject;
|
1818
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1819
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1820
|
+
static serializeBinaryToWriter(message: FlashWrite, writer: jspb.BinaryWriter): void;
|
1821
|
+
static deserializeBinary(bytes: Uint8Array): FlashWrite;
|
1822
|
+
static deserializeBinaryFromReader(message: FlashWrite, reader: jspb.BinaryReader): FlashWrite;
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
export namespace FlashWrite {
|
1826
|
+
export type AsObject = {
|
1827
|
+
address?: number,
|
1828
|
+
data: Uint8Array | string,
|
1829
|
+
erase?: boolean,
|
1830
|
+
}
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
export class FlashHashResponse extends jspb.Message {
|
1834
|
+
hasData(): boolean;
|
1835
|
+
clearData(): void;
|
1836
|
+
getData(): Uint8Array | string;
|
1837
|
+
getData_asU8(): Uint8Array;
|
1838
|
+
getData_asB64(): string;
|
1839
|
+
setData(value: Uint8Array | string): void;
|
1840
|
+
|
1841
|
+
serializeBinary(): Uint8Array;
|
1842
|
+
toObject(includeInstance?: boolean): FlashHashResponse.AsObject;
|
1843
|
+
static toObject(includeInstance: boolean, msg: FlashHashResponse): FlashHashResponse.AsObject;
|
1844
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1845
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1846
|
+
static serializeBinaryToWriter(message: FlashHashResponse, writer: jspb.BinaryWriter): void;
|
1847
|
+
static deserializeBinary(bytes: Uint8Array): FlashHashResponse;
|
1848
|
+
static deserializeBinaryFromReader(message: FlashHashResponse, reader: jspb.BinaryReader): FlashHashResponse;
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
export namespace FlashHashResponse {
|
1852
|
+
export type AsObject = {
|
1853
|
+
data: Uint8Array | string,
|
1854
|
+
}
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
export class DebugLinkFlashDump extends jspb.Message {
|
1858
|
+
hasAddress(): boolean;
|
1859
|
+
clearAddress(): void;
|
1860
|
+
getAddress(): number | undefined;
|
1861
|
+
setAddress(value: number): void;
|
1862
|
+
|
1863
|
+
hasLength(): boolean;
|
1864
|
+
clearLength(): void;
|
1865
|
+
getLength(): number | undefined;
|
1866
|
+
setLength(value: number): void;
|
1867
|
+
|
1868
|
+
serializeBinary(): Uint8Array;
|
1869
|
+
toObject(includeInstance?: boolean): DebugLinkFlashDump.AsObject;
|
1870
|
+
static toObject(includeInstance: boolean, msg: DebugLinkFlashDump): DebugLinkFlashDump.AsObject;
|
1871
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1872
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1873
|
+
static serializeBinaryToWriter(message: DebugLinkFlashDump, writer: jspb.BinaryWriter): void;
|
1874
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkFlashDump;
|
1875
|
+
static deserializeBinaryFromReader(message: DebugLinkFlashDump, reader: jspb.BinaryReader): DebugLinkFlashDump;
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
export namespace DebugLinkFlashDump {
|
1879
|
+
export type AsObject = {
|
1880
|
+
address?: number,
|
1881
|
+
length?: number,
|
1882
|
+
}
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
export class DebugLinkFlashDumpResponse extends jspb.Message {
|
1886
|
+
hasData(): boolean;
|
1887
|
+
clearData(): void;
|
1888
|
+
getData(): Uint8Array | string;
|
1889
|
+
getData_asU8(): Uint8Array;
|
1890
|
+
getData_asB64(): string;
|
1891
|
+
setData(value: Uint8Array | string): void;
|
1892
|
+
|
1893
|
+
serializeBinary(): Uint8Array;
|
1894
|
+
toObject(includeInstance?: boolean): DebugLinkFlashDumpResponse.AsObject;
|
1895
|
+
static toObject(includeInstance: boolean, msg: DebugLinkFlashDumpResponse): DebugLinkFlashDumpResponse.AsObject;
|
1896
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1897
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1898
|
+
static serializeBinaryToWriter(message: DebugLinkFlashDumpResponse, writer: jspb.BinaryWriter): void;
|
1899
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkFlashDumpResponse;
|
1900
|
+
static deserializeBinaryFromReader(message: DebugLinkFlashDumpResponse, reader: jspb.BinaryReader): DebugLinkFlashDumpResponse;
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
export namespace DebugLinkFlashDumpResponse {
|
1904
|
+
export type AsObject = {
|
1905
|
+
data: Uint8Array | string,
|
1906
|
+
}
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
export class SoftReset extends jspb.Message {
|
1910
|
+
serializeBinary(): Uint8Array;
|
1911
|
+
toObject(includeInstance?: boolean): SoftReset.AsObject;
|
1912
|
+
static toObject(includeInstance: boolean, msg: SoftReset): SoftReset.AsObject;
|
1913
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1914
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1915
|
+
static serializeBinaryToWriter(message: SoftReset, writer: jspb.BinaryWriter): void;
|
1916
|
+
static deserializeBinary(bytes: Uint8Array): SoftReset;
|
1917
|
+
static deserializeBinaryFromReader(message: SoftReset, reader: jspb.BinaryReader): SoftReset;
|
1918
|
+
}
|
1919
|
+
|
1920
|
+
export namespace SoftReset {
|
1921
|
+
export type AsObject = {
|
1922
|
+
}
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
export class FirmwareErase extends jspb.Message {
|
1926
|
+
serializeBinary(): Uint8Array;
|
1927
|
+
toObject(includeInstance?: boolean): FirmwareErase.AsObject;
|
1928
|
+
static toObject(includeInstance: boolean, msg: FirmwareErase): FirmwareErase.AsObject;
|
1929
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1930
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1931
|
+
static serializeBinaryToWriter(message: FirmwareErase, writer: jspb.BinaryWriter): void;
|
1932
|
+
static deserializeBinary(bytes: Uint8Array): FirmwareErase;
|
1933
|
+
static deserializeBinaryFromReader(message: FirmwareErase, reader: jspb.BinaryReader): FirmwareErase;
|
1934
|
+
}
|
1935
|
+
|
1936
|
+
export namespace FirmwareErase {
|
1937
|
+
export type AsObject = {
|
1938
|
+
}
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
export class FirmwareUpload extends jspb.Message {
|
1942
|
+
hasPayloadHash(): boolean;
|
1943
|
+
clearPayloadHash(): void;
|
1944
|
+
getPayloadHash(): Uint8Array | string;
|
1945
|
+
getPayloadHash_asU8(): Uint8Array;
|
1946
|
+
getPayloadHash_asB64(): string;
|
1947
|
+
setPayloadHash(value: Uint8Array | string): void;
|
1948
|
+
|
1949
|
+
hasPayload(): boolean;
|
1950
|
+
clearPayload(): void;
|
1951
|
+
getPayload(): Uint8Array | string;
|
1952
|
+
getPayload_asU8(): Uint8Array;
|
1953
|
+
getPayload_asB64(): string;
|
1954
|
+
setPayload(value: Uint8Array | string): void;
|
1955
|
+
|
1956
|
+
serializeBinary(): Uint8Array;
|
1957
|
+
toObject(includeInstance?: boolean): FirmwareUpload.AsObject;
|
1958
|
+
static toObject(includeInstance: boolean, msg: FirmwareUpload): FirmwareUpload.AsObject;
|
1959
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1960
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1961
|
+
static serializeBinaryToWriter(message: FirmwareUpload, writer: jspb.BinaryWriter): void;
|
1962
|
+
static deserializeBinary(bytes: Uint8Array): FirmwareUpload;
|
1963
|
+
static deserializeBinaryFromReader(message: FirmwareUpload, reader: jspb.BinaryReader): FirmwareUpload;
|
1964
|
+
}
|
1965
|
+
|
1966
|
+
export namespace FirmwareUpload {
|
1967
|
+
export type AsObject = {
|
1968
|
+
payloadHash: Uint8Array | string,
|
1969
|
+
payload: Uint8Array | string,
|
1970
|
+
}
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
export class DebugLinkDecision extends jspb.Message {
|
1974
|
+
hasYesNo(): boolean;
|
1975
|
+
clearYesNo(): void;
|
1976
|
+
getYesNo(): boolean | undefined;
|
1977
|
+
setYesNo(value: boolean): void;
|
1978
|
+
|
1979
|
+
serializeBinary(): Uint8Array;
|
1980
|
+
toObject(includeInstance?: boolean): DebugLinkDecision.AsObject;
|
1981
|
+
static toObject(includeInstance: boolean, msg: DebugLinkDecision): DebugLinkDecision.AsObject;
|
1982
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
1983
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
1984
|
+
static serializeBinaryToWriter(message: DebugLinkDecision, writer: jspb.BinaryWriter): void;
|
1985
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkDecision;
|
1986
|
+
static deserializeBinaryFromReader(message: DebugLinkDecision, reader: jspb.BinaryReader): DebugLinkDecision;
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
export namespace DebugLinkDecision {
|
1990
|
+
export type AsObject = {
|
1991
|
+
yesNo?: boolean,
|
1992
|
+
}
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
export class DebugLinkGetState extends jspb.Message {
|
1996
|
+
serializeBinary(): Uint8Array;
|
1997
|
+
toObject(includeInstance?: boolean): DebugLinkGetState.AsObject;
|
1998
|
+
static toObject(includeInstance: boolean, msg: DebugLinkGetState): DebugLinkGetState.AsObject;
|
1999
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2000
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2001
|
+
static serializeBinaryToWriter(message: DebugLinkGetState, writer: jspb.BinaryWriter): void;
|
2002
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkGetState;
|
2003
|
+
static deserializeBinaryFromReader(message: DebugLinkGetState, reader: jspb.BinaryReader): DebugLinkGetState;
|
2004
|
+
}
|
2005
|
+
|
2006
|
+
export namespace DebugLinkGetState {
|
2007
|
+
export type AsObject = {
|
2008
|
+
}
|
2009
|
+
}
|
2010
|
+
|
2011
|
+
export class DebugLinkState extends jspb.Message {
|
2012
|
+
hasLayout(): boolean;
|
2013
|
+
clearLayout(): void;
|
2014
|
+
getLayout(): Uint8Array | string;
|
2015
|
+
getLayout_asU8(): Uint8Array;
|
2016
|
+
getLayout_asB64(): string;
|
2017
|
+
setLayout(value: Uint8Array | string): void;
|
2018
|
+
|
2019
|
+
hasPin(): boolean;
|
2020
|
+
clearPin(): void;
|
2021
|
+
getPin(): string | undefined;
|
2022
|
+
setPin(value: string): void;
|
2023
|
+
|
2024
|
+
hasMatrix(): boolean;
|
2025
|
+
clearMatrix(): void;
|
2026
|
+
getMatrix(): string | undefined;
|
2027
|
+
setMatrix(value: string): void;
|
2028
|
+
|
2029
|
+
hasMnemonic(): boolean;
|
2030
|
+
clearMnemonic(): void;
|
2031
|
+
getMnemonic(): string | undefined;
|
2032
|
+
setMnemonic(value: string): void;
|
2033
|
+
|
2034
|
+
hasNode(): boolean;
|
2035
|
+
clearNode(): void;
|
2036
|
+
getNode(): types_pb.HDNodeType | undefined;
|
2037
|
+
setNode(value?: types_pb.HDNodeType): void;
|
2038
|
+
|
2039
|
+
hasPassphraseProtection(): boolean;
|
2040
|
+
clearPassphraseProtection(): void;
|
2041
|
+
getPassphraseProtection(): boolean | undefined;
|
2042
|
+
setPassphraseProtection(value: boolean): void;
|
2043
|
+
|
2044
|
+
hasResetWord(): boolean;
|
2045
|
+
clearResetWord(): void;
|
2046
|
+
getResetWord(): string | undefined;
|
2047
|
+
setResetWord(value: string): void;
|
2048
|
+
|
2049
|
+
hasResetEntropy(): boolean;
|
2050
|
+
clearResetEntropy(): void;
|
2051
|
+
getResetEntropy(): Uint8Array | string;
|
2052
|
+
getResetEntropy_asU8(): Uint8Array;
|
2053
|
+
getResetEntropy_asB64(): string;
|
2054
|
+
setResetEntropy(value: Uint8Array | string): void;
|
2055
|
+
|
2056
|
+
hasRecoveryFakeWord(): boolean;
|
2057
|
+
clearRecoveryFakeWord(): void;
|
2058
|
+
getRecoveryFakeWord(): string | undefined;
|
2059
|
+
setRecoveryFakeWord(value: string): void;
|
2060
|
+
|
2061
|
+
hasRecoveryWordPos(): boolean;
|
2062
|
+
clearRecoveryWordPos(): void;
|
2063
|
+
getRecoveryWordPos(): number | undefined;
|
2064
|
+
setRecoveryWordPos(value: number): void;
|
2065
|
+
|
2066
|
+
hasRecoveryCipher(): boolean;
|
2067
|
+
clearRecoveryCipher(): void;
|
2068
|
+
getRecoveryCipher(): string | undefined;
|
2069
|
+
setRecoveryCipher(value: string): void;
|
2070
|
+
|
2071
|
+
hasRecoveryAutoCompletedWord(): boolean;
|
2072
|
+
clearRecoveryAutoCompletedWord(): void;
|
2073
|
+
getRecoveryAutoCompletedWord(): string | undefined;
|
2074
|
+
setRecoveryAutoCompletedWord(value: string): void;
|
2075
|
+
|
2076
|
+
hasFirmwareHash(): boolean;
|
2077
|
+
clearFirmwareHash(): void;
|
2078
|
+
getFirmwareHash(): Uint8Array | string;
|
2079
|
+
getFirmwareHash_asU8(): Uint8Array;
|
2080
|
+
getFirmwareHash_asB64(): string;
|
2081
|
+
setFirmwareHash(value: Uint8Array | string): void;
|
2082
|
+
|
2083
|
+
hasStorageHash(): boolean;
|
2084
|
+
clearStorageHash(): void;
|
2085
|
+
getStorageHash(): Uint8Array | string;
|
2086
|
+
getStorageHash_asU8(): Uint8Array;
|
2087
|
+
getStorageHash_asB64(): string;
|
2088
|
+
setStorageHash(value: Uint8Array | string): void;
|
2089
|
+
|
2090
|
+
serializeBinary(): Uint8Array;
|
2091
|
+
toObject(includeInstance?: boolean): DebugLinkState.AsObject;
|
2092
|
+
static toObject(includeInstance: boolean, msg: DebugLinkState): DebugLinkState.AsObject;
|
2093
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2094
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2095
|
+
static serializeBinaryToWriter(message: DebugLinkState, writer: jspb.BinaryWriter): void;
|
2096
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkState;
|
2097
|
+
static deserializeBinaryFromReader(message: DebugLinkState, reader: jspb.BinaryReader): DebugLinkState;
|
2098
|
+
}
|
2099
|
+
|
2100
|
+
export namespace DebugLinkState {
|
2101
|
+
export type AsObject = {
|
2102
|
+
layout: Uint8Array | string,
|
2103
|
+
pin?: string,
|
2104
|
+
matrix?: string,
|
2105
|
+
mnemonic?: string,
|
2106
|
+
node?: types_pb.HDNodeType.AsObject,
|
2107
|
+
passphraseProtection?: boolean,
|
2108
|
+
resetWord?: string,
|
2109
|
+
resetEntropy: Uint8Array | string,
|
2110
|
+
recoveryFakeWord?: string,
|
2111
|
+
recoveryWordPos?: number,
|
2112
|
+
recoveryCipher?: string,
|
2113
|
+
recoveryAutoCompletedWord?: string,
|
2114
|
+
firmwareHash: Uint8Array | string,
|
2115
|
+
storageHash: Uint8Array | string,
|
2116
|
+
}
|
2117
|
+
}
|
2118
|
+
|
2119
|
+
export class DebugLinkStop extends jspb.Message {
|
2120
|
+
serializeBinary(): Uint8Array;
|
2121
|
+
toObject(includeInstance?: boolean): DebugLinkStop.AsObject;
|
2122
|
+
static toObject(includeInstance: boolean, msg: DebugLinkStop): DebugLinkStop.AsObject;
|
2123
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2124
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2125
|
+
static serializeBinaryToWriter(message: DebugLinkStop, writer: jspb.BinaryWriter): void;
|
2126
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkStop;
|
2127
|
+
static deserializeBinaryFromReader(message: DebugLinkStop, reader: jspb.BinaryReader): DebugLinkStop;
|
2128
|
+
}
|
2129
|
+
|
2130
|
+
export namespace DebugLinkStop {
|
2131
|
+
export type AsObject = {
|
2132
|
+
}
|
2133
|
+
}
|
2134
|
+
|
2135
|
+
export class DebugLinkLog extends jspb.Message {
|
2136
|
+
hasLevel(): boolean;
|
2137
|
+
clearLevel(): void;
|
2138
|
+
getLevel(): number | undefined;
|
2139
|
+
setLevel(value: number): void;
|
2140
|
+
|
2141
|
+
hasBucket(): boolean;
|
2142
|
+
clearBucket(): void;
|
2143
|
+
getBucket(): string | undefined;
|
2144
|
+
setBucket(value: string): void;
|
2145
|
+
|
2146
|
+
hasText(): boolean;
|
2147
|
+
clearText(): void;
|
2148
|
+
getText(): string | undefined;
|
2149
|
+
setText(value: string): void;
|
2150
|
+
|
2151
|
+
serializeBinary(): Uint8Array;
|
2152
|
+
toObject(includeInstance?: boolean): DebugLinkLog.AsObject;
|
2153
|
+
static toObject(includeInstance: boolean, msg: DebugLinkLog): DebugLinkLog.AsObject;
|
2154
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2155
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2156
|
+
static serializeBinaryToWriter(message: DebugLinkLog, writer: jspb.BinaryWriter): void;
|
2157
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkLog;
|
2158
|
+
static deserializeBinaryFromReader(message: DebugLinkLog, reader: jspb.BinaryReader): DebugLinkLog;
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
export namespace DebugLinkLog {
|
2162
|
+
export type AsObject = {
|
2163
|
+
level?: number,
|
2164
|
+
bucket?: string,
|
2165
|
+
text?: string,
|
2166
|
+
}
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
export class DebugLinkFillConfig extends jspb.Message {
|
2170
|
+
serializeBinary(): Uint8Array;
|
2171
|
+
toObject(includeInstance?: boolean): DebugLinkFillConfig.AsObject;
|
2172
|
+
static toObject(includeInstance: boolean, msg: DebugLinkFillConfig): DebugLinkFillConfig.AsObject;
|
2173
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2174
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2175
|
+
static serializeBinaryToWriter(message: DebugLinkFillConfig, writer: jspb.BinaryWriter): void;
|
2176
|
+
static deserializeBinary(bytes: Uint8Array): DebugLinkFillConfig;
|
2177
|
+
static deserializeBinaryFromReader(message: DebugLinkFillConfig, reader: jspb.BinaryReader): DebugLinkFillConfig;
|
2178
|
+
}
|
2179
|
+
|
2180
|
+
export namespace DebugLinkFillConfig {
|
2181
|
+
export type AsObject = {
|
2182
|
+
}
|
2183
|
+
}
|
2184
|
+
|
2185
|
+
export class ChangeWipeCode extends jspb.Message {
|
2186
|
+
hasRemove(): boolean;
|
2187
|
+
clearRemove(): void;
|
2188
|
+
getRemove(): boolean | undefined;
|
2189
|
+
setRemove(value: boolean): void;
|
2190
|
+
|
2191
|
+
serializeBinary(): Uint8Array;
|
2192
|
+
toObject(includeInstance?: boolean): ChangeWipeCode.AsObject;
|
2193
|
+
static toObject(includeInstance: boolean, msg: ChangeWipeCode): ChangeWipeCode.AsObject;
|
2194
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
2195
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
2196
|
+
static serializeBinaryToWriter(message: ChangeWipeCode, writer: jspb.BinaryWriter): void;
|
2197
|
+
static deserializeBinary(bytes: Uint8Array): ChangeWipeCode;
|
2198
|
+
static deserializeBinaryFromReader(message: ChangeWipeCode, reader: jspb.BinaryReader): ChangeWipeCode;
|
2199
|
+
}
|
2200
|
+
|
2201
|
+
export namespace ChangeWipeCode {
|
2202
|
+
export type AsObject = {
|
2203
|
+
remove?: boolean,
|
2204
|
+
}
|
2205
|
+
}
|
2206
|
+
|
2207
|
+
export interface MessageTypeMap {
|
2208
|
+
MESSAGETYPE_INITIALIZE: 0;
|
2209
|
+
MESSAGETYPE_PING: 1;
|
2210
|
+
MESSAGETYPE_SUCCESS: 2;
|
2211
|
+
MESSAGETYPE_FAILURE: 3;
|
2212
|
+
MESSAGETYPE_CHANGEPIN: 4;
|
2213
|
+
MESSAGETYPE_WIPEDEVICE: 5;
|
2214
|
+
MESSAGETYPE_FIRMWAREERASE: 6;
|
2215
|
+
MESSAGETYPE_FIRMWAREUPLOAD: 7;
|
2216
|
+
MESSAGETYPE_GETENTROPY: 9;
|
2217
|
+
MESSAGETYPE_ENTROPY: 10;
|
2218
|
+
MESSAGETYPE_GETPUBLICKEY: 11;
|
2219
|
+
MESSAGETYPE_PUBLICKEY: 12;
|
2220
|
+
MESSAGETYPE_LOADDEVICE: 13;
|
2221
|
+
MESSAGETYPE_RESETDEVICE: 14;
|
2222
|
+
MESSAGETYPE_SIGNTX: 15;
|
2223
|
+
MESSAGETYPE_FEATURES: 17;
|
2224
|
+
MESSAGETYPE_PINMATRIXREQUEST: 18;
|
2225
|
+
MESSAGETYPE_PINMATRIXACK: 19;
|
2226
|
+
MESSAGETYPE_CANCEL: 20;
|
2227
|
+
MESSAGETYPE_TXREQUEST: 21;
|
2228
|
+
MESSAGETYPE_TXACK: 22;
|
2229
|
+
MESSAGETYPE_CIPHERKEYVALUE: 23;
|
2230
|
+
MESSAGETYPE_CLEARSESSION: 24;
|
2231
|
+
MESSAGETYPE_APPLYSETTINGS: 25;
|
2232
|
+
MESSAGETYPE_BUTTONREQUEST: 26;
|
2233
|
+
MESSAGETYPE_BUTTONACK: 27;
|
2234
|
+
MESSAGETYPE_GETADDRESS: 29;
|
2235
|
+
MESSAGETYPE_ADDRESS: 30;
|
2236
|
+
MESSAGETYPE_ENTROPYREQUEST: 35;
|
2237
|
+
MESSAGETYPE_ENTROPYACK: 36;
|
2238
|
+
MESSAGETYPE_SIGNMESSAGE: 38;
|
2239
|
+
MESSAGETYPE_VERIFYMESSAGE: 39;
|
2240
|
+
MESSAGETYPE_MESSAGESIGNATURE: 40;
|
2241
|
+
MESSAGETYPE_PASSPHRASEREQUEST: 41;
|
2242
|
+
MESSAGETYPE_PASSPHRASEACK: 42;
|
2243
|
+
MESSAGETYPE_RECOVERYDEVICE: 45;
|
2244
|
+
MESSAGETYPE_WORDREQUEST: 46;
|
2245
|
+
MESSAGETYPE_WORDACK: 47;
|
2246
|
+
MESSAGETYPE_CIPHEREDKEYVALUE: 48;
|
2247
|
+
MESSAGETYPE_ENCRYPTMESSAGE: 49;
|
2248
|
+
MESSAGETYPE_ENCRYPTEDMESSAGE: 50;
|
2249
|
+
MESSAGETYPE_DECRYPTMESSAGE: 51;
|
2250
|
+
MESSAGETYPE_DECRYPTEDMESSAGE: 52;
|
2251
|
+
MESSAGETYPE_SIGNIDENTITY: 53;
|
2252
|
+
MESSAGETYPE_SIGNEDIDENTITY: 54;
|
2253
|
+
MESSAGETYPE_GETFEATURES: 55;
|
2254
|
+
MESSAGETYPE_ETHEREUMGETADDRESS: 56;
|
2255
|
+
MESSAGETYPE_ETHEREUMADDRESS: 57;
|
2256
|
+
MESSAGETYPE_ETHEREUMSIGNTX: 58;
|
2257
|
+
MESSAGETYPE_ETHEREUMTXREQUEST: 59;
|
2258
|
+
MESSAGETYPE_ETHEREUMTXACK: 60;
|
2259
|
+
MESSAGETYPE_CHARACTERREQUEST: 80;
|
2260
|
+
MESSAGETYPE_CHARACTERACK: 81;
|
2261
|
+
MESSAGETYPE_RAWTXACK: 82;
|
2262
|
+
MESSAGETYPE_APPLYPOLICIES: 83;
|
2263
|
+
MESSAGETYPE_FLASHHASH: 84;
|
2264
|
+
MESSAGETYPE_FLASHWRITE: 85;
|
2265
|
+
MESSAGETYPE_FLASHHASHRESPONSE: 86;
|
2266
|
+
MESSAGETYPE_DEBUGLINKFLASHDUMP: 87;
|
2267
|
+
MESSAGETYPE_DEBUGLINKFLASHDUMPRESPONSE: 88;
|
2268
|
+
MESSAGETYPE_SOFTRESET: 89;
|
2269
|
+
MESSAGETYPE_DEBUGLINKDECISION: 100;
|
2270
|
+
MESSAGETYPE_DEBUGLINKGETSTATE: 101;
|
2271
|
+
MESSAGETYPE_DEBUGLINKSTATE: 102;
|
2272
|
+
MESSAGETYPE_DEBUGLINKSTOP: 103;
|
2273
|
+
MESSAGETYPE_DEBUGLINKLOG: 104;
|
2274
|
+
MESSAGETYPE_DEBUGLINKFILLCONFIG: 105;
|
2275
|
+
MESSAGETYPE_GETCOINTABLE: 106;
|
2276
|
+
MESSAGETYPE_COINTABLE: 107;
|
2277
|
+
MESSAGETYPE_ETHEREUMSIGNMESSAGE: 108;
|
2278
|
+
MESSAGETYPE_ETHEREUMVERIFYMESSAGE: 109;
|
2279
|
+
MESSAGETYPE_ETHEREUMMESSAGESIGNATURE: 110;
|
2280
|
+
MESSAGETYPE_CHANGEWIPECODE: 111;
|
2281
|
+
MESSAGETYPE_ETHEREUMSIGNTYPEDHASH: 112;
|
2282
|
+
MESSAGETYPE_ETHEREUMTYPEDDATASIGNATURE: 113;
|
2283
|
+
MESSAGETYPE_ETHEREUM712TYPESVALUES: 114;
|
2284
|
+
MESSAGETYPE_RIPPLEGETADDRESS: 400;
|
2285
|
+
MESSAGETYPE_RIPPLEADDRESS: 401;
|
2286
|
+
MESSAGETYPE_RIPPLESIGNTX: 402;
|
2287
|
+
MESSAGETYPE_RIPPLESIGNEDTX: 403;
|
2288
|
+
MESSAGETYPE_THORCHAINGETADDRESS: 500;
|
2289
|
+
MESSAGETYPE_THORCHAINADDRESS: 501;
|
2290
|
+
MESSAGETYPE_THORCHAINSIGNTX: 502;
|
2291
|
+
MESSAGETYPE_THORCHAINMSGREQUEST: 503;
|
2292
|
+
MESSAGETYPE_THORCHAINMSGACK: 504;
|
2293
|
+
MESSAGETYPE_THORCHAINSIGNEDTX: 505;
|
2294
|
+
MESSAGETYPE_EOSGETPUBLICKEY: 600;
|
2295
|
+
MESSAGETYPE_EOSPUBLICKEY: 601;
|
2296
|
+
MESSAGETYPE_EOSSIGNTX: 602;
|
2297
|
+
MESSAGETYPE_EOSTXACTIONREQUEST: 603;
|
2298
|
+
MESSAGETYPE_EOSTXACTIONACK: 604;
|
2299
|
+
MESSAGETYPE_EOSSIGNEDTX: 605;
|
2300
|
+
MESSAGETYPE_NANOGETADDRESS: 700;
|
2301
|
+
MESSAGETYPE_NANOADDRESS: 701;
|
2302
|
+
MESSAGETYPE_NANOSIGNTX: 702;
|
2303
|
+
MESSAGETYPE_NANOSIGNEDTX: 703;
|
2304
|
+
MESSAGETYPE_BINANCEGETADDRESS: 800;
|
2305
|
+
MESSAGETYPE_BINANCEADDRESS: 801;
|
2306
|
+
MESSAGETYPE_BINANCEGETPUBLICKEY: 802;
|
2307
|
+
MESSAGETYPE_BINANCEPUBLICKEY: 803;
|
2308
|
+
MESSAGETYPE_BINANCESIGNTX: 804;
|
2309
|
+
MESSAGETYPE_BINANCETXREQUEST: 805;
|
2310
|
+
MESSAGETYPE_BINANCETRANSFERMSG: 806;
|
2311
|
+
MESSAGETYPE_BINANCEORDERMSG: 807;
|
2312
|
+
MESSAGETYPE_BINANCECANCELMSG: 808;
|
2313
|
+
MESSAGETYPE_BINANCESIGNEDTX: 809;
|
2314
|
+
MESSAGETYPE_COSMOSGETADDRESS: 900;
|
2315
|
+
MESSAGETYPE_COSMOSADDRESS: 901;
|
2316
|
+
MESSAGETYPE_COSMOSSIGNTX: 902;
|
2317
|
+
MESSAGETYPE_COSMOSMSGREQUEST: 903;
|
2318
|
+
MESSAGETYPE_COSMOSMSGACK: 904;
|
2319
|
+
MESSAGETYPE_COSMOSSIGNEDTX: 905;
|
2320
|
+
MESSAGETYPE_COSMOSMSGDELEGATE: 906;
|
2321
|
+
MESSAGETYPE_COSMOSMSGUNDELEGATE: 907;
|
2322
|
+
MESSAGETYPE_COSMOSMSGREDELEGATE: 908;
|
2323
|
+
MESSAGETYPE_COSMOSMSGREWARDS: 909;
|
2324
|
+
MESSAGETYPE_COSMOSMSGIBCTRANSFER: 910;
|
2325
|
+
MESSAGETYPE_TENDERMINTGETADDRESS: 1000;
|
2326
|
+
MESSAGETYPE_TENDERMINTADDRESS: 1001;
|
2327
|
+
MESSAGETYPE_TENDERMINTSIGNTX: 1002;
|
2328
|
+
MESSAGETYPE_TENDERMINTMSGREQUEST: 1003;
|
2329
|
+
MESSAGETYPE_TENDERMINTMSGACK: 1004;
|
2330
|
+
MESSAGETYPE_TENDERMINTMSGSEND: 1005;
|
2331
|
+
MESSAGETYPE_TENDERMINTSIGNEDTX: 1006;
|
2332
|
+
MESSAGETYPE_TENDERMINTMSGDELEGATE: 1007;
|
2333
|
+
MESSAGETYPE_TENDERMINTMSGUNDELEGATE: 1008;
|
2334
|
+
MESSAGETYPE_TENDERMINTMSGREDELEGATE: 1009;
|
2335
|
+
MESSAGETYPE_TENDERMINTMSGREWARDS: 1010;
|
2336
|
+
MESSAGETYPE_TENDERMINTMSGIBCTRANSFER: 1011;
|
2337
|
+
MESSAGETYPE_OSMOSISGETADDRESS: 1100;
|
2338
|
+
MESSAGETYPE_OSMOSISADDRESS: 1101;
|
2339
|
+
MESSAGETYPE_OSMOSISSIGNTX: 1102;
|
2340
|
+
MESSAGETYPE_OSMOSISMSGREQUEST: 1103;
|
2341
|
+
MESSAGETYPE_OSMOSISMSGACK: 1104;
|
2342
|
+
MESSAGETYPE_OSMOSISMSGSEND: 1105;
|
2343
|
+
MESSAGETYPE_OSMOSISMSGDELEGATE: 1106;
|
2344
|
+
MESSAGETYPE_OSMOSISMSGUNDELEGATE: 1107;
|
2345
|
+
MESSAGETYPE_OSMOSISMSGREDELEGATE: 1108;
|
2346
|
+
MESSAGETYPE_OSMOSISMSGREWARDS: 1109;
|
2347
|
+
MESSAGETYPE_OSMOSISMSGLPADD: 1110;
|
2348
|
+
MESSAGETYPE_OSMOSISMSGLPREMOVE: 1111;
|
2349
|
+
MESSAGETYPE_OSMOSISMSGLPSTAKE: 1112;
|
2350
|
+
MESSAGETYPE_OSMOSISMSGLPUNSTAKE: 1113;
|
2351
|
+
MESSAGETYPE_OSMOSISMSGIBCTRANSFER: 1114;
|
2352
|
+
MESSAGETYPE_OSMOSISMSGSWAP: 1115;
|
2353
|
+
MESSAGETYPE_OSMOSISSIGNEDTX: 1116;
|
2354
|
+
}
|
2355
|
+
|
2356
|
+
export const MessageType: MessageTypeMap;
|
2357
|
+
|