@trezor/connect 9.6.0 → 9.6.1-beta.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/CHANGELOG.md +37 -8
- package/README.md +1 -1
- package/lib/api/blockchainEstimateFee.js +1 -0
- package/lib/api/discoverAccounts.js +10 -2
- package/lib/api/eos/eosSignTx.d.ts +3 -3
- package/lib/api/ethereum/api/ethereumSignMessage.js +1 -1
- package/lib/api/ethereum/api/ethereumSignTypedData.d.ts +1 -1
- package/lib/api/firmware/getBinary.js +2 -2
- package/lib/api/getAddress.d.ts +1 -0
- package/lib/api/getAddress.js +1 -0
- package/lib/api/getCoinInfo.d.ts +3 -3
- package/lib/api/getNonce.d.ts +9 -0
- package/lib/api/getNonce.js +15 -0
- package/lib/api/index.d.ts +1 -0
- package/lib/api/index.js +4 -2
- package/lib/api/nem/nemSignTx.d.ts +1 -1
- package/lib/api/resetDevice.d.ts +2 -3
- package/lib/api/resetDevice.js +47 -49
- package/lib/api/signMessage.js +1 -1
- package/lib/api/signTransaction.js +6 -1
- package/lib/backend/Blockchain.d.ts +1 -0
- package/lib/backend/fees/BitcoinFeeLevels.d.ts +2 -4
- package/lib/backend/fees/BitcoinFeeLevels.js +11 -73
- package/lib/backend/fees/EthereumFeeLevels.d.ts +1 -3
- package/lib/backend/fees/EthereumFeeLevels.js +8 -5
- package/lib/backend/fees/MiscFeeLevels.d.ts +0 -3
- package/lib/backend/fees/MiscFeeLevels.js +2 -2
- package/lib/constants/errors.d.ts +1 -0
- package/lib/constants/errors.js +1 -0
- package/lib/core/AbstractMethod.d.ts +1 -1
- package/lib/core/index.js +43 -53
- package/lib/core/onCallFirmwareUpdate.js +2 -2
- package/lib/data/coinInfo.d.ts +11 -11
- package/lib/data/coinInfo.js +1 -1
- package/lib/data/connectSettings.js +0 -3
- package/lib/data/defaultFeeLevels.d.ts +3 -1
- package/lib/data/defaultFeeLevels.js +22 -12
- package/lib/data/deviceAuthenticityConfig.js +4 -1
- package/lib/data/firmwareInfo.d.ts +1 -0
- package/lib/data/firmwareInfo.js +14 -1
- package/lib/data/version.d.ts +1 -1
- package/lib/data/version.js +1 -1
- package/lib/device/Device.d.ts +20 -21
- package/lib/device/Device.js +78 -123
- package/lib/device/DeviceCurrentSession.d.ts +441 -4027
- package/lib/device/DeviceCurrentSession.js +75 -44
- package/lib/device/DeviceList.d.ts +3 -8
- package/lib/device/DeviceList.js +21 -77
- package/lib/device/TransportManager.d.ts +2 -6
- package/lib/device/TransportManager.js +11 -7
- package/lib/device/checkFirmwareRevision.js +2 -2
- package/lib/device/workflow/index.d.ts +2 -0
- package/lib/device/workflow/index.js +6 -0
- package/lib/device/workflow/validateState.d.ts +3 -0
- package/lib/device/workflow/validateState.js +97 -0
- package/lib/events/device.d.ts +19 -1
- package/lib/events/device.js +2 -0
- package/lib/events/index.d.ts +4 -0
- package/lib/events/ui-request.d.ts +24 -3
- package/lib/events/ui-request.js +3 -0
- package/lib/events/ui-response.d.ts +11 -1
- package/lib/events/ui-response.js +1 -0
- package/lib/factory.js +1 -0
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/lib/types/api/applySettings.d.ts +1 -0
- package/lib/types/api/discoverAccounts.d.ts +17 -4
- package/lib/types/api/discoverAccounts.js +2 -0
- package/lib/types/api/getNonce.d.ts +4 -0
- package/lib/types/api/getNonce.js +3 -0
- package/lib/types/api/index.d.ts +2 -0
- package/lib/types/coinInfo.d.ts +6 -6
- package/lib/types/coinInfo.js +2 -0
- package/lib/types/device.d.ts +3 -4
- package/lib/types/fees.d.ts +1 -1
- package/lib/types/fees.js +1 -1
- package/lib/types/params.d.ts +1 -0
- package/lib/types/settings.d.ts +0 -1
- package/lib/types/workflow.d.ts +8 -0
- package/lib/types/workflow.js +3 -0
- package/lib/utils/formatUtils.d.ts +1 -0
- package/lib/utils/formatUtils.js +9 -1
- package/lib/utils/uiPromiseManager.d.ts +2 -0
- package/package.json +17 -17
- package/lib/data/downloadReleasesMetadata.d.ts +0 -7
- package/lib/data/downloadReleasesMetadata.js +0 -18
- package/lib/data/models.d.ts +0 -8
- package/lib/data/models.js +0 -49
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { MessagesSchema as Messages } from '@trezor/protobuf';
|
|
2
|
-
import {
|
|
3
|
-
import { Session, Transport } from '@trezor/transport';
|
|
2
|
+
import { MessageResponse, Session, Transport } from '@trezor/transport';
|
|
4
3
|
import { Device } from './Device';
|
|
5
4
|
export interface TypedCallProvider {
|
|
6
5
|
typedCall: Messages.TypedCall;
|
|
@@ -10,4409 +9,824 @@ export interface TypedCallProvider {
|
|
|
10
9
|
export declare class DeviceCurrentSession implements TypedCallProvider {
|
|
11
10
|
private readonly device;
|
|
12
11
|
private readonly transport;
|
|
13
|
-
private readonly protocol;
|
|
14
12
|
private readonly session;
|
|
15
13
|
private disposed?;
|
|
16
14
|
private callPromise?;
|
|
17
15
|
private abortController?;
|
|
18
|
-
constructor(device: Device, transport: Transport,
|
|
16
|
+
constructor(device: Device, transport: Transport, session: Session);
|
|
19
17
|
isDisposed(): boolean;
|
|
20
|
-
typedCall(type: Messages.MessageKey,
|
|
21
|
-
type: "
|
|
22
|
-
message:
|
|
23
|
-
passphrase?: string | undefined;
|
|
24
|
-
_state?: string | undefined;
|
|
25
|
-
on_device?: boolean | undefined;
|
|
26
|
-
};
|
|
18
|
+
typedCall(type: Messages.MessageKey, expectedType: Messages.MessageKey | Messages.MessageKey[], msg?: Messages.MessagePayload): Promise<{
|
|
19
|
+
type: "HDNodePathType";
|
|
20
|
+
message: import("@trezor/protobuf/lib/messages").HDNodePathType;
|
|
27
21
|
} | {
|
|
28
|
-
type: "
|
|
29
|
-
message:
|
|
30
|
-
value: string;
|
|
31
|
-
};
|
|
22
|
+
type: "HDNodeType";
|
|
23
|
+
message: import("@trezor/protobuf/lib/messages").HDNodeType;
|
|
32
24
|
} | {
|
|
33
|
-
type: "
|
|
34
|
-
message:
|
|
35
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
36
|
-
ecdsa_curve_name?: string | undefined;
|
|
37
|
-
show_display?: boolean | undefined;
|
|
38
|
-
coin_name?: string | undefined;
|
|
39
|
-
ignore_xpub_magic?: boolean | undefined;
|
|
40
|
-
address_n: number[];
|
|
41
|
-
};
|
|
25
|
+
type: "MultisigRedeemScriptType";
|
|
26
|
+
message: import("@trezor/protobuf/lib/messages").MultisigRedeemScriptType;
|
|
42
27
|
} | {
|
|
43
|
-
type: "
|
|
44
|
-
message:
|
|
45
|
-
descriptor?: string | undefined;
|
|
46
|
-
root_fingerprint?: number | undefined;
|
|
47
|
-
node: {
|
|
48
|
-
private_key?: string | undefined;
|
|
49
|
-
depth: number;
|
|
50
|
-
fingerprint: number;
|
|
51
|
-
child_num: number;
|
|
52
|
-
chain_code: string;
|
|
53
|
-
public_key: string;
|
|
54
|
-
};
|
|
55
|
-
xpub: string;
|
|
56
|
-
};
|
|
28
|
+
type: "CoinJoinRequest";
|
|
29
|
+
message: import("@trezor/protobuf/lib/messages").CoinJoinRequest;
|
|
57
30
|
} | {
|
|
58
|
-
type: "
|
|
59
|
-
message:
|
|
60
|
-
_passphrase_cached?: boolean | undefined;
|
|
61
|
-
busy?: boolean | undefined;
|
|
62
|
-
homescreen_format?: "Toif" | "Jpeg" | "ToiG" | undefined;
|
|
63
|
-
hide_passphrase_from_host?: boolean | undefined;
|
|
64
|
-
unit_color?: number | undefined;
|
|
65
|
-
unit_btconly?: boolean | undefined;
|
|
66
|
-
homescreen_width?: number | undefined;
|
|
67
|
-
homescreen_height?: number | undefined;
|
|
68
|
-
bootloader_locked?: boolean | undefined;
|
|
69
|
-
language_version_matches?: boolean | undefined;
|
|
70
|
-
unit_packaging?: number | undefined;
|
|
71
|
-
haptic_feedback?: boolean | undefined;
|
|
72
|
-
recovery_type?: "NormalRecovery" | "DryRun" | "UnlockRepeatedBackup" | undefined;
|
|
73
|
-
optiga_sec?: number | undefined;
|
|
74
|
-
vendor: string;
|
|
75
|
-
major_version: number;
|
|
76
|
-
minor_version: number;
|
|
77
|
-
patch_version: number;
|
|
78
|
-
bootloader_mode: boolean | null;
|
|
79
|
-
device_id: string | null;
|
|
80
|
-
pin_protection: boolean | null;
|
|
81
|
-
passphrase_protection: boolean | null;
|
|
82
|
-
language: string | null;
|
|
83
|
-
label: string | null;
|
|
84
|
-
initialized: boolean | null;
|
|
85
|
-
revision: string | null;
|
|
86
|
-
bootloader_hash: string | null;
|
|
87
|
-
imported: boolean | null;
|
|
88
|
-
unlocked: boolean | null;
|
|
89
|
-
firmware_present: boolean | null;
|
|
90
|
-
backup_availability: "NotAvailable" | "Required" | "Available" | null;
|
|
91
|
-
flags: number | null;
|
|
92
|
-
model: string;
|
|
93
|
-
fw_major: number | null;
|
|
94
|
-
fw_minor: number | null;
|
|
95
|
-
fw_patch: number | null;
|
|
96
|
-
fw_vendor: string | null;
|
|
97
|
-
unfinished_backup: boolean | null;
|
|
98
|
-
no_backup: boolean | null;
|
|
99
|
-
recovery_status: "Nothing" | "Recovery" | "Backup" | null;
|
|
100
|
-
capabilities: ("Capability_Bitcoin" | "Capability_Bitcoin_like" | "Capability_Binance" | "Capability_Cardano" | "Capability_Crypto" | "Capability_EOS" | "Capability_Ethereum" | "Capability_Lisk" | "Capability_Monero" | "Capability_NEM" | "Capability_Ripple" | "Capability_Stellar" | "Capability_Tezos" | "Capability_U2F" | "Capability_Shamir" | "Capability_ShamirGroups" | "Capability_PassphraseEntry" | "Capability_Solana" | "Capability_Translations" | "Capability_Brightness" | "Capability_Haptic" | "Capability_BLE" | "Capability_NFC")[];
|
|
101
|
-
backup_type: "Bip39" | "Slip39_Basic" | "Slip39_Advanced" | "Slip39_Single_Extendable" | "Slip39_Basic_Extendable" | "Slip39_Advanced_Extendable" | null;
|
|
102
|
-
sd_card_present: boolean | null;
|
|
103
|
-
sd_protection: boolean | null;
|
|
104
|
-
wipe_code_protection: boolean | null;
|
|
105
|
-
session_id: string | null;
|
|
106
|
-
passphrase_always_on_device: boolean | null;
|
|
107
|
-
safety_checks: "Strict" | "PromptAlways" | "PromptTemporarily" | null;
|
|
108
|
-
auto_lock_delay_ms: number | null;
|
|
109
|
-
display_rotation: "North" | "East" | "South" | "West" | null;
|
|
110
|
-
experimental_features: boolean | null;
|
|
111
|
-
internal_model: Messages.DeviceModelInternal;
|
|
112
|
-
};
|
|
31
|
+
type: "TxRequestDetailsType";
|
|
32
|
+
message: import("@trezor/protobuf/lib/messages").TxRequestDetailsType;
|
|
113
33
|
} | {
|
|
114
|
-
type: "
|
|
115
|
-
message:
|
|
116
|
-
private_key?: string | undefined;
|
|
117
|
-
depth: number;
|
|
118
|
-
fingerprint: number;
|
|
119
|
-
child_num: number;
|
|
120
|
-
chain_code: string;
|
|
121
|
-
public_key: string;
|
|
122
|
-
};
|
|
34
|
+
type: "TxRequestSerializedType";
|
|
35
|
+
message: import("@trezor/protobuf/lib/messages").TxRequestSerializedType;
|
|
123
36
|
} | {
|
|
124
|
-
type: "
|
|
125
|
-
message:
|
|
126
|
-
address_n: number[];
|
|
127
|
-
node: string | {
|
|
128
|
-
private_key?: string | undefined;
|
|
129
|
-
depth: number;
|
|
130
|
-
fingerprint: number;
|
|
131
|
-
child_num: number;
|
|
132
|
-
chain_code: string;
|
|
133
|
-
public_key: string;
|
|
134
|
-
};
|
|
135
|
-
};
|
|
37
|
+
type: "TxInputType";
|
|
38
|
+
message: import("@trezor/protobuf/lib/messages").TxInputType;
|
|
136
39
|
} | {
|
|
137
|
-
type: "
|
|
138
|
-
message:
|
|
139
|
-
address_n?: number[] | undefined;
|
|
140
|
-
nodes?: {
|
|
141
|
-
private_key?: string | undefined;
|
|
142
|
-
depth: number;
|
|
143
|
-
fingerprint: number;
|
|
144
|
-
child_num: number;
|
|
145
|
-
chain_code: string;
|
|
146
|
-
public_key: string;
|
|
147
|
-
}[] | undefined;
|
|
148
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
149
|
-
pubkeys: {
|
|
150
|
-
address_n: number[];
|
|
151
|
-
node: string | {
|
|
152
|
-
private_key?: string | undefined;
|
|
153
|
-
depth: number;
|
|
154
|
-
fingerprint: number;
|
|
155
|
-
child_num: number;
|
|
156
|
-
chain_code: string;
|
|
157
|
-
public_key: string;
|
|
158
|
-
};
|
|
159
|
-
}[];
|
|
160
|
-
signatures: string[];
|
|
161
|
-
m: number;
|
|
162
|
-
};
|
|
40
|
+
type: "TxOutputBinType";
|
|
41
|
+
message: import("@trezor/protobuf/lib/messages").TxOutputBinType;
|
|
163
42
|
} | {
|
|
164
|
-
type: "
|
|
165
|
-
message:
|
|
166
|
-
chunkify?: boolean | undefined;
|
|
167
|
-
multisig?: {
|
|
168
|
-
address_n?: number[] | undefined;
|
|
169
|
-
nodes?: {
|
|
170
|
-
private_key?: string | undefined;
|
|
171
|
-
depth: number;
|
|
172
|
-
fingerprint: number;
|
|
173
|
-
child_num: number;
|
|
174
|
-
chain_code: string;
|
|
175
|
-
public_key: string;
|
|
176
|
-
}[] | undefined;
|
|
177
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
178
|
-
pubkeys: {
|
|
179
|
-
address_n: number[];
|
|
180
|
-
node: string | {
|
|
181
|
-
private_key?: string | undefined;
|
|
182
|
-
depth: number;
|
|
183
|
-
fingerprint: number;
|
|
184
|
-
child_num: number;
|
|
185
|
-
chain_code: string;
|
|
186
|
-
public_key: string;
|
|
187
|
-
};
|
|
188
|
-
}[];
|
|
189
|
-
signatures: string[];
|
|
190
|
-
m: number;
|
|
191
|
-
} | undefined;
|
|
192
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
193
|
-
show_display?: boolean | undefined;
|
|
194
|
-
coin_name?: string | undefined;
|
|
195
|
-
ignore_xpub_magic?: boolean | undefined;
|
|
196
|
-
address_n: number[];
|
|
197
|
-
};
|
|
43
|
+
type: "TxOutputType";
|
|
44
|
+
message: import("@trezor/protobuf/lib/messages").TxOutputType;
|
|
198
45
|
} | {
|
|
199
|
-
type: "
|
|
200
|
-
message:
|
|
201
|
-
mac?: string | undefined;
|
|
202
|
-
address: string;
|
|
203
|
-
};
|
|
46
|
+
type: "PaymentRequestMemo";
|
|
47
|
+
message: import("@trezor/protobuf/lib/messages").PaymentRequestMemo;
|
|
204
48
|
} | {
|
|
205
|
-
type: "
|
|
206
|
-
message:
|
|
207
|
-
multisig?: {
|
|
208
|
-
address_n?: number[] | undefined;
|
|
209
|
-
nodes?: {
|
|
210
|
-
private_key?: string | undefined;
|
|
211
|
-
depth: number;
|
|
212
|
-
fingerprint: number;
|
|
213
|
-
child_num: number;
|
|
214
|
-
chain_code: string;
|
|
215
|
-
public_key: string;
|
|
216
|
-
}[] | undefined;
|
|
217
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
218
|
-
pubkeys: {
|
|
219
|
-
address_n: number[];
|
|
220
|
-
node: string | {
|
|
221
|
-
private_key?: string | undefined;
|
|
222
|
-
depth: number;
|
|
223
|
-
fingerprint: number;
|
|
224
|
-
child_num: number;
|
|
225
|
-
chain_code: string;
|
|
226
|
-
public_key: string;
|
|
227
|
-
};
|
|
228
|
-
}[];
|
|
229
|
-
signatures: string[];
|
|
230
|
-
m: number;
|
|
231
|
-
} | undefined;
|
|
232
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
233
|
-
coin_name?: string | undefined;
|
|
234
|
-
address_n: number[];
|
|
235
|
-
};
|
|
49
|
+
type: "TextMemo";
|
|
50
|
+
message: import("@trezor/protobuf/lib/messages").TextMemo;
|
|
236
51
|
} | {
|
|
237
|
-
type: "
|
|
238
|
-
message:
|
|
239
|
-
ownership_id: string;
|
|
240
|
-
};
|
|
52
|
+
type: "RefundMemo";
|
|
53
|
+
message: import("@trezor/protobuf/lib/messages").RefundMemo;
|
|
241
54
|
} | {
|
|
242
|
-
type: "
|
|
243
|
-
message:
|
|
244
|
-
chunkify?: boolean | undefined;
|
|
245
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
246
|
-
no_script_type?: boolean | undefined;
|
|
247
|
-
coin_name?: string | undefined;
|
|
248
|
-
address_n: number[];
|
|
249
|
-
message: string;
|
|
250
|
-
};
|
|
55
|
+
type: "CoinPurchaseMemo";
|
|
56
|
+
message: import("@trezor/protobuf/lib/messages").CoinPurchaseMemo;
|
|
251
57
|
} | {
|
|
252
|
-
type: "
|
|
253
|
-
message:
|
|
254
|
-
address: string;
|
|
255
|
-
signature: string;
|
|
256
|
-
};
|
|
58
|
+
type: "TxAckInputWrapper";
|
|
59
|
+
message: import("@trezor/protobuf/lib/messages").TxAckInputWrapper;
|
|
257
60
|
} | {
|
|
258
|
-
type: "
|
|
259
|
-
message:
|
|
260
|
-
chunkify?: boolean | undefined;
|
|
261
|
-
coin_name?: string | undefined;
|
|
262
|
-
address: string;
|
|
263
|
-
message: string;
|
|
264
|
-
signature: string;
|
|
265
|
-
};
|
|
61
|
+
type: "TxAckOutputWrapper";
|
|
62
|
+
message: import("@trezor/protobuf/lib/messages").TxAckOutputWrapper;
|
|
266
63
|
} | {
|
|
267
|
-
type: "
|
|
268
|
-
message:
|
|
269
|
-
signature?: string | undefined;
|
|
270
|
-
mask_public_key?: string | undefined;
|
|
271
|
-
fee_rate: number;
|
|
272
|
-
no_fee_threshold: number;
|
|
273
|
-
min_registrable_amount: number;
|
|
274
|
-
};
|
|
64
|
+
type: "PrevTx";
|
|
65
|
+
message: import("@trezor/protobuf/lib/messages").PrevTx;
|
|
275
66
|
} | {
|
|
276
|
-
type: "
|
|
277
|
-
message:
|
|
278
|
-
chunkify?: boolean | undefined;
|
|
279
|
-
version?: number | undefined;
|
|
280
|
-
timestamp?: number | undefined;
|
|
281
|
-
expiry?: number | undefined;
|
|
282
|
-
overwintered?: boolean | undefined;
|
|
283
|
-
serialize?: boolean | undefined;
|
|
284
|
-
coin_name?: string | undefined;
|
|
285
|
-
lock_time?: number | undefined;
|
|
286
|
-
version_group_id?: number | undefined;
|
|
287
|
-
branch_id?: number | undefined;
|
|
288
|
-
amount_unit?: Messages.AmountUnit | undefined;
|
|
289
|
-
decred_staking_ticket?: boolean | undefined;
|
|
290
|
-
coinjoin_request?: {
|
|
291
|
-
signature?: string | undefined;
|
|
292
|
-
mask_public_key?: string | undefined;
|
|
293
|
-
fee_rate: number;
|
|
294
|
-
no_fee_threshold: number;
|
|
295
|
-
min_registrable_amount: number;
|
|
296
|
-
} | undefined;
|
|
297
|
-
outputs_count: number;
|
|
298
|
-
inputs_count: number;
|
|
299
|
-
};
|
|
67
|
+
type: "TxAckPrevInputWrapper";
|
|
68
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevInputWrapper;
|
|
300
69
|
} | {
|
|
301
|
-
type: "
|
|
302
|
-
message:
|
|
303
|
-
tx_hash?: string | undefined;
|
|
304
|
-
extra_data_len?: number | undefined;
|
|
305
|
-
extra_data_offset?: number | undefined;
|
|
306
|
-
request_index: number;
|
|
307
|
-
};
|
|
70
|
+
type: "PrevInput";
|
|
71
|
+
message: import("@trezor/protobuf/lib/messages").PrevInput;
|
|
308
72
|
} | {
|
|
309
|
-
type: "
|
|
310
|
-
message:
|
|
311
|
-
signature?: string | undefined;
|
|
312
|
-
signature_index?: number | undefined;
|
|
313
|
-
serialized_tx?: string | undefined;
|
|
314
|
-
};
|
|
73
|
+
type: "TxAckPrevOutputWrapper";
|
|
74
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevOutputWrapper;
|
|
315
75
|
} | {
|
|
316
|
-
type: "
|
|
317
|
-
message:
|
|
318
|
-
serialized?: {
|
|
319
|
-
signature?: string | undefined;
|
|
320
|
-
signature_index?: number | undefined;
|
|
321
|
-
serialized_tx?: string | undefined;
|
|
322
|
-
} | undefined;
|
|
323
|
-
details: {
|
|
324
|
-
tx_hash?: string | undefined;
|
|
325
|
-
extra_data_len?: number | undefined;
|
|
326
|
-
extra_data_offset?: number | undefined;
|
|
327
|
-
request_index: number;
|
|
328
|
-
};
|
|
329
|
-
request_type: "TXINPUT" | "TXOUTPUT" | "TXMETA" | "TXFINISHED" | "TXEXTRADATA" | "TXORIGINPUT" | "TXORIGOUTPUT" | "TXPAYMENTREQ";
|
|
330
|
-
};
|
|
76
|
+
type: "PrevOutput";
|
|
77
|
+
message: import("@trezor/protobuf/lib/messages").PrevOutput;
|
|
331
78
|
} | {
|
|
332
|
-
type: "
|
|
333
|
-
message: (
|
|
334
|
-
sequence?: number | undefined;
|
|
335
|
-
multisig?: {
|
|
336
|
-
address_n?: number[] | undefined;
|
|
337
|
-
nodes?: {
|
|
338
|
-
private_key?: string | undefined;
|
|
339
|
-
depth: number;
|
|
340
|
-
fingerprint: number;
|
|
341
|
-
child_num: number;
|
|
342
|
-
chain_code: string;
|
|
343
|
-
public_key: string;
|
|
344
|
-
}[] | undefined;
|
|
345
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
346
|
-
pubkeys: {
|
|
347
|
-
address_n: number[];
|
|
348
|
-
node: string | {
|
|
349
|
-
private_key?: string | undefined;
|
|
350
|
-
depth: number;
|
|
351
|
-
fingerprint: number;
|
|
352
|
-
child_num: number;
|
|
353
|
-
chain_code: string;
|
|
354
|
-
public_key: string;
|
|
355
|
-
};
|
|
356
|
-
}[];
|
|
357
|
-
signatures: string[];
|
|
358
|
-
m: number;
|
|
359
|
-
} | undefined;
|
|
360
|
-
decred_tree?: number | undefined;
|
|
361
|
-
orig_hash?: string | undefined;
|
|
362
|
-
orig_index?: number | undefined;
|
|
363
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
364
|
-
script_pubkey?: string | undefined;
|
|
365
|
-
coinjoin_flags?: number | undefined;
|
|
366
|
-
script_sig?: string | undefined;
|
|
367
|
-
witness?: string | undefined;
|
|
368
|
-
ownership_proof?: string | undefined;
|
|
369
|
-
commitment_data?: string | undefined;
|
|
370
|
-
prev_hash: string;
|
|
371
|
-
prev_index: number;
|
|
372
|
-
amount: string | number;
|
|
373
|
-
} & {
|
|
374
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
375
|
-
address_n: number[];
|
|
376
|
-
}) | ({
|
|
377
|
-
sequence?: number | undefined;
|
|
378
|
-
multisig?: {
|
|
379
|
-
address_n?: number[] | undefined;
|
|
380
|
-
nodes?: {
|
|
381
|
-
private_key?: string | undefined;
|
|
382
|
-
depth: number;
|
|
383
|
-
fingerprint: number;
|
|
384
|
-
child_num: number;
|
|
385
|
-
chain_code: string;
|
|
386
|
-
public_key: string;
|
|
387
|
-
}[] | undefined;
|
|
388
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
389
|
-
pubkeys: {
|
|
390
|
-
address_n: number[];
|
|
391
|
-
node: string | {
|
|
392
|
-
private_key?: string | undefined;
|
|
393
|
-
depth: number;
|
|
394
|
-
fingerprint: number;
|
|
395
|
-
child_num: number;
|
|
396
|
-
chain_code: string;
|
|
397
|
-
public_key: string;
|
|
398
|
-
};
|
|
399
|
-
}[];
|
|
400
|
-
signatures: string[];
|
|
401
|
-
m: number;
|
|
402
|
-
} | undefined;
|
|
403
|
-
decred_tree?: number | undefined;
|
|
404
|
-
orig_hash?: string | undefined;
|
|
405
|
-
orig_index?: number | undefined;
|
|
406
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
407
|
-
script_pubkey?: string | undefined;
|
|
408
|
-
coinjoin_flags?: number | undefined;
|
|
409
|
-
script_sig?: string | undefined;
|
|
410
|
-
witness?: string | undefined;
|
|
411
|
-
ownership_proof?: string | undefined;
|
|
412
|
-
commitment_data?: string | undefined;
|
|
413
|
-
prev_hash: string;
|
|
414
|
-
prev_index: number;
|
|
415
|
-
amount: string | number;
|
|
416
|
-
} & {
|
|
417
|
-
address_n?: undefined;
|
|
418
|
-
script_pubkey: string;
|
|
419
|
-
script_type: "EXTERNAL";
|
|
420
|
-
});
|
|
79
|
+
type: "TxAckPrevExtraDataWrapper";
|
|
80
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevExtraDataWrapper;
|
|
421
81
|
} | {
|
|
422
|
-
type: "
|
|
423
|
-
message:
|
|
424
|
-
decred_script_version?: number | undefined;
|
|
425
|
-
amount: string | number;
|
|
426
|
-
script_pubkey: string;
|
|
427
|
-
};
|
|
82
|
+
type: "CardanoNativeScript";
|
|
83
|
+
message: import("@trezor/protobuf/lib/messages").CardanoNativeScript;
|
|
428
84
|
} | {
|
|
429
|
-
type: "
|
|
430
|
-
message:
|
|
431
|
-
address_n?: undefined;
|
|
432
|
-
multisig?: {
|
|
433
|
-
address_n?: number[] | undefined;
|
|
434
|
-
nodes?: {
|
|
435
|
-
private_key?: string | undefined;
|
|
436
|
-
depth: number;
|
|
437
|
-
fingerprint: number;
|
|
438
|
-
child_num: number;
|
|
439
|
-
chain_code: string;
|
|
440
|
-
public_key: string;
|
|
441
|
-
}[] | undefined;
|
|
442
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
443
|
-
pubkeys: {
|
|
444
|
-
address_n: number[];
|
|
445
|
-
node: string | {
|
|
446
|
-
private_key?: string | undefined;
|
|
447
|
-
depth: number;
|
|
448
|
-
fingerprint: number;
|
|
449
|
-
child_num: number;
|
|
450
|
-
chain_code: string;
|
|
451
|
-
public_key: string;
|
|
452
|
-
};
|
|
453
|
-
}[];
|
|
454
|
-
signatures: string[];
|
|
455
|
-
m: number;
|
|
456
|
-
} | undefined;
|
|
457
|
-
orig_hash?: string | undefined;
|
|
458
|
-
orig_index?: number | undefined;
|
|
459
|
-
payment_req_index?: number | undefined;
|
|
460
|
-
address: string;
|
|
461
|
-
amount: string | number;
|
|
462
|
-
script_type: "PAYTOADDRESS";
|
|
463
|
-
} | {
|
|
464
|
-
address?: undefined;
|
|
465
|
-
multisig?: {
|
|
466
|
-
address_n?: number[] | undefined;
|
|
467
|
-
nodes?: {
|
|
468
|
-
private_key?: string | undefined;
|
|
469
|
-
depth: number;
|
|
470
|
-
fingerprint: number;
|
|
471
|
-
child_num: number;
|
|
472
|
-
chain_code: string;
|
|
473
|
-
public_key: string;
|
|
474
|
-
}[] | undefined;
|
|
475
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
476
|
-
pubkeys: {
|
|
477
|
-
address_n: number[];
|
|
478
|
-
node: string | {
|
|
479
|
-
private_key?: string | undefined;
|
|
480
|
-
depth: number;
|
|
481
|
-
fingerprint: number;
|
|
482
|
-
child_num: number;
|
|
483
|
-
chain_code: string;
|
|
484
|
-
public_key: string;
|
|
485
|
-
};
|
|
486
|
-
}[];
|
|
487
|
-
signatures: string[];
|
|
488
|
-
m: number;
|
|
489
|
-
} | undefined;
|
|
490
|
-
orig_hash?: string | undefined;
|
|
491
|
-
orig_index?: number | undefined;
|
|
492
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
493
|
-
payment_req_index?: number | undefined;
|
|
494
|
-
address_n: number[];
|
|
495
|
-
amount: string | number;
|
|
496
|
-
} | {
|
|
497
|
-
address_n?: undefined;
|
|
498
|
-
multisig?: {
|
|
499
|
-
address_n?: number[] | undefined;
|
|
500
|
-
nodes?: {
|
|
501
|
-
private_key?: string | undefined;
|
|
502
|
-
depth: number;
|
|
503
|
-
fingerprint: number;
|
|
504
|
-
child_num: number;
|
|
505
|
-
chain_code: string;
|
|
506
|
-
public_key: string;
|
|
507
|
-
}[] | undefined;
|
|
508
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
509
|
-
pubkeys: {
|
|
510
|
-
address_n: number[];
|
|
511
|
-
node: string | {
|
|
512
|
-
private_key?: string | undefined;
|
|
513
|
-
depth: number;
|
|
514
|
-
fingerprint: number;
|
|
515
|
-
child_num: number;
|
|
516
|
-
chain_code: string;
|
|
517
|
-
public_key: string;
|
|
518
|
-
};
|
|
519
|
-
}[];
|
|
520
|
-
signatures: string[];
|
|
521
|
-
m: number;
|
|
522
|
-
} | undefined;
|
|
523
|
-
orig_hash?: string | undefined;
|
|
524
|
-
orig_index?: number | undefined;
|
|
525
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
526
|
-
payment_req_index?: number | undefined;
|
|
527
|
-
address: string;
|
|
528
|
-
amount: string | number;
|
|
529
|
-
} | {
|
|
530
|
-
address_n?: undefined;
|
|
531
|
-
address?: undefined;
|
|
532
|
-
orig_hash?: string | undefined;
|
|
533
|
-
orig_index?: number | undefined;
|
|
534
|
-
payment_req_index?: number | undefined;
|
|
535
|
-
amount: 0 | "0";
|
|
536
|
-
script_type: "PAYTOOPRETURN";
|
|
537
|
-
op_return_data: string;
|
|
538
|
-
};
|
|
85
|
+
type: "CardanoBlockchainPointerType";
|
|
86
|
+
message: import("@trezor/protobuf/lib/messages").CardanoBlockchainPointerType;
|
|
539
87
|
} | {
|
|
540
|
-
type: "
|
|
541
|
-
message:
|
|
542
|
-
timestamp?: number | undefined;
|
|
543
|
-
expiry?: number | undefined;
|
|
544
|
-
version_group_id?: number | undefined;
|
|
545
|
-
branch_id?: number | undefined;
|
|
546
|
-
extra_data_len?: number | undefined;
|
|
547
|
-
version: number;
|
|
548
|
-
outputs_count: number;
|
|
549
|
-
inputs_count: number;
|
|
550
|
-
lock_time: number;
|
|
551
|
-
};
|
|
88
|
+
type: "CardanoAddressParametersType";
|
|
89
|
+
message: import("@trezor/protobuf/lib/messages").CardanoAddressParametersType;
|
|
552
90
|
} | {
|
|
553
|
-
type: "
|
|
554
|
-
message:
|
|
555
|
-
decred_tree?: number | undefined;
|
|
556
|
-
prev_hash: string;
|
|
557
|
-
prev_index: number;
|
|
558
|
-
sequence: number;
|
|
559
|
-
script_sig: string;
|
|
560
|
-
};
|
|
91
|
+
type: "CardanoPoolMetadataType";
|
|
92
|
+
message: import("@trezor/protobuf/lib/messages").CardanoPoolMetadataType;
|
|
561
93
|
} | {
|
|
562
|
-
type: "
|
|
563
|
-
message:
|
|
564
|
-
decred_script_version?: number | undefined;
|
|
565
|
-
amount: string | number;
|
|
566
|
-
script_pubkey: string;
|
|
567
|
-
};
|
|
94
|
+
type: "CardanoPoolParametersType";
|
|
95
|
+
message: import("@trezor/protobuf/lib/messages").CardanoPoolParametersType;
|
|
568
96
|
} | {
|
|
569
|
-
type: "
|
|
570
|
-
message:
|
|
571
|
-
text: string;
|
|
572
|
-
};
|
|
97
|
+
type: "CardanoDRep";
|
|
98
|
+
message: import("@trezor/protobuf/lib/messages").CardanoDRep;
|
|
573
99
|
} | {
|
|
574
|
-
type: "
|
|
575
|
-
message:
|
|
576
|
-
address: string;
|
|
577
|
-
mac: string;
|
|
578
|
-
};
|
|
100
|
+
type: "CardanoCVoteRegistrationDelegation";
|
|
101
|
+
message: import("@trezor/protobuf/lib/messages").CardanoCVoteRegistrationDelegation;
|
|
579
102
|
} | {
|
|
580
|
-
type: "
|
|
581
|
-
message:
|
|
582
|
-
address: string;
|
|
583
|
-
amount: string | number;
|
|
584
|
-
mac: string;
|
|
585
|
-
coin_type: number;
|
|
586
|
-
};
|
|
103
|
+
type: "CardanoCVoteRegistrationParametersType";
|
|
104
|
+
message: import("@trezor/protobuf/lib/messages").CardanoCVoteRegistrationParametersType;
|
|
587
105
|
} | {
|
|
588
|
-
type: "
|
|
589
|
-
message:
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
106
|
+
type: "IdentityType";
|
|
107
|
+
message: import("@trezor/protobuf/lib/messages").IdentityType;
|
|
108
|
+
} | {
|
|
109
|
+
type: "DebugLinkGcInfoItem";
|
|
110
|
+
message: import("@trezor/protobuf/lib/messages").DebugLinkGcInfoItem;
|
|
111
|
+
} | {
|
|
112
|
+
type: "EosTxHeader";
|
|
113
|
+
message: import("@trezor/protobuf/lib/messages").EosTxHeader;
|
|
114
|
+
} | {
|
|
115
|
+
type: "EosActionCommon";
|
|
116
|
+
message: import("@trezor/protobuf/lib/messages").EosActionCommon;
|
|
117
|
+
} | {
|
|
118
|
+
type: "EosActionTransfer";
|
|
119
|
+
message: import("@trezor/protobuf/lib/messages").EosActionTransfer;
|
|
120
|
+
} | {
|
|
121
|
+
type: "EosActionDelegate";
|
|
122
|
+
message: import("@trezor/protobuf/lib/messages").EosActionDelegate;
|
|
123
|
+
} | {
|
|
124
|
+
type: "EosActionUndelegate";
|
|
125
|
+
message: import("@trezor/protobuf/lib/messages").EosActionUndelegate;
|
|
126
|
+
} | {
|
|
127
|
+
type: "EosActionRefund";
|
|
128
|
+
message: import("@trezor/protobuf/lib/messages").EosActionRefund;
|
|
129
|
+
} | {
|
|
130
|
+
type: "EosActionBuyRam";
|
|
131
|
+
message: import("@trezor/protobuf/lib/messages").EosActionBuyRam;
|
|
132
|
+
} | {
|
|
133
|
+
type: "EosActionBuyRamBytes";
|
|
134
|
+
message: import("@trezor/protobuf/lib/messages").EosActionBuyRamBytes;
|
|
135
|
+
} | {
|
|
136
|
+
type: "EosActionSellRam";
|
|
137
|
+
message: import("@trezor/protobuf/lib/messages").EosActionSellRam;
|
|
138
|
+
} | {
|
|
139
|
+
type: "EosActionVoteProducer";
|
|
140
|
+
message: import("@trezor/protobuf/lib/messages").EosActionVoteProducer;
|
|
141
|
+
} | {
|
|
142
|
+
type: "EosActionUpdateAuth";
|
|
143
|
+
message: import("@trezor/protobuf/lib/messages").EosActionUpdateAuth;
|
|
144
|
+
} | {
|
|
145
|
+
type: "EosActionDeleteAuth";
|
|
146
|
+
message: import("@trezor/protobuf/lib/messages").EosActionDeleteAuth;
|
|
147
|
+
} | {
|
|
148
|
+
type: "EosActionLinkAuth";
|
|
149
|
+
message: import("@trezor/protobuf/lib/messages").EosActionLinkAuth;
|
|
150
|
+
} | {
|
|
151
|
+
type: "EosActionUnlinkAuth";
|
|
152
|
+
message: import("@trezor/protobuf/lib/messages").EosActionUnlinkAuth;
|
|
153
|
+
} | {
|
|
154
|
+
type: "EosActionNewAccount";
|
|
155
|
+
message: import("@trezor/protobuf/lib/messages").EosActionNewAccount;
|
|
156
|
+
} | {
|
|
157
|
+
type: "EosActionUnknown";
|
|
158
|
+
message: import("@trezor/protobuf/lib/messages").EosActionUnknown;
|
|
159
|
+
} | {
|
|
160
|
+
type: "EosPermissionLevel";
|
|
161
|
+
message: import("@trezor/protobuf/lib/messages").EosPermissionLevel;
|
|
162
|
+
} | {
|
|
163
|
+
type: "EosAuthorizationKey";
|
|
164
|
+
message: import("@trezor/protobuf/lib/messages").EosAuthorizationKey;
|
|
165
|
+
} | {
|
|
166
|
+
type: "EosAuthorizationAccount";
|
|
167
|
+
message: import("@trezor/protobuf/lib/messages").EosAuthorizationAccount;
|
|
168
|
+
} | {
|
|
169
|
+
type: "EosAuthorizationWait";
|
|
170
|
+
message: import("@trezor/protobuf/lib/messages").EosAuthorizationWait;
|
|
171
|
+
} | {
|
|
172
|
+
type: "EosAsset";
|
|
173
|
+
message: import("@trezor/protobuf/lib/messages").EosAsset;
|
|
174
|
+
} | {
|
|
175
|
+
type: "EosAuthorization";
|
|
176
|
+
message: import("@trezor/protobuf/lib/messages").EosAuthorization;
|
|
177
|
+
} | {
|
|
178
|
+
type: "EthereumDefinitions";
|
|
179
|
+
message: import("@trezor/protobuf/lib/messages").EthereumDefinitions;
|
|
180
|
+
} | {
|
|
181
|
+
type: "EthereumStructMember";
|
|
182
|
+
message: import("@trezor/protobuf/lib/messages").EthereumStructMember;
|
|
183
|
+
} | {
|
|
184
|
+
type: "EthereumFieldType";
|
|
185
|
+
message: import("@trezor/protobuf/lib/messages").EthereumFieldType;
|
|
186
|
+
} | {
|
|
187
|
+
type: "EthereumAccessList";
|
|
188
|
+
message: import("@trezor/protobuf/lib/messages").EthereumAccessList;
|
|
189
|
+
} | {
|
|
190
|
+
type: "Slip39Group";
|
|
191
|
+
message: import("@trezor/protobuf/lib/messages").Slip39Group;
|
|
192
|
+
} | {
|
|
193
|
+
type: "NEMTransactionCommon";
|
|
194
|
+
message: import("@trezor/protobuf/lib/messages").NEMTransactionCommon;
|
|
195
|
+
} | {
|
|
196
|
+
type: "NEMTransfer";
|
|
197
|
+
message: import("@trezor/protobuf/lib/messages").NEMTransfer;
|
|
198
|
+
} | {
|
|
199
|
+
type: "NEMProvisionNamespace";
|
|
200
|
+
message: import("@trezor/protobuf/lib/messages").NEMProvisionNamespace;
|
|
201
|
+
} | {
|
|
202
|
+
type: "NEMMosaicCreation";
|
|
203
|
+
message: import("@trezor/protobuf/lib/messages").NEMMosaicCreation;
|
|
204
|
+
} | {
|
|
205
|
+
type: "NEMMosaicSupplyChange";
|
|
206
|
+
message: import("@trezor/protobuf/lib/messages").NEMMosaicSupplyChange;
|
|
207
|
+
} | {
|
|
208
|
+
type: "NEMAggregateModification";
|
|
209
|
+
message: import("@trezor/protobuf/lib/messages").NEMAggregateModification;
|
|
210
|
+
} | {
|
|
211
|
+
type: "NEMImportanceTransfer";
|
|
212
|
+
message: import("@trezor/protobuf/lib/messages").NEMImportanceTransfer;
|
|
213
|
+
} | {
|
|
214
|
+
type: "NEMMosaic";
|
|
215
|
+
message: import("@trezor/protobuf/lib/messages").NEMMosaic;
|
|
216
|
+
} | {
|
|
217
|
+
type: "NEMMosaicDefinition";
|
|
218
|
+
message: import("@trezor/protobuf/lib/messages").NEMMosaicDefinition;
|
|
219
|
+
} | {
|
|
220
|
+
type: "NEMCosignatoryModification";
|
|
221
|
+
message: import("@trezor/protobuf/lib/messages").NEMCosignatoryModification;
|
|
222
|
+
} | {
|
|
223
|
+
type: "RipplePayment";
|
|
224
|
+
message: import("@trezor/protobuf/lib/messages").RipplePayment;
|
|
225
|
+
} | {
|
|
226
|
+
type: "SolanaTxTokenAccountInfo";
|
|
227
|
+
message: import("@trezor/protobuf/lib/messages").SolanaTxTokenAccountInfo;
|
|
228
|
+
} | {
|
|
229
|
+
type: "SolanaTxAdditionalInfo";
|
|
230
|
+
message: import("@trezor/protobuf/lib/messages").SolanaTxAdditionalInfo;
|
|
231
|
+
} | {
|
|
232
|
+
type: "StellarAsset";
|
|
233
|
+
message: import("@trezor/protobuf/lib/messages").StellarAsset;
|
|
234
|
+
} | {
|
|
235
|
+
type: "TezosRevealOp";
|
|
236
|
+
message: import("@trezor/protobuf/lib/messages").TezosRevealOp;
|
|
237
|
+
} | {
|
|
238
|
+
type: "TezosTransactionOp";
|
|
239
|
+
message: import("@trezor/protobuf/lib/messages").TezosTransactionOp;
|
|
240
|
+
} | {
|
|
241
|
+
type: "TezosOriginationOp";
|
|
242
|
+
message: import("@trezor/protobuf/lib/messages").TezosOriginationOp;
|
|
243
|
+
} | {
|
|
244
|
+
type: "TezosDelegationOp";
|
|
245
|
+
message: import("@trezor/protobuf/lib/messages").TezosDelegationOp;
|
|
246
|
+
} | {
|
|
247
|
+
type: "TezosProposalOp";
|
|
248
|
+
message: import("@trezor/protobuf/lib/messages").TezosProposalOp;
|
|
249
|
+
} | {
|
|
250
|
+
type: "TezosBallotOp";
|
|
251
|
+
message: import("@trezor/protobuf/lib/messages").TezosBallotOp;
|
|
252
|
+
} | {
|
|
253
|
+
type: "TezosContractID";
|
|
254
|
+
message: import("@trezor/protobuf/lib/messages").TezosContractID;
|
|
255
|
+
} | {
|
|
256
|
+
type: "TezosParametersManager";
|
|
257
|
+
message: import("@trezor/protobuf/lib/messages").TezosParametersManager;
|
|
258
|
+
} | {
|
|
259
|
+
type: "TezosManagerTransfer";
|
|
260
|
+
message: import("@trezor/protobuf/lib/messages").TezosManagerTransfer;
|
|
261
|
+
} | {
|
|
262
|
+
type: "PassphraseAck";
|
|
263
|
+
message: import("@trezor/protobuf/lib/messages").PassphraseAck;
|
|
264
|
+
} | {
|
|
265
|
+
type: "CipheredKeyValue";
|
|
266
|
+
message: import("@trezor/protobuf/lib/messages").CipheredKeyValue;
|
|
267
|
+
} | {
|
|
268
|
+
type: "GetPublicKey";
|
|
269
|
+
message: import("@trezor/protobuf/lib/messages").GetPublicKey;
|
|
270
|
+
} | {
|
|
271
|
+
type: "PublicKey";
|
|
272
|
+
message: import("@trezor/protobuf/lib/messages").PublicKey;
|
|
273
|
+
} | {
|
|
274
|
+
type: "Features";
|
|
275
|
+
message: import("@trezor/protobuf/lib/messages").Features;
|
|
276
|
+
} | {
|
|
277
|
+
type: "GetAddress";
|
|
278
|
+
message: import("@trezor/protobuf/lib/messages").GetAddress;
|
|
279
|
+
} | {
|
|
280
|
+
type: "Address";
|
|
281
|
+
message: import("@trezor/protobuf/lib/messages").Address;
|
|
282
|
+
} | {
|
|
283
|
+
type: "GetOwnershipId";
|
|
284
|
+
message: import("@trezor/protobuf/lib/messages").GetOwnershipId;
|
|
285
|
+
} | {
|
|
286
|
+
type: "OwnershipId";
|
|
287
|
+
message: import("@trezor/protobuf/lib/messages").OwnershipId;
|
|
288
|
+
} | {
|
|
289
|
+
type: "SignMessage";
|
|
290
|
+
message: import("@trezor/protobuf/lib/messages").SignMessage;
|
|
291
|
+
} | {
|
|
292
|
+
type: "MessageSignature";
|
|
293
|
+
message: import("@trezor/protobuf/lib/messages").MessageSignature;
|
|
294
|
+
} | {
|
|
295
|
+
type: "VerifyMessage";
|
|
296
|
+
message: import("@trezor/protobuf/lib/messages").VerifyMessage;
|
|
297
|
+
} | {
|
|
298
|
+
type: "SignTx";
|
|
299
|
+
message: import("@trezor/protobuf/lib/messages").SignTx;
|
|
300
|
+
} | {
|
|
301
|
+
type: "TxRequest";
|
|
302
|
+
message: import("@trezor/protobuf/lib/messages").TxRequest;
|
|
604
303
|
} | {
|
|
605
304
|
type: "TxAckPaymentRequest";
|
|
606
|
-
message:
|
|
607
|
-
amount?: string | number | undefined;
|
|
608
|
-
nonce?: string | undefined;
|
|
609
|
-
memos?: {
|
|
610
|
-
text_memo?: {
|
|
611
|
-
text: string;
|
|
612
|
-
} | undefined;
|
|
613
|
-
refund_memo?: {
|
|
614
|
-
address: string;
|
|
615
|
-
mac: string;
|
|
616
|
-
} | undefined;
|
|
617
|
-
coin_purchase_memo?: {
|
|
618
|
-
address: string;
|
|
619
|
-
amount: string | number;
|
|
620
|
-
mac: string;
|
|
621
|
-
coin_type: number;
|
|
622
|
-
} | undefined;
|
|
623
|
-
}[] | undefined;
|
|
624
|
-
signature: string;
|
|
625
|
-
recipient_name: string;
|
|
626
|
-
};
|
|
305
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPaymentRequest;
|
|
627
306
|
} | {
|
|
628
307
|
type: "TxAck";
|
|
629
|
-
message:
|
|
630
|
-
tx: {
|
|
631
|
-
inputs: (({
|
|
632
|
-
sequence?: number | undefined;
|
|
633
|
-
multisig?: {
|
|
634
|
-
address_n?: number[] | undefined;
|
|
635
|
-
nodes?: {
|
|
636
|
-
private_key?: string | undefined;
|
|
637
|
-
depth: number;
|
|
638
|
-
fingerprint: number;
|
|
639
|
-
child_num: number;
|
|
640
|
-
chain_code: string;
|
|
641
|
-
public_key: string;
|
|
642
|
-
}[] | undefined;
|
|
643
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
644
|
-
pubkeys: {
|
|
645
|
-
address_n: number[];
|
|
646
|
-
node: string | {
|
|
647
|
-
private_key?: string | undefined;
|
|
648
|
-
depth: number;
|
|
649
|
-
fingerprint: number;
|
|
650
|
-
child_num: number;
|
|
651
|
-
chain_code: string;
|
|
652
|
-
public_key: string;
|
|
653
|
-
};
|
|
654
|
-
}[];
|
|
655
|
-
signatures: string[];
|
|
656
|
-
m: number;
|
|
657
|
-
} | undefined;
|
|
658
|
-
decred_tree?: number | undefined;
|
|
659
|
-
orig_hash?: string | undefined;
|
|
660
|
-
orig_index?: number | undefined;
|
|
661
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
662
|
-
script_pubkey?: string | undefined;
|
|
663
|
-
coinjoin_flags?: number | undefined;
|
|
664
|
-
script_sig?: string | undefined;
|
|
665
|
-
witness?: string | undefined;
|
|
666
|
-
ownership_proof?: string | undefined;
|
|
667
|
-
commitment_data?: string | undefined;
|
|
668
|
-
prev_hash: string;
|
|
669
|
-
prev_index: number;
|
|
670
|
-
amount: string | number;
|
|
671
|
-
} & {
|
|
672
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
673
|
-
address_n: number[];
|
|
674
|
-
}) | ({
|
|
675
|
-
sequence?: number | undefined;
|
|
676
|
-
multisig?: {
|
|
677
|
-
address_n?: number[] | undefined;
|
|
678
|
-
nodes?: {
|
|
679
|
-
private_key?: string | undefined;
|
|
680
|
-
depth: number;
|
|
681
|
-
fingerprint: number;
|
|
682
|
-
child_num: number;
|
|
683
|
-
chain_code: string;
|
|
684
|
-
public_key: string;
|
|
685
|
-
}[] | undefined;
|
|
686
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
687
|
-
pubkeys: {
|
|
688
|
-
address_n: number[];
|
|
689
|
-
node: string | {
|
|
690
|
-
private_key?: string | undefined;
|
|
691
|
-
depth: number;
|
|
692
|
-
fingerprint: number;
|
|
693
|
-
child_num: number;
|
|
694
|
-
chain_code: string;
|
|
695
|
-
public_key: string;
|
|
696
|
-
};
|
|
697
|
-
}[];
|
|
698
|
-
signatures: string[];
|
|
699
|
-
m: number;
|
|
700
|
-
} | undefined;
|
|
701
|
-
decred_tree?: number | undefined;
|
|
702
|
-
orig_hash?: string | undefined;
|
|
703
|
-
orig_index?: number | undefined;
|
|
704
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
705
|
-
script_pubkey?: string | undefined;
|
|
706
|
-
coinjoin_flags?: number | undefined;
|
|
707
|
-
script_sig?: string | undefined;
|
|
708
|
-
witness?: string | undefined;
|
|
709
|
-
ownership_proof?: string | undefined;
|
|
710
|
-
commitment_data?: string | undefined;
|
|
711
|
-
prev_hash: string;
|
|
712
|
-
prev_index: number;
|
|
713
|
-
amount: string | number;
|
|
714
|
-
} & {
|
|
715
|
-
address_n?: undefined;
|
|
716
|
-
script_pubkey: string;
|
|
717
|
-
script_type: "EXTERNAL";
|
|
718
|
-
}) | {
|
|
719
|
-
decred_tree?: number | undefined;
|
|
720
|
-
prev_hash: string;
|
|
721
|
-
prev_index: number;
|
|
722
|
-
sequence: number;
|
|
723
|
-
script_sig: string;
|
|
724
|
-
})[];
|
|
725
|
-
} | {
|
|
726
|
-
bin_outputs: {
|
|
727
|
-
decred_script_version?: number | undefined;
|
|
728
|
-
amount: string | number;
|
|
729
|
-
script_pubkey: string;
|
|
730
|
-
}[];
|
|
731
|
-
} | {
|
|
732
|
-
outputs: ({
|
|
733
|
-
address_n?: undefined;
|
|
734
|
-
multisig?: {
|
|
735
|
-
address_n?: number[] | undefined;
|
|
736
|
-
nodes?: {
|
|
737
|
-
private_key?: string | undefined;
|
|
738
|
-
depth: number;
|
|
739
|
-
fingerprint: number;
|
|
740
|
-
child_num: number;
|
|
741
|
-
chain_code: string;
|
|
742
|
-
public_key: string;
|
|
743
|
-
}[] | undefined;
|
|
744
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
745
|
-
pubkeys: {
|
|
746
|
-
address_n: number[];
|
|
747
|
-
node: string | {
|
|
748
|
-
private_key?: string | undefined;
|
|
749
|
-
depth: number;
|
|
750
|
-
fingerprint: number;
|
|
751
|
-
child_num: number;
|
|
752
|
-
chain_code: string;
|
|
753
|
-
public_key: string;
|
|
754
|
-
};
|
|
755
|
-
}[];
|
|
756
|
-
signatures: string[];
|
|
757
|
-
m: number;
|
|
758
|
-
} | undefined;
|
|
759
|
-
orig_hash?: string | undefined;
|
|
760
|
-
orig_index?: number | undefined;
|
|
761
|
-
payment_req_index?: number | undefined;
|
|
762
|
-
address: string;
|
|
763
|
-
amount: string | number;
|
|
764
|
-
script_type: "PAYTOADDRESS";
|
|
765
|
-
} | {
|
|
766
|
-
address?: undefined;
|
|
767
|
-
multisig?: {
|
|
768
|
-
address_n?: number[] | undefined;
|
|
769
|
-
nodes?: {
|
|
770
|
-
private_key?: string | undefined;
|
|
771
|
-
depth: number;
|
|
772
|
-
fingerprint: number;
|
|
773
|
-
child_num: number;
|
|
774
|
-
chain_code: string;
|
|
775
|
-
public_key: string;
|
|
776
|
-
}[] | undefined;
|
|
777
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
778
|
-
pubkeys: {
|
|
779
|
-
address_n: number[];
|
|
780
|
-
node: string | {
|
|
781
|
-
private_key?: string | undefined;
|
|
782
|
-
depth: number;
|
|
783
|
-
fingerprint: number;
|
|
784
|
-
child_num: number;
|
|
785
|
-
chain_code: string;
|
|
786
|
-
public_key: string;
|
|
787
|
-
};
|
|
788
|
-
}[];
|
|
789
|
-
signatures: string[];
|
|
790
|
-
m: number;
|
|
791
|
-
} | undefined;
|
|
792
|
-
orig_hash?: string | undefined;
|
|
793
|
-
orig_index?: number | undefined;
|
|
794
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
795
|
-
payment_req_index?: number | undefined;
|
|
796
|
-
address_n: number[];
|
|
797
|
-
amount: string | number;
|
|
798
|
-
} | {
|
|
799
|
-
address_n?: undefined;
|
|
800
|
-
multisig?: {
|
|
801
|
-
address_n?: number[] | undefined;
|
|
802
|
-
nodes?: {
|
|
803
|
-
private_key?: string | undefined;
|
|
804
|
-
depth: number;
|
|
805
|
-
fingerprint: number;
|
|
806
|
-
child_num: number;
|
|
807
|
-
chain_code: string;
|
|
808
|
-
public_key: string;
|
|
809
|
-
}[] | undefined;
|
|
810
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
811
|
-
pubkeys: {
|
|
812
|
-
address_n: number[];
|
|
813
|
-
node: string | {
|
|
814
|
-
private_key?: string | undefined;
|
|
815
|
-
depth: number;
|
|
816
|
-
fingerprint: number;
|
|
817
|
-
child_num: number;
|
|
818
|
-
chain_code: string;
|
|
819
|
-
public_key: string;
|
|
820
|
-
};
|
|
821
|
-
}[];
|
|
822
|
-
signatures: string[];
|
|
823
|
-
m: number;
|
|
824
|
-
} | undefined;
|
|
825
|
-
orig_hash?: string | undefined;
|
|
826
|
-
orig_index?: number | undefined;
|
|
827
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
828
|
-
payment_req_index?: number | undefined;
|
|
829
|
-
address: string;
|
|
830
|
-
amount: string | number;
|
|
831
|
-
} | {
|
|
832
|
-
address_n?: undefined;
|
|
833
|
-
address?: undefined;
|
|
834
|
-
orig_hash?: string | undefined;
|
|
835
|
-
orig_index?: number | undefined;
|
|
836
|
-
payment_req_index?: number | undefined;
|
|
837
|
-
amount: 0 | "0";
|
|
838
|
-
script_type: "PAYTOOPRETURN";
|
|
839
|
-
op_return_data: string;
|
|
840
|
-
})[];
|
|
841
|
-
} | {
|
|
842
|
-
extra_data: string;
|
|
843
|
-
} | {
|
|
844
|
-
version?: number | undefined;
|
|
845
|
-
timestamp?: number | undefined;
|
|
846
|
-
expiry?: number | undefined;
|
|
847
|
-
lock_time?: number | undefined;
|
|
848
|
-
version_group_id?: number | undefined;
|
|
849
|
-
branch_id?: number | undefined;
|
|
850
|
-
extra_data_len?: number | undefined;
|
|
851
|
-
extra_data?: string | undefined;
|
|
852
|
-
inputs_cnt: number;
|
|
853
|
-
outputs_cnt: number;
|
|
854
|
-
};
|
|
855
|
-
};
|
|
856
|
-
} | {
|
|
857
|
-
type: "TxAckInputWrapper";
|
|
858
|
-
message: {
|
|
859
|
-
input: ({
|
|
860
|
-
sequence?: number | undefined;
|
|
861
|
-
multisig?: {
|
|
862
|
-
address_n?: number[] | undefined;
|
|
863
|
-
nodes?: {
|
|
864
|
-
private_key?: string | undefined;
|
|
865
|
-
depth: number;
|
|
866
|
-
fingerprint: number;
|
|
867
|
-
child_num: number;
|
|
868
|
-
chain_code: string;
|
|
869
|
-
public_key: string;
|
|
870
|
-
}[] | undefined;
|
|
871
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
872
|
-
pubkeys: {
|
|
873
|
-
address_n: number[];
|
|
874
|
-
node: string | {
|
|
875
|
-
private_key?: string | undefined;
|
|
876
|
-
depth: number;
|
|
877
|
-
fingerprint: number;
|
|
878
|
-
child_num: number;
|
|
879
|
-
chain_code: string;
|
|
880
|
-
public_key: string;
|
|
881
|
-
};
|
|
882
|
-
}[];
|
|
883
|
-
signatures: string[];
|
|
884
|
-
m: number;
|
|
885
|
-
} | undefined;
|
|
886
|
-
decred_tree?: number | undefined;
|
|
887
|
-
orig_hash?: string | undefined;
|
|
888
|
-
orig_index?: number | undefined;
|
|
889
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
890
|
-
script_pubkey?: string | undefined;
|
|
891
|
-
coinjoin_flags?: number | undefined;
|
|
892
|
-
script_sig?: string | undefined;
|
|
893
|
-
witness?: string | undefined;
|
|
894
|
-
ownership_proof?: string | undefined;
|
|
895
|
-
commitment_data?: string | undefined;
|
|
896
|
-
prev_hash: string;
|
|
897
|
-
prev_index: number;
|
|
898
|
-
amount: string | number;
|
|
899
|
-
} & {
|
|
900
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
901
|
-
address_n: number[];
|
|
902
|
-
}) | ({
|
|
903
|
-
sequence?: number | undefined;
|
|
904
|
-
multisig?: {
|
|
905
|
-
address_n?: number[] | undefined;
|
|
906
|
-
nodes?: {
|
|
907
|
-
private_key?: string | undefined;
|
|
908
|
-
depth: number;
|
|
909
|
-
fingerprint: number;
|
|
910
|
-
child_num: number;
|
|
911
|
-
chain_code: string;
|
|
912
|
-
public_key: string;
|
|
913
|
-
}[] | undefined;
|
|
914
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
915
|
-
pubkeys: {
|
|
916
|
-
address_n: number[];
|
|
917
|
-
node: string | {
|
|
918
|
-
private_key?: string | undefined;
|
|
919
|
-
depth: number;
|
|
920
|
-
fingerprint: number;
|
|
921
|
-
child_num: number;
|
|
922
|
-
chain_code: string;
|
|
923
|
-
public_key: string;
|
|
924
|
-
};
|
|
925
|
-
}[];
|
|
926
|
-
signatures: string[];
|
|
927
|
-
m: number;
|
|
928
|
-
} | undefined;
|
|
929
|
-
decred_tree?: number | undefined;
|
|
930
|
-
orig_hash?: string | undefined;
|
|
931
|
-
orig_index?: number | undefined;
|
|
932
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
933
|
-
script_pubkey?: string | undefined;
|
|
934
|
-
coinjoin_flags?: number | undefined;
|
|
935
|
-
script_sig?: string | undefined;
|
|
936
|
-
witness?: string | undefined;
|
|
937
|
-
ownership_proof?: string | undefined;
|
|
938
|
-
commitment_data?: string | undefined;
|
|
939
|
-
prev_hash: string;
|
|
940
|
-
prev_index: number;
|
|
941
|
-
amount: string | number;
|
|
942
|
-
} & {
|
|
943
|
-
address_n?: undefined;
|
|
944
|
-
script_pubkey: string;
|
|
945
|
-
script_type: "EXTERNAL";
|
|
946
|
-
});
|
|
947
|
-
};
|
|
308
|
+
message: import("@trezor/protobuf/lib/messages").TxAck;
|
|
948
309
|
} | {
|
|
949
310
|
type: "TxAckInput";
|
|
950
|
-
message:
|
|
951
|
-
tx: {
|
|
952
|
-
input: ({
|
|
953
|
-
sequence?: number | undefined;
|
|
954
|
-
multisig?: {
|
|
955
|
-
address_n?: number[] | undefined;
|
|
956
|
-
nodes?: {
|
|
957
|
-
private_key?: string | undefined;
|
|
958
|
-
depth: number;
|
|
959
|
-
fingerprint: number;
|
|
960
|
-
child_num: number;
|
|
961
|
-
chain_code: string;
|
|
962
|
-
public_key: string;
|
|
963
|
-
}[] | undefined;
|
|
964
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
965
|
-
pubkeys: {
|
|
966
|
-
address_n: number[];
|
|
967
|
-
node: string | {
|
|
968
|
-
private_key?: string | undefined;
|
|
969
|
-
depth: number;
|
|
970
|
-
fingerprint: number;
|
|
971
|
-
child_num: number;
|
|
972
|
-
chain_code: string;
|
|
973
|
-
public_key: string;
|
|
974
|
-
};
|
|
975
|
-
}[];
|
|
976
|
-
signatures: string[];
|
|
977
|
-
m: number;
|
|
978
|
-
} | undefined;
|
|
979
|
-
decred_tree?: number | undefined;
|
|
980
|
-
orig_hash?: string | undefined;
|
|
981
|
-
orig_index?: number | undefined;
|
|
982
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
983
|
-
script_pubkey?: string | undefined;
|
|
984
|
-
coinjoin_flags?: number | undefined;
|
|
985
|
-
script_sig?: string | undefined;
|
|
986
|
-
witness?: string | undefined;
|
|
987
|
-
ownership_proof?: string | undefined;
|
|
988
|
-
commitment_data?: string | undefined;
|
|
989
|
-
prev_hash: string;
|
|
990
|
-
prev_index: number;
|
|
991
|
-
amount: string | number;
|
|
992
|
-
} & {
|
|
993
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | undefined;
|
|
994
|
-
address_n: number[];
|
|
995
|
-
}) | ({
|
|
996
|
-
sequence?: number | undefined;
|
|
997
|
-
multisig?: {
|
|
998
|
-
address_n?: number[] | undefined;
|
|
999
|
-
nodes?: {
|
|
1000
|
-
private_key?: string | undefined;
|
|
1001
|
-
depth: number;
|
|
1002
|
-
fingerprint: number;
|
|
1003
|
-
child_num: number;
|
|
1004
|
-
chain_code: string;
|
|
1005
|
-
public_key: string;
|
|
1006
|
-
}[] | undefined;
|
|
1007
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1008
|
-
pubkeys: {
|
|
1009
|
-
address_n: number[];
|
|
1010
|
-
node: string | {
|
|
1011
|
-
private_key?: string | undefined;
|
|
1012
|
-
depth: number;
|
|
1013
|
-
fingerprint: number;
|
|
1014
|
-
child_num: number;
|
|
1015
|
-
chain_code: string;
|
|
1016
|
-
public_key: string;
|
|
1017
|
-
};
|
|
1018
|
-
}[];
|
|
1019
|
-
signatures: string[];
|
|
1020
|
-
m: number;
|
|
1021
|
-
} | undefined;
|
|
1022
|
-
decred_tree?: number | undefined;
|
|
1023
|
-
orig_hash?: string | undefined;
|
|
1024
|
-
orig_index?: number | undefined;
|
|
1025
|
-
decred_staking_spend?: Messages.DecredStakingSpendType | undefined;
|
|
1026
|
-
script_pubkey?: string | undefined;
|
|
1027
|
-
coinjoin_flags?: number | undefined;
|
|
1028
|
-
script_sig?: string | undefined;
|
|
1029
|
-
witness?: string | undefined;
|
|
1030
|
-
ownership_proof?: string | undefined;
|
|
1031
|
-
commitment_data?: string | undefined;
|
|
1032
|
-
prev_hash: string;
|
|
1033
|
-
prev_index: number;
|
|
1034
|
-
amount: string | number;
|
|
1035
|
-
} & {
|
|
1036
|
-
address_n?: undefined;
|
|
1037
|
-
script_pubkey: string;
|
|
1038
|
-
script_type: "EXTERNAL";
|
|
1039
|
-
});
|
|
1040
|
-
};
|
|
1041
|
-
};
|
|
1042
|
-
} | {
|
|
1043
|
-
type: "TxAckOutputWrapper";
|
|
1044
|
-
message: {
|
|
1045
|
-
output: {
|
|
1046
|
-
address_n?: undefined;
|
|
1047
|
-
multisig?: {
|
|
1048
|
-
address_n?: number[] | undefined;
|
|
1049
|
-
nodes?: {
|
|
1050
|
-
private_key?: string | undefined;
|
|
1051
|
-
depth: number;
|
|
1052
|
-
fingerprint: number;
|
|
1053
|
-
child_num: number;
|
|
1054
|
-
chain_code: string;
|
|
1055
|
-
public_key: string;
|
|
1056
|
-
}[] | undefined;
|
|
1057
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1058
|
-
pubkeys: {
|
|
1059
|
-
address_n: number[];
|
|
1060
|
-
node: string | {
|
|
1061
|
-
private_key?: string | undefined;
|
|
1062
|
-
depth: number;
|
|
1063
|
-
fingerprint: number;
|
|
1064
|
-
child_num: number;
|
|
1065
|
-
chain_code: string;
|
|
1066
|
-
public_key: string;
|
|
1067
|
-
};
|
|
1068
|
-
}[];
|
|
1069
|
-
signatures: string[];
|
|
1070
|
-
m: number;
|
|
1071
|
-
} | undefined;
|
|
1072
|
-
orig_hash?: string | undefined;
|
|
1073
|
-
orig_index?: number | undefined;
|
|
1074
|
-
payment_req_index?: number | undefined;
|
|
1075
|
-
address: string;
|
|
1076
|
-
amount: string | number;
|
|
1077
|
-
script_type: "PAYTOADDRESS";
|
|
1078
|
-
} | {
|
|
1079
|
-
address?: undefined;
|
|
1080
|
-
multisig?: {
|
|
1081
|
-
address_n?: number[] | undefined;
|
|
1082
|
-
nodes?: {
|
|
1083
|
-
private_key?: string | undefined;
|
|
1084
|
-
depth: number;
|
|
1085
|
-
fingerprint: number;
|
|
1086
|
-
child_num: number;
|
|
1087
|
-
chain_code: string;
|
|
1088
|
-
public_key: string;
|
|
1089
|
-
}[] | undefined;
|
|
1090
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1091
|
-
pubkeys: {
|
|
1092
|
-
address_n: number[];
|
|
1093
|
-
node: string | {
|
|
1094
|
-
private_key?: string | undefined;
|
|
1095
|
-
depth: number;
|
|
1096
|
-
fingerprint: number;
|
|
1097
|
-
child_num: number;
|
|
1098
|
-
chain_code: string;
|
|
1099
|
-
public_key: string;
|
|
1100
|
-
};
|
|
1101
|
-
}[];
|
|
1102
|
-
signatures: string[];
|
|
1103
|
-
m: number;
|
|
1104
|
-
} | undefined;
|
|
1105
|
-
orig_hash?: string | undefined;
|
|
1106
|
-
orig_index?: number | undefined;
|
|
1107
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
1108
|
-
payment_req_index?: number | undefined;
|
|
1109
|
-
address_n: number[];
|
|
1110
|
-
amount: string | number;
|
|
1111
|
-
} | {
|
|
1112
|
-
address_n?: undefined;
|
|
1113
|
-
multisig?: {
|
|
1114
|
-
address_n?: number[] | undefined;
|
|
1115
|
-
nodes?: {
|
|
1116
|
-
private_key?: string | undefined;
|
|
1117
|
-
depth: number;
|
|
1118
|
-
fingerprint: number;
|
|
1119
|
-
child_num: number;
|
|
1120
|
-
chain_code: string;
|
|
1121
|
-
public_key: string;
|
|
1122
|
-
}[] | undefined;
|
|
1123
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1124
|
-
pubkeys: {
|
|
1125
|
-
address_n: number[];
|
|
1126
|
-
node: string | {
|
|
1127
|
-
private_key?: string | undefined;
|
|
1128
|
-
depth: number;
|
|
1129
|
-
fingerprint: number;
|
|
1130
|
-
child_num: number;
|
|
1131
|
-
chain_code: string;
|
|
1132
|
-
public_key: string;
|
|
1133
|
-
};
|
|
1134
|
-
}[];
|
|
1135
|
-
signatures: string[];
|
|
1136
|
-
m: number;
|
|
1137
|
-
} | undefined;
|
|
1138
|
-
orig_hash?: string | undefined;
|
|
1139
|
-
orig_index?: number | undefined;
|
|
1140
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
1141
|
-
payment_req_index?: number | undefined;
|
|
1142
|
-
address: string;
|
|
1143
|
-
amount: string | number;
|
|
1144
|
-
} | {
|
|
1145
|
-
address_n?: undefined;
|
|
1146
|
-
address?: undefined;
|
|
1147
|
-
orig_hash?: string | undefined;
|
|
1148
|
-
orig_index?: number | undefined;
|
|
1149
|
-
payment_req_index?: number | undefined;
|
|
1150
|
-
amount: 0 | "0";
|
|
1151
|
-
script_type: "PAYTOOPRETURN";
|
|
1152
|
-
op_return_data: string;
|
|
1153
|
-
};
|
|
1154
|
-
};
|
|
311
|
+
message: import("@trezor/protobuf/lib/messages").TxAckInput;
|
|
1155
312
|
} | {
|
|
1156
313
|
type: "TxAckOutput";
|
|
1157
|
-
message:
|
|
1158
|
-
tx: {
|
|
1159
|
-
output: {
|
|
1160
|
-
address_n?: undefined;
|
|
1161
|
-
multisig?: {
|
|
1162
|
-
address_n?: number[] | undefined;
|
|
1163
|
-
nodes?: {
|
|
1164
|
-
private_key?: string | undefined;
|
|
1165
|
-
depth: number;
|
|
1166
|
-
fingerprint: number;
|
|
1167
|
-
child_num: number;
|
|
1168
|
-
chain_code: string;
|
|
1169
|
-
public_key: string;
|
|
1170
|
-
}[] | undefined;
|
|
1171
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1172
|
-
pubkeys: {
|
|
1173
|
-
address_n: number[];
|
|
1174
|
-
node: string | {
|
|
1175
|
-
private_key?: string | undefined;
|
|
1176
|
-
depth: number;
|
|
1177
|
-
fingerprint: number;
|
|
1178
|
-
child_num: number;
|
|
1179
|
-
chain_code: string;
|
|
1180
|
-
public_key: string;
|
|
1181
|
-
};
|
|
1182
|
-
}[];
|
|
1183
|
-
signatures: string[];
|
|
1184
|
-
m: number;
|
|
1185
|
-
} | undefined;
|
|
1186
|
-
orig_hash?: string | undefined;
|
|
1187
|
-
orig_index?: number | undefined;
|
|
1188
|
-
payment_req_index?: number | undefined;
|
|
1189
|
-
address: string;
|
|
1190
|
-
amount: string | number;
|
|
1191
|
-
script_type: "PAYTOADDRESS";
|
|
1192
|
-
} | {
|
|
1193
|
-
address?: undefined;
|
|
1194
|
-
multisig?: {
|
|
1195
|
-
address_n?: number[] | undefined;
|
|
1196
|
-
nodes?: {
|
|
1197
|
-
private_key?: string | undefined;
|
|
1198
|
-
depth: number;
|
|
1199
|
-
fingerprint: number;
|
|
1200
|
-
child_num: number;
|
|
1201
|
-
chain_code: string;
|
|
1202
|
-
public_key: string;
|
|
1203
|
-
}[] | undefined;
|
|
1204
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1205
|
-
pubkeys: {
|
|
1206
|
-
address_n: number[];
|
|
1207
|
-
node: string | {
|
|
1208
|
-
private_key?: string | undefined;
|
|
1209
|
-
depth: number;
|
|
1210
|
-
fingerprint: number;
|
|
1211
|
-
child_num: number;
|
|
1212
|
-
chain_code: string;
|
|
1213
|
-
public_key: string;
|
|
1214
|
-
};
|
|
1215
|
-
}[];
|
|
1216
|
-
signatures: string[];
|
|
1217
|
-
m: number;
|
|
1218
|
-
} | undefined;
|
|
1219
|
-
orig_hash?: string | undefined;
|
|
1220
|
-
orig_index?: number | undefined;
|
|
1221
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
1222
|
-
payment_req_index?: number | undefined;
|
|
1223
|
-
address_n: number[];
|
|
1224
|
-
amount: string | number;
|
|
1225
|
-
} | {
|
|
1226
|
-
address_n?: undefined;
|
|
1227
|
-
multisig?: {
|
|
1228
|
-
address_n?: number[] | undefined;
|
|
1229
|
-
nodes?: {
|
|
1230
|
-
private_key?: string | undefined;
|
|
1231
|
-
depth: number;
|
|
1232
|
-
fingerprint: number;
|
|
1233
|
-
child_num: number;
|
|
1234
|
-
chain_code: string;
|
|
1235
|
-
public_key: string;
|
|
1236
|
-
}[] | undefined;
|
|
1237
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1238
|
-
pubkeys: {
|
|
1239
|
-
address_n: number[];
|
|
1240
|
-
node: string | {
|
|
1241
|
-
private_key?: string | undefined;
|
|
1242
|
-
depth: number;
|
|
1243
|
-
fingerprint: number;
|
|
1244
|
-
child_num: number;
|
|
1245
|
-
chain_code: string;
|
|
1246
|
-
public_key: string;
|
|
1247
|
-
};
|
|
1248
|
-
}[];
|
|
1249
|
-
signatures: string[];
|
|
1250
|
-
m: number;
|
|
1251
|
-
} | undefined;
|
|
1252
|
-
orig_hash?: string | undefined;
|
|
1253
|
-
orig_index?: number | undefined;
|
|
1254
|
-
script_type?: "PAYTOADDRESS" | "PAYTOSCRIPTHASH" | "PAYTOMULTISIG" | "PAYTOWITNESS" | "PAYTOP2SHWITNESS" | "PAYTOTAPROOT" | undefined;
|
|
1255
|
-
payment_req_index?: number | undefined;
|
|
1256
|
-
address: string;
|
|
1257
|
-
amount: string | number;
|
|
1258
|
-
} | {
|
|
1259
|
-
address_n?: undefined;
|
|
1260
|
-
address?: undefined;
|
|
1261
|
-
orig_hash?: string | undefined;
|
|
1262
|
-
orig_index?: number | undefined;
|
|
1263
|
-
payment_req_index?: number | undefined;
|
|
1264
|
-
amount: 0 | "0";
|
|
1265
|
-
script_type: "PAYTOOPRETURN";
|
|
1266
|
-
op_return_data: string;
|
|
1267
|
-
};
|
|
1268
|
-
};
|
|
1269
|
-
};
|
|
314
|
+
message: import("@trezor/protobuf/lib/messages").TxAckOutput;
|
|
1270
315
|
} | {
|
|
1271
316
|
type: "TxAckPrevMeta";
|
|
1272
|
-
message:
|
|
1273
|
-
tx: {
|
|
1274
|
-
timestamp?: number | undefined;
|
|
1275
|
-
expiry?: number | undefined;
|
|
1276
|
-
version_group_id?: number | undefined;
|
|
1277
|
-
branch_id?: number | undefined;
|
|
1278
|
-
extra_data_len?: number | undefined;
|
|
1279
|
-
version: number;
|
|
1280
|
-
outputs_count: number;
|
|
1281
|
-
inputs_count: number;
|
|
1282
|
-
lock_time: number;
|
|
1283
|
-
};
|
|
1284
|
-
};
|
|
1285
|
-
} | {
|
|
1286
|
-
type: "TxAckPrevInputWrapper";
|
|
1287
|
-
message: {
|
|
1288
|
-
input: {
|
|
1289
|
-
decred_tree?: number | undefined;
|
|
1290
|
-
prev_hash: string;
|
|
1291
|
-
prev_index: number;
|
|
1292
|
-
sequence: number;
|
|
1293
|
-
script_sig: string;
|
|
1294
|
-
};
|
|
1295
|
-
};
|
|
317
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevMeta;
|
|
1296
318
|
} | {
|
|
1297
319
|
type: "TxAckPrevInput";
|
|
1298
|
-
message:
|
|
1299
|
-
tx: {
|
|
1300
|
-
input: {
|
|
1301
|
-
decred_tree?: number | undefined;
|
|
1302
|
-
prev_hash: string;
|
|
1303
|
-
prev_index: number;
|
|
1304
|
-
sequence: number;
|
|
1305
|
-
script_sig: string;
|
|
1306
|
-
};
|
|
1307
|
-
};
|
|
1308
|
-
};
|
|
1309
|
-
} | {
|
|
1310
|
-
type: "TxAckPrevOutputWrapper";
|
|
1311
|
-
message: {
|
|
1312
|
-
output: {
|
|
1313
|
-
decred_script_version?: number | undefined;
|
|
1314
|
-
amount: string | number;
|
|
1315
|
-
script_pubkey: string;
|
|
1316
|
-
};
|
|
1317
|
-
};
|
|
320
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevInput;
|
|
1318
321
|
} | {
|
|
1319
322
|
type: "TxAckPrevOutput";
|
|
1320
|
-
message:
|
|
1321
|
-
tx: {
|
|
1322
|
-
output: {
|
|
1323
|
-
decred_script_version?: number | undefined;
|
|
1324
|
-
amount: string | number;
|
|
1325
|
-
script_pubkey: string;
|
|
1326
|
-
};
|
|
1327
|
-
};
|
|
1328
|
-
};
|
|
1329
|
-
} | {
|
|
1330
|
-
type: "TxAckPrevExtraDataWrapper";
|
|
1331
|
-
message: {
|
|
1332
|
-
extra_data_chunk: string;
|
|
1333
|
-
};
|
|
323
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevOutput;
|
|
1334
324
|
} | {
|
|
1335
325
|
type: "TxAckPrevExtraData";
|
|
1336
|
-
message:
|
|
1337
|
-
tx: {
|
|
1338
|
-
extra_data_chunk: string;
|
|
1339
|
-
};
|
|
1340
|
-
};
|
|
326
|
+
message: import("@trezor/protobuf/lib/messages").TxAckPrevExtraData;
|
|
1341
327
|
} | {
|
|
1342
328
|
type: "GetOwnershipProof";
|
|
1343
|
-
message:
|
|
1344
|
-
multisig?: {
|
|
1345
|
-
address_n?: number[] | undefined;
|
|
1346
|
-
nodes?: {
|
|
1347
|
-
private_key?: string | undefined;
|
|
1348
|
-
depth: number;
|
|
1349
|
-
fingerprint: number;
|
|
1350
|
-
child_num: number;
|
|
1351
|
-
chain_code: string;
|
|
1352
|
-
public_key: string;
|
|
1353
|
-
}[] | undefined;
|
|
1354
|
-
pubkeys_order?: Messages.MultisigPubkeysOrder | undefined;
|
|
1355
|
-
pubkeys: {
|
|
1356
|
-
address_n: number[];
|
|
1357
|
-
node: string | {
|
|
1358
|
-
private_key?: string | undefined;
|
|
1359
|
-
depth: number;
|
|
1360
|
-
fingerprint: number;
|
|
1361
|
-
child_num: number;
|
|
1362
|
-
chain_code: string;
|
|
1363
|
-
public_key: string;
|
|
1364
|
-
};
|
|
1365
|
-
}[];
|
|
1366
|
-
signatures: string[];
|
|
1367
|
-
m: number;
|
|
1368
|
-
} | undefined;
|
|
1369
|
-
commitment_data?: string | undefined;
|
|
1370
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
1371
|
-
coin_name?: string | undefined;
|
|
1372
|
-
user_confirmation?: boolean | undefined;
|
|
1373
|
-
ownership_ids?: string[] | undefined;
|
|
1374
|
-
address_n: number[];
|
|
1375
|
-
};
|
|
329
|
+
message: import("@trezor/protobuf/lib/messages").GetOwnershipProof;
|
|
1376
330
|
} | {
|
|
1377
331
|
type: "OwnershipProof";
|
|
1378
|
-
message:
|
|
1379
|
-
signature: string;
|
|
1380
|
-
ownership_proof: string;
|
|
1381
|
-
};
|
|
332
|
+
message: import("@trezor/protobuf/lib/messages").OwnershipProof;
|
|
1382
333
|
} | {
|
|
1383
334
|
type: "AuthorizeCoinJoin";
|
|
1384
|
-
message:
|
|
1385
|
-
script_type?: "SPENDADDRESS" | "SPENDMULTISIG" | "SPENDWITNESS" | "SPENDP2SHWITNESS" | "SPENDTAPROOT" | "EXTERNAL" | undefined;
|
|
1386
|
-
coin_name?: string | undefined;
|
|
1387
|
-
amount_unit?: Messages.AmountUnit | undefined;
|
|
1388
|
-
address_n: number[];
|
|
1389
|
-
coordinator: string;
|
|
1390
|
-
max_rounds: number;
|
|
1391
|
-
max_coordinator_fee_rate: number;
|
|
1392
|
-
max_fee_per_kvbyte: number;
|
|
1393
|
-
};
|
|
335
|
+
message: import("@trezor/protobuf/lib/messages").AuthorizeCoinJoin;
|
|
1394
336
|
} | {
|
|
1395
337
|
type: "BleUnpair";
|
|
1396
|
-
message:
|
|
1397
|
-
all?: boolean | undefined;
|
|
1398
|
-
};
|
|
338
|
+
message: import("@trezor/protobuf/lib/messages").BleUnpair;
|
|
1399
339
|
} | {
|
|
1400
340
|
type: "FirmwareErase";
|
|
1401
|
-
message:
|
|
1402
|
-
length?: number | undefined;
|
|
1403
|
-
};
|
|
341
|
+
message: import("@trezor/protobuf/lib/messages").FirmwareErase;
|
|
1404
342
|
} | {
|
|
1405
343
|
type: "FirmwareRequest";
|
|
1406
|
-
message:
|
|
1407
|
-
length: number;
|
|
1408
|
-
offset: number;
|
|
1409
|
-
};
|
|
344
|
+
message: import("@trezor/protobuf/lib/messages").FirmwareRequest;
|
|
1410
345
|
} | {
|
|
1411
346
|
type: "FirmwareUpload";
|
|
1412
|
-
message:
|
|
1413
|
-
hash?: string | undefined;
|
|
1414
|
-
payload: ArrayBuffer | Buffer<ArrayBufferLike>;
|
|
1415
|
-
};
|
|
347
|
+
message: import("@trezor/protobuf/lib/messages").FirmwareUpload;
|
|
1416
348
|
} | {
|
|
1417
349
|
type: "ProdTestT1";
|
|
1418
|
-
message:
|
|
1419
|
-
payload?: string | undefined;
|
|
1420
|
-
};
|
|
1421
|
-
} | {
|
|
1422
|
-
type: "CardanoBlockchainPointerType";
|
|
1423
|
-
message: {
|
|
1424
|
-
block_index: number;
|
|
1425
|
-
tx_index: number;
|
|
1426
|
-
certificate_index: number;
|
|
1427
|
-
};
|
|
1428
|
-
} | {
|
|
1429
|
-
type: "CardanoNativeScript";
|
|
1430
|
-
message: {
|
|
1431
|
-
scripts?: any[] | undefined;
|
|
1432
|
-
key_hash?: string | undefined;
|
|
1433
|
-
key_path?: number[] | undefined;
|
|
1434
|
-
required_signatures_count?: number | undefined;
|
|
1435
|
-
invalid_before?: string | number | undefined;
|
|
1436
|
-
invalid_hereafter?: string | number | undefined;
|
|
1437
|
-
type: Messages.CardanoNativeScriptType;
|
|
1438
|
-
};
|
|
350
|
+
message: import("@trezor/protobuf/lib/messages").ProdTestT1;
|
|
1439
351
|
} | {
|
|
1440
352
|
type: "CardanoGetNativeScriptHash";
|
|
1441
|
-
message:
|
|
1442
|
-
script: {
|
|
1443
|
-
scripts?: any[] | undefined;
|
|
1444
|
-
key_hash?: string | undefined;
|
|
1445
|
-
key_path?: number[] | undefined;
|
|
1446
|
-
required_signatures_count?: number | undefined;
|
|
1447
|
-
invalid_before?: string | number | undefined;
|
|
1448
|
-
invalid_hereafter?: string | number | undefined;
|
|
1449
|
-
type: Messages.CardanoNativeScriptType;
|
|
1450
|
-
};
|
|
1451
|
-
display_format: Messages.CardanoNativeScriptHashDisplayFormat;
|
|
1452
|
-
derivation_type: Messages.CardanoDerivationType;
|
|
1453
|
-
};
|
|
353
|
+
message: import("@trezor/protobuf/lib/messages").CardanoGetNativeScriptHash;
|
|
1454
354
|
} | {
|
|
1455
355
|
type: "CardanoNativeScriptHash";
|
|
1456
|
-
message:
|
|
1457
|
-
script_hash: string;
|
|
1458
|
-
};
|
|
1459
|
-
} | {
|
|
1460
|
-
type: "CardanoAddressParametersType";
|
|
1461
|
-
message: {
|
|
1462
|
-
staking_key_hash?: string | undefined;
|
|
1463
|
-
certificate_pointer?: {
|
|
1464
|
-
block_index: number;
|
|
1465
|
-
tx_index: number;
|
|
1466
|
-
certificate_index: number;
|
|
1467
|
-
} | undefined;
|
|
1468
|
-
script_payment_hash?: string | undefined;
|
|
1469
|
-
script_staking_hash?: string | undefined;
|
|
1470
|
-
address_n: number[];
|
|
1471
|
-
address_type: Messages.CardanoAddressType;
|
|
1472
|
-
address_n_staking: number[];
|
|
1473
|
-
};
|
|
356
|
+
message: import("@trezor/protobuf/lib/messages").CardanoNativeScriptHash;
|
|
1474
357
|
} | {
|
|
1475
358
|
type: "CardanoGetAddress";
|
|
1476
|
-
message:
|
|
1477
|
-
chunkify?: boolean | undefined;
|
|
1478
|
-
show_display?: boolean | undefined;
|
|
1479
|
-
derivation_type: Messages.CardanoDerivationType;
|
|
1480
|
-
protocol_magic: number;
|
|
1481
|
-
network_id: number;
|
|
1482
|
-
address_parameters: {
|
|
1483
|
-
staking_key_hash?: string | undefined;
|
|
1484
|
-
certificate_pointer?: {
|
|
1485
|
-
block_index: number;
|
|
1486
|
-
tx_index: number;
|
|
1487
|
-
certificate_index: number;
|
|
1488
|
-
} | undefined;
|
|
1489
|
-
script_payment_hash?: string | undefined;
|
|
1490
|
-
script_staking_hash?: string | undefined;
|
|
1491
|
-
address_n: number[];
|
|
1492
|
-
address_type: Messages.CardanoAddressType;
|
|
1493
|
-
address_n_staking: number[];
|
|
1494
|
-
};
|
|
1495
|
-
};
|
|
359
|
+
message: import("@trezor/protobuf/lib/messages").CardanoGetAddress;
|
|
1496
360
|
} | {
|
|
1497
361
|
type: "CardanoAddress";
|
|
1498
|
-
message:
|
|
1499
|
-
address: string;
|
|
1500
|
-
};
|
|
362
|
+
message: import("@trezor/protobuf/lib/messages").CardanoAddress;
|
|
1501
363
|
} | {
|
|
1502
364
|
type: "CardanoGetPublicKey";
|
|
1503
|
-
message:
|
|
1504
|
-
show_display?: boolean | undefined;
|
|
1505
|
-
address_n: number[];
|
|
1506
|
-
derivation_type: Messages.CardanoDerivationType;
|
|
1507
|
-
};
|
|
365
|
+
message: import("@trezor/protobuf/lib/messages").CardanoGetPublicKey;
|
|
1508
366
|
} | {
|
|
1509
367
|
type: "CardanoPublicKey";
|
|
1510
|
-
message:
|
|
1511
|
-
node: {
|
|
1512
|
-
private_key?: string | undefined;
|
|
1513
|
-
depth: number;
|
|
1514
|
-
fingerprint: number;
|
|
1515
|
-
child_num: number;
|
|
1516
|
-
chain_code: string;
|
|
1517
|
-
public_key: string;
|
|
1518
|
-
};
|
|
1519
|
-
xpub: string;
|
|
1520
|
-
};
|
|
368
|
+
message: import("@trezor/protobuf/lib/messages").CardanoPublicKey;
|
|
1521
369
|
} | {
|
|
1522
370
|
type: "CardanoSignTxInit";
|
|
1523
|
-
message:
|
|
1524
|
-
chunkify?: boolean | undefined;
|
|
1525
|
-
ttl?: string | number | undefined;
|
|
1526
|
-
validity_interval_start?: string | number | undefined;
|
|
1527
|
-
include_network_id?: boolean | undefined;
|
|
1528
|
-
script_data_hash?: string | undefined;
|
|
1529
|
-
has_collateral_return?: boolean | undefined;
|
|
1530
|
-
total_collateral?: string | number | undefined;
|
|
1531
|
-
reference_inputs_count?: number | undefined;
|
|
1532
|
-
tag_cbor_sets?: boolean | undefined;
|
|
1533
|
-
fee: string | number;
|
|
1534
|
-
outputs_count: number;
|
|
1535
|
-
inputs_count: number;
|
|
1536
|
-
derivation_type: Messages.CardanoDerivationType;
|
|
1537
|
-
protocol_magic: number;
|
|
1538
|
-
network_id: number;
|
|
1539
|
-
signing_mode: Messages.CardanoTxSigningMode;
|
|
1540
|
-
certificates_count: number;
|
|
1541
|
-
withdrawals_count: number;
|
|
1542
|
-
has_auxiliary_data: boolean;
|
|
1543
|
-
witness_requests_count: number;
|
|
1544
|
-
minting_asset_groups_count: number;
|
|
1545
|
-
collateral_inputs_count: number;
|
|
1546
|
-
required_signers_count: number;
|
|
1547
|
-
};
|
|
371
|
+
message: import("@trezor/protobuf/lib/messages").CardanoSignTxInit;
|
|
1548
372
|
} | {
|
|
1549
373
|
type: "CardanoTxInput";
|
|
1550
|
-
message:
|
|
1551
|
-
prev_hash: string;
|
|
1552
|
-
prev_index: number;
|
|
1553
|
-
};
|
|
374
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxInput;
|
|
1554
375
|
} | {
|
|
1555
376
|
type: "CardanoTxOutput";
|
|
1556
|
-
message:
|
|
1557
|
-
address?: string | undefined;
|
|
1558
|
-
format?: Messages.CardanoTxOutputSerializationFormat | undefined;
|
|
1559
|
-
address_parameters?: {
|
|
1560
|
-
staking_key_hash?: string | undefined;
|
|
1561
|
-
certificate_pointer?: {
|
|
1562
|
-
block_index: number;
|
|
1563
|
-
tx_index: number;
|
|
1564
|
-
certificate_index: number;
|
|
1565
|
-
} | undefined;
|
|
1566
|
-
script_payment_hash?: string | undefined;
|
|
1567
|
-
script_staking_hash?: string | undefined;
|
|
1568
|
-
address_n: number[];
|
|
1569
|
-
address_type: Messages.CardanoAddressType;
|
|
1570
|
-
address_n_staking: number[];
|
|
1571
|
-
} | undefined;
|
|
1572
|
-
datum_hash?: string | undefined;
|
|
1573
|
-
inline_datum_size?: number | undefined;
|
|
1574
|
-
reference_script_size?: number | undefined;
|
|
1575
|
-
amount: string | number;
|
|
1576
|
-
asset_groups_count: number;
|
|
1577
|
-
};
|
|
377
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxOutput;
|
|
1578
378
|
} | {
|
|
1579
379
|
type: "CardanoAssetGroup";
|
|
1580
|
-
message:
|
|
1581
|
-
policy_id: string;
|
|
1582
|
-
tokens_count: number;
|
|
1583
|
-
};
|
|
380
|
+
message: import("@trezor/protobuf/lib/messages").CardanoAssetGroup;
|
|
1584
381
|
} | {
|
|
1585
382
|
type: "CardanoToken";
|
|
1586
|
-
message:
|
|
1587
|
-
amount?: string | number | undefined;
|
|
1588
|
-
mint_amount?: string | number | undefined;
|
|
1589
|
-
asset_name_bytes: string;
|
|
1590
|
-
};
|
|
383
|
+
message: import("@trezor/protobuf/lib/messages").CardanoToken;
|
|
1591
384
|
} | {
|
|
1592
385
|
type: "CardanoTxInlineDatumChunk";
|
|
1593
|
-
message:
|
|
1594
|
-
data: string;
|
|
1595
|
-
};
|
|
386
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxInlineDatumChunk;
|
|
1596
387
|
} | {
|
|
1597
388
|
type: "CardanoTxReferenceScriptChunk";
|
|
1598
|
-
message:
|
|
1599
|
-
data: string;
|
|
1600
|
-
};
|
|
389
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxReferenceScriptChunk;
|
|
1601
390
|
} | {
|
|
1602
391
|
type: "CardanoPoolOwner";
|
|
1603
|
-
message:
|
|
1604
|
-
staking_key_hash?: string | undefined;
|
|
1605
|
-
staking_key_path?: number[] | undefined;
|
|
1606
|
-
};
|
|
392
|
+
message: import("@trezor/protobuf/lib/messages").CardanoPoolOwner;
|
|
1607
393
|
} | {
|
|
1608
394
|
type: "CardanoPoolRelayParameters";
|
|
1609
|
-
message:
|
|
1610
|
-
port?: number | undefined;
|
|
1611
|
-
ipv4_address?: string | undefined;
|
|
1612
|
-
ipv6_address?: string | undefined;
|
|
1613
|
-
host_name?: string | undefined;
|
|
1614
|
-
type: Messages.CardanoPoolRelayType;
|
|
1615
|
-
};
|
|
1616
|
-
} | {
|
|
1617
|
-
type: "CardanoPoolMetadataType";
|
|
1618
|
-
message: {
|
|
1619
|
-
url: string;
|
|
1620
|
-
hash: string;
|
|
1621
|
-
};
|
|
1622
|
-
} | {
|
|
1623
|
-
type: "CardanoPoolParametersType";
|
|
1624
|
-
message: {
|
|
1625
|
-
metadata?: {
|
|
1626
|
-
url: string;
|
|
1627
|
-
hash: string;
|
|
1628
|
-
} | undefined;
|
|
1629
|
-
pledge: string | number;
|
|
1630
|
-
cost: string | number;
|
|
1631
|
-
pool_id: string;
|
|
1632
|
-
vrf_key_hash: string;
|
|
1633
|
-
margin_numerator: string | number;
|
|
1634
|
-
margin_denominator: string | number;
|
|
1635
|
-
reward_account: string;
|
|
1636
|
-
owners_count: number;
|
|
1637
|
-
relays_count: number;
|
|
1638
|
-
};
|
|
1639
|
-
} | {
|
|
1640
|
-
type: "CardanoDRep";
|
|
1641
|
-
message: {
|
|
1642
|
-
key_hash?: string | undefined;
|
|
1643
|
-
script_hash?: string | undefined;
|
|
1644
|
-
type: Messages.CardanoDRepType;
|
|
1645
|
-
};
|
|
395
|
+
message: import("@trezor/protobuf/lib/messages").CardanoPoolRelayParameters;
|
|
1646
396
|
} | {
|
|
1647
397
|
type: "CardanoTxCertificate";
|
|
1648
|
-
message:
|
|
1649
|
-
path?: number[] | undefined;
|
|
1650
|
-
pool?: string | undefined;
|
|
1651
|
-
deposit?: string | number | undefined;
|
|
1652
|
-
key_hash?: string | undefined;
|
|
1653
|
-
script_hash?: string | undefined;
|
|
1654
|
-
pool_parameters?: {
|
|
1655
|
-
metadata?: {
|
|
1656
|
-
url: string;
|
|
1657
|
-
hash: string;
|
|
1658
|
-
} | undefined;
|
|
1659
|
-
pledge: string | number;
|
|
1660
|
-
cost: string | number;
|
|
1661
|
-
pool_id: string;
|
|
1662
|
-
vrf_key_hash: string;
|
|
1663
|
-
margin_numerator: string | number;
|
|
1664
|
-
margin_denominator: string | number;
|
|
1665
|
-
reward_account: string;
|
|
1666
|
-
owners_count: number;
|
|
1667
|
-
relays_count: number;
|
|
1668
|
-
} | undefined;
|
|
1669
|
-
drep?: {
|
|
1670
|
-
key_hash?: string | undefined;
|
|
1671
|
-
script_hash?: string | undefined;
|
|
1672
|
-
type: Messages.CardanoDRepType;
|
|
1673
|
-
} | undefined;
|
|
1674
|
-
type: Messages.CardanoCertificateType;
|
|
1675
|
-
};
|
|
398
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxCertificate;
|
|
1676
399
|
} | {
|
|
1677
400
|
type: "CardanoTxWithdrawal";
|
|
1678
|
-
message:
|
|
1679
|
-
path?: number[] | undefined;
|
|
1680
|
-
key_hash?: string | undefined;
|
|
1681
|
-
script_hash?: string | undefined;
|
|
1682
|
-
amount: string | number;
|
|
1683
|
-
};
|
|
1684
|
-
} | {
|
|
1685
|
-
type: "CardanoCVoteRegistrationDelegation";
|
|
1686
|
-
message: {
|
|
1687
|
-
weight: string | number;
|
|
1688
|
-
vote_public_key: string;
|
|
1689
|
-
};
|
|
1690
|
-
} | {
|
|
1691
|
-
type: "CardanoCVoteRegistrationParametersType";
|
|
1692
|
-
message: {
|
|
1693
|
-
format?: Messages.CardanoCVoteRegistrationFormat | undefined;
|
|
1694
|
-
delegations?: {
|
|
1695
|
-
weight: string | number;
|
|
1696
|
-
vote_public_key: string;
|
|
1697
|
-
}[] | undefined;
|
|
1698
|
-
vote_public_key?: string | undefined;
|
|
1699
|
-
payment_address_parameters?: {
|
|
1700
|
-
staking_key_hash?: string | undefined;
|
|
1701
|
-
certificate_pointer?: {
|
|
1702
|
-
block_index: number;
|
|
1703
|
-
tx_index: number;
|
|
1704
|
-
certificate_index: number;
|
|
1705
|
-
} | undefined;
|
|
1706
|
-
script_payment_hash?: string | undefined;
|
|
1707
|
-
script_staking_hash?: string | undefined;
|
|
1708
|
-
address_n: number[];
|
|
1709
|
-
address_type: Messages.CardanoAddressType;
|
|
1710
|
-
address_n_staking: number[];
|
|
1711
|
-
} | undefined;
|
|
1712
|
-
voting_purpose?: string | number | undefined;
|
|
1713
|
-
payment_address?: string | undefined;
|
|
1714
|
-
nonce: string | number;
|
|
1715
|
-
staking_path: number[];
|
|
1716
|
-
};
|
|
401
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxWithdrawal;
|
|
1717
402
|
} | {
|
|
1718
403
|
type: "CardanoTxAuxiliaryData";
|
|
1719
|
-
message:
|
|
1720
|
-
hash?: string | undefined;
|
|
1721
|
-
cvote_registration_parameters?: {
|
|
1722
|
-
format?: Messages.CardanoCVoteRegistrationFormat | undefined;
|
|
1723
|
-
delegations?: {
|
|
1724
|
-
weight: string | number;
|
|
1725
|
-
vote_public_key: string;
|
|
1726
|
-
}[] | undefined;
|
|
1727
|
-
vote_public_key?: string | undefined;
|
|
1728
|
-
payment_address_parameters?: {
|
|
1729
|
-
staking_key_hash?: string | undefined;
|
|
1730
|
-
certificate_pointer?: {
|
|
1731
|
-
block_index: number;
|
|
1732
|
-
tx_index: number;
|
|
1733
|
-
certificate_index: number;
|
|
1734
|
-
} | undefined;
|
|
1735
|
-
script_payment_hash?: string | undefined;
|
|
1736
|
-
script_staking_hash?: string | undefined;
|
|
1737
|
-
address_n: number[];
|
|
1738
|
-
address_type: Messages.CardanoAddressType;
|
|
1739
|
-
address_n_staking: number[];
|
|
1740
|
-
} | undefined;
|
|
1741
|
-
voting_purpose?: string | number | undefined;
|
|
1742
|
-
payment_address?: string | undefined;
|
|
1743
|
-
nonce: string | number;
|
|
1744
|
-
staking_path: number[];
|
|
1745
|
-
} | undefined;
|
|
1746
|
-
};
|
|
404
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxAuxiliaryData;
|
|
1747
405
|
} | {
|
|
1748
406
|
type: "CardanoTxMint";
|
|
1749
|
-
message:
|
|
1750
|
-
asset_groups_count: number;
|
|
1751
|
-
};
|
|
407
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxMint;
|
|
1752
408
|
} | {
|
|
1753
409
|
type: "CardanoTxCollateralInput";
|
|
1754
|
-
message:
|
|
1755
|
-
prev_hash: string;
|
|
1756
|
-
prev_index: number;
|
|
1757
|
-
};
|
|
410
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxCollateralInput;
|
|
1758
411
|
} | {
|
|
1759
412
|
type: "CardanoTxRequiredSigner";
|
|
1760
|
-
message:
|
|
1761
|
-
key_hash?: string | undefined;
|
|
1762
|
-
key_path?: number[] | undefined;
|
|
1763
|
-
};
|
|
413
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxRequiredSigner;
|
|
1764
414
|
} | {
|
|
1765
415
|
type: "CardanoTxReferenceInput";
|
|
1766
|
-
message:
|
|
1767
|
-
prev_hash: string;
|
|
1768
|
-
prev_index: number;
|
|
1769
|
-
};
|
|
416
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxReferenceInput;
|
|
1770
417
|
} | {
|
|
1771
418
|
type: "CardanoTxItemAck";
|
|
1772
|
-
message:
|
|
419
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxItemAck;
|
|
1773
420
|
} | {
|
|
1774
421
|
type: "CardanoTxAuxiliaryDataSupplement";
|
|
1775
|
-
message:
|
|
1776
|
-
auxiliary_data_hash?: string | undefined;
|
|
1777
|
-
cvote_registration_signature?: string | undefined;
|
|
1778
|
-
type: Messages.CardanoTxAuxiliaryDataSupplementType;
|
|
1779
|
-
};
|
|
422
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxAuxiliaryDataSupplement;
|
|
1780
423
|
} | {
|
|
1781
424
|
type: "CardanoTxWitnessRequest";
|
|
1782
|
-
message:
|
|
1783
|
-
path: number[];
|
|
1784
|
-
};
|
|
425
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxWitnessRequest;
|
|
1785
426
|
} | {
|
|
1786
427
|
type: "CardanoTxWitnessResponse";
|
|
1787
|
-
message:
|
|
1788
|
-
chain_code?: string | undefined;
|
|
1789
|
-
type: Messages.CardanoTxWitnessType;
|
|
1790
|
-
signature: string;
|
|
1791
|
-
pub_key: string;
|
|
1792
|
-
};
|
|
428
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxWitnessResponse;
|
|
1793
429
|
} | {
|
|
1794
430
|
type: "CardanoTxHostAck";
|
|
1795
|
-
message:
|
|
431
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxHostAck;
|
|
1796
432
|
} | {
|
|
1797
433
|
type: "CardanoTxBodyHash";
|
|
1798
|
-
message:
|
|
1799
|
-
tx_hash: string;
|
|
1800
|
-
};
|
|
434
|
+
message: import("@trezor/protobuf/lib/messages").CardanoTxBodyHash;
|
|
1801
435
|
} | {
|
|
1802
436
|
type: "CardanoSignTxFinished";
|
|
1803
|
-
message:
|
|
437
|
+
message: import("@trezor/protobuf/lib/messages").CardanoSignTxFinished;
|
|
1804
438
|
} | {
|
|
1805
439
|
type: "Success";
|
|
1806
|
-
message:
|
|
1807
|
-
message: string;
|
|
1808
|
-
};
|
|
1809
|
-
} | {
|
|
1810
|
-
type: "Failure";
|
|
1811
|
-
message: {
|
|
1812
|
-
code?: "Failure_ActionCancelled" | "Failure_FirmwareError" | "Failure_PinCancelled" | "Failure_PinInvalid" | "Failure_PinMismatch" | "Failure_WipeCodeMismatch" | "Failure_UnexpectedMessage" | "Failure_ButtonExpected" | "Failure_DataError" | "Failure_PinExpected" | "Failure_InvalidSignature" | "Failure_ProcessError" | "Failure_NotEnoughFunds" | "Failure_NotInitialized" | "Failure_InvalidSession" | "Failure_Busy" | undefined;
|
|
1813
|
-
message?: string | undefined;
|
|
1814
|
-
};
|
|
1815
|
-
} | {
|
|
1816
|
-
type: "ButtonRequest";
|
|
1817
|
-
message: {
|
|
1818
|
-
code?: "ButtonRequest_Other" | "ButtonRequest_FeeOverThreshold" | "ButtonRequest_ConfirmOutput" | "ButtonRequest_ResetDevice" | "ButtonRequest_ConfirmWord" | "ButtonRequest_WipeDevice" | "ButtonRequest_ProtectCall" | "ButtonRequest_SignTx" | "ButtonRequest_FirmwareCheck" | "ButtonRequest_Address" | "ButtonRequest_PublicKey" | "ButtonRequest_MnemonicWordCount" | "ButtonRequest_MnemonicInput" | "_Deprecated_ButtonRequest_PassphraseType" | "ButtonRequest_UnknownDerivationPath" | "ButtonRequest_RecoveryHomepage" | "ButtonRequest_Success" | "ButtonRequest_Warning" | "ButtonRequest_PassphraseEntry" | "ButtonRequest_PinEntry" | undefined;
|
|
1819
|
-
name?: string | undefined;
|
|
1820
|
-
pages?: number | undefined;
|
|
1821
|
-
};
|
|
440
|
+
message: import("@trezor/protobuf/lib/messages").Success;
|
|
1822
441
|
} | {
|
|
1823
442
|
type: "ButtonAck";
|
|
1824
|
-
message:
|
|
1825
|
-
} | {
|
|
1826
|
-
type: "PinMatrixRequest";
|
|
1827
|
-
message: {
|
|
1828
|
-
type?: "PinMatrixRequestType_Current" | "PinMatrixRequestType_NewFirst" | "PinMatrixRequestType_NewSecond" | "PinMatrixRequestType_WipeCodeFirst" | "PinMatrixRequestType_WipeCodeSecond" | undefined;
|
|
1829
|
-
};
|
|
443
|
+
message: import("@trezor/protobuf/lib/messages").ButtonAck;
|
|
1830
444
|
} | {
|
|
1831
445
|
type: "PinMatrixAck";
|
|
1832
|
-
message:
|
|
1833
|
-
pin: string;
|
|
1834
|
-
};
|
|
1835
|
-
} | {
|
|
1836
|
-
type: "PassphraseRequest";
|
|
1837
|
-
message: {
|
|
1838
|
-
_on_device?: boolean | undefined;
|
|
1839
|
-
};
|
|
446
|
+
message: import("@trezor/protobuf/lib/messages").PinMatrixAck;
|
|
1840
447
|
} | {
|
|
1841
448
|
type: "Deprecated_PassphraseStateRequest";
|
|
1842
|
-
message:
|
|
1843
|
-
state?: string | undefined;
|
|
1844
|
-
};
|
|
449
|
+
message: import("@trezor/protobuf/lib/messages").Deprecated_PassphraseStateRequest;
|
|
1845
450
|
} | {
|
|
1846
451
|
type: "Deprecated_PassphraseStateAck";
|
|
1847
|
-
message:
|
|
452
|
+
message: import("@trezor/protobuf/lib/messages").Deprecated_PassphraseStateAck;
|
|
1848
453
|
} | {
|
|
1849
454
|
type: "CipherKeyValue";
|
|
1850
|
-
message:
|
|
1851
|
-
encrypt?: boolean | undefined;
|
|
1852
|
-
iv?: string | undefined;
|
|
1853
|
-
ask_on_encrypt?: boolean | undefined;
|
|
1854
|
-
ask_on_decrypt?: boolean | undefined;
|
|
1855
|
-
address_n: number[];
|
|
1856
|
-
key: string;
|
|
1857
|
-
value: string;
|
|
1858
|
-
};
|
|
1859
|
-
} | {
|
|
1860
|
-
type: "IdentityType";
|
|
1861
|
-
message: {
|
|
1862
|
-
path?: string | undefined;
|
|
1863
|
-
port?: string | undefined;
|
|
1864
|
-
proto?: string | undefined;
|
|
1865
|
-
user?: string | undefined;
|
|
1866
|
-
host?: string | undefined;
|
|
1867
|
-
index?: number | undefined;
|
|
1868
|
-
};
|
|
455
|
+
message: import("@trezor/protobuf/lib/messages").CipherKeyValue;
|
|
1869
456
|
} | {
|
|
1870
457
|
type: "SignIdentity";
|
|
1871
|
-
message:
|
|
1872
|
-
ecdsa_curve_name?: string | undefined;
|
|
1873
|
-
challenge_hidden?: string | undefined;
|
|
1874
|
-
challenge_visual?: string | undefined;
|
|
1875
|
-
identity: {
|
|
1876
|
-
path?: string | undefined;
|
|
1877
|
-
port?: string | undefined;
|
|
1878
|
-
proto?: string | undefined;
|
|
1879
|
-
user?: string | undefined;
|
|
1880
|
-
host?: string | undefined;
|
|
1881
|
-
index?: number | undefined;
|
|
1882
|
-
};
|
|
1883
|
-
};
|
|
458
|
+
message: import("@trezor/protobuf/lib/messages").SignIdentity;
|
|
1884
459
|
} | {
|
|
1885
460
|
type: "SignedIdentity";
|
|
1886
|
-
message:
|
|
1887
|
-
address: string;
|
|
1888
|
-
public_key: string;
|
|
1889
|
-
signature: string;
|
|
1890
|
-
};
|
|
461
|
+
message: import("@trezor/protobuf/lib/messages").SignedIdentity;
|
|
1891
462
|
} | {
|
|
1892
463
|
type: "GetECDHSessionKey";
|
|
1893
|
-
message:
|
|
1894
|
-
ecdsa_curve_name?: string | undefined;
|
|
1895
|
-
identity: {
|
|
1896
|
-
path?: string | undefined;
|
|
1897
|
-
port?: string | undefined;
|
|
1898
|
-
proto?: string | undefined;
|
|
1899
|
-
user?: string | undefined;
|
|
1900
|
-
host?: string | undefined;
|
|
1901
|
-
index?: number | undefined;
|
|
1902
|
-
};
|
|
1903
|
-
peer_public_key: string;
|
|
1904
|
-
};
|
|
464
|
+
message: import("@trezor/protobuf/lib/messages").GetECDHSessionKey;
|
|
1905
465
|
} | {
|
|
1906
466
|
type: "ECDHSessionKey";
|
|
1907
|
-
message:
|
|
1908
|
-
public_key?: string | undefined;
|
|
1909
|
-
session_key: string;
|
|
1910
|
-
};
|
|
467
|
+
message: import("@trezor/protobuf/lib/messages").ECDHSessionKey;
|
|
1911
468
|
} | {
|
|
1912
469
|
type: "DebugLinkResetDebugEvents";
|
|
1913
|
-
message:
|
|
470
|
+
message: import("@trezor/protobuf/lib/messages").DebugLinkResetDebugEvents;
|
|
1914
471
|
} | {
|
|
1915
472
|
type: "DebugLinkOptigaSetSecMax";
|
|
1916
|
-
message:
|
|
473
|
+
message: import("@trezor/protobuf/lib/messages").DebugLinkOptigaSetSecMax;
|
|
474
|
+
} | {
|
|
475
|
+
type: "DebugLinkGetGcInfo";
|
|
476
|
+
message: import("@trezor/protobuf/lib/messages").DebugLinkGetGcInfo;
|
|
477
|
+
} | {
|
|
478
|
+
type: "DebugLinkGcInfo";
|
|
479
|
+
message: import("@trezor/protobuf/lib/messages").DebugLinkGcInfo;
|
|
1917
480
|
} | {
|
|
1918
481
|
type: "EthereumNetworkInfo";
|
|
1919
|
-
message:
|
|
1920
|
-
symbol: string;
|
|
1921
|
-
name: string;
|
|
1922
|
-
slip44: number;
|
|
1923
|
-
chain_id: number;
|
|
1924
|
-
};
|
|
482
|
+
message: import("@trezor/protobuf/lib/messages").EthereumNetworkInfo;
|
|
1925
483
|
} | {
|
|
1926
484
|
type: "EthereumTokenInfo";
|
|
1927
|
-
message:
|
|
1928
|
-
symbol: string;
|
|
1929
|
-
address: string;
|
|
1930
|
-
name: string;
|
|
1931
|
-
decimals: number;
|
|
1932
|
-
chain_id: number;
|
|
1933
|
-
};
|
|
485
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTokenInfo;
|
|
1934
486
|
} | {
|
|
1935
487
|
type: "SolanaTokenInfo";
|
|
1936
|
-
message:
|
|
1937
|
-
symbol: string;
|
|
1938
|
-
name: string;
|
|
1939
|
-
mint: string;
|
|
1940
|
-
};
|
|
488
|
+
message: import("@trezor/protobuf/lib/messages").SolanaTokenInfo;
|
|
1941
489
|
} | {
|
|
1942
490
|
type: "EosGetPublicKey";
|
|
1943
|
-
message:
|
|
1944
|
-
chunkify?: boolean | undefined;
|
|
1945
|
-
show_display?: boolean | undefined;
|
|
1946
|
-
address_n: number[];
|
|
1947
|
-
};
|
|
491
|
+
message: import("@trezor/protobuf/lib/messages").EosGetPublicKey;
|
|
1948
492
|
} | {
|
|
1949
493
|
type: "EosPublicKey";
|
|
1950
|
-
message:
|
|
1951
|
-
wif_public_key: string;
|
|
1952
|
-
raw_public_key: string;
|
|
1953
|
-
};
|
|
1954
|
-
} | {
|
|
1955
|
-
type: "EosTxHeader";
|
|
1956
|
-
message: {
|
|
1957
|
-
expiration: number;
|
|
1958
|
-
ref_block_num: number;
|
|
1959
|
-
ref_block_prefix: number;
|
|
1960
|
-
max_net_usage_words: number;
|
|
1961
|
-
max_cpu_usage_ms: number;
|
|
1962
|
-
delay_sec: number;
|
|
1963
|
-
};
|
|
494
|
+
message: import("@trezor/protobuf/lib/messages").EosPublicKey;
|
|
1964
495
|
} | {
|
|
1965
496
|
type: "EosSignTx";
|
|
1966
|
-
message:
|
|
1967
|
-
chunkify?: boolean | undefined;
|
|
1968
|
-
address_n: number[];
|
|
1969
|
-
header: {
|
|
1970
|
-
expiration: number;
|
|
1971
|
-
ref_block_num: number;
|
|
1972
|
-
ref_block_prefix: number;
|
|
1973
|
-
max_net_usage_words: number;
|
|
1974
|
-
max_cpu_usage_ms: number;
|
|
1975
|
-
delay_sec: number;
|
|
1976
|
-
};
|
|
1977
|
-
chain_id: string;
|
|
1978
|
-
num_actions: number;
|
|
1979
|
-
};
|
|
497
|
+
message: import("@trezor/protobuf/lib/messages").EosSignTx;
|
|
1980
498
|
} | {
|
|
1981
499
|
type: "EosTxActionRequest";
|
|
1982
|
-
message:
|
|
1983
|
-
data_size?: number | undefined;
|
|
1984
|
-
};
|
|
1985
|
-
} | {
|
|
1986
|
-
type: "EosAsset";
|
|
1987
|
-
message: {
|
|
1988
|
-
symbol: string;
|
|
1989
|
-
amount: string | number;
|
|
1990
|
-
};
|
|
1991
|
-
} | {
|
|
1992
|
-
type: "EosPermissionLevel";
|
|
1993
|
-
message: {
|
|
1994
|
-
permission: string;
|
|
1995
|
-
actor: string;
|
|
1996
|
-
};
|
|
1997
|
-
} | {
|
|
1998
|
-
type: "EosAuthorizationKey";
|
|
1999
|
-
message: {
|
|
2000
|
-
type?: number | undefined;
|
|
2001
|
-
address_n?: number[] | undefined;
|
|
2002
|
-
weight: number;
|
|
2003
|
-
key: string;
|
|
2004
|
-
};
|
|
2005
|
-
} | {
|
|
2006
|
-
type: "EosAuthorizationAccount";
|
|
2007
|
-
message: {
|
|
2008
|
-
weight: number;
|
|
2009
|
-
account: {
|
|
2010
|
-
permission: string;
|
|
2011
|
-
actor: string;
|
|
2012
|
-
};
|
|
2013
|
-
};
|
|
2014
|
-
} | {
|
|
2015
|
-
type: "EosAuthorizationWait";
|
|
2016
|
-
message: {
|
|
2017
|
-
weight: number;
|
|
2018
|
-
wait_sec: number;
|
|
2019
|
-
};
|
|
2020
|
-
} | {
|
|
2021
|
-
type: "EosAuthorization";
|
|
2022
|
-
message: {
|
|
2023
|
-
keys: {
|
|
2024
|
-
type?: number | undefined;
|
|
2025
|
-
address_n?: number[] | undefined;
|
|
2026
|
-
weight: number;
|
|
2027
|
-
key: string;
|
|
2028
|
-
}[];
|
|
2029
|
-
threshold: number;
|
|
2030
|
-
accounts: {
|
|
2031
|
-
weight: number;
|
|
2032
|
-
account: {
|
|
2033
|
-
permission: string;
|
|
2034
|
-
actor: string;
|
|
2035
|
-
};
|
|
2036
|
-
}[];
|
|
2037
|
-
waits: {
|
|
2038
|
-
weight: number;
|
|
2039
|
-
wait_sec: number;
|
|
2040
|
-
}[];
|
|
2041
|
-
};
|
|
2042
|
-
} | {
|
|
2043
|
-
type: "EosActionCommon";
|
|
2044
|
-
message: {
|
|
2045
|
-
name: string;
|
|
2046
|
-
account: string;
|
|
2047
|
-
authorization: {
|
|
2048
|
-
permission: string;
|
|
2049
|
-
actor: string;
|
|
2050
|
-
}[];
|
|
2051
|
-
};
|
|
2052
|
-
} | {
|
|
2053
|
-
type: "EosActionTransfer";
|
|
2054
|
-
message: {
|
|
2055
|
-
quantity: {
|
|
2056
|
-
symbol: string;
|
|
2057
|
-
amount: string | number;
|
|
2058
|
-
};
|
|
2059
|
-
memo: string;
|
|
2060
|
-
receiver: string;
|
|
2061
|
-
sender: string;
|
|
2062
|
-
};
|
|
2063
|
-
} | {
|
|
2064
|
-
type: "EosActionDelegate";
|
|
2065
|
-
message: {
|
|
2066
|
-
transfer: boolean;
|
|
2067
|
-
receiver: string;
|
|
2068
|
-
sender: string;
|
|
2069
|
-
net_quantity: {
|
|
2070
|
-
symbol: string;
|
|
2071
|
-
amount: string | number;
|
|
2072
|
-
};
|
|
2073
|
-
cpu_quantity: {
|
|
2074
|
-
symbol: string;
|
|
2075
|
-
amount: string | number;
|
|
2076
|
-
};
|
|
2077
|
-
};
|
|
2078
|
-
} | {
|
|
2079
|
-
type: "EosActionUndelegate";
|
|
2080
|
-
message: {
|
|
2081
|
-
receiver: string;
|
|
2082
|
-
sender: string;
|
|
2083
|
-
net_quantity: {
|
|
2084
|
-
symbol: string;
|
|
2085
|
-
amount: string | number;
|
|
2086
|
-
};
|
|
2087
|
-
cpu_quantity: {
|
|
2088
|
-
symbol: string;
|
|
2089
|
-
amount: string | number;
|
|
2090
|
-
};
|
|
2091
|
-
};
|
|
2092
|
-
} | {
|
|
2093
|
-
type: "EosActionRefund";
|
|
2094
|
-
message: {
|
|
2095
|
-
owner: string;
|
|
2096
|
-
};
|
|
2097
|
-
} | {
|
|
2098
|
-
type: "EosActionBuyRam";
|
|
2099
|
-
message: {
|
|
2100
|
-
quantity: {
|
|
2101
|
-
symbol: string;
|
|
2102
|
-
amount: string | number;
|
|
2103
|
-
};
|
|
2104
|
-
receiver: string;
|
|
2105
|
-
payer: string;
|
|
2106
|
-
};
|
|
2107
|
-
} | {
|
|
2108
|
-
type: "EosActionBuyRamBytes";
|
|
2109
|
-
message: {
|
|
2110
|
-
bytes: number;
|
|
2111
|
-
receiver: string;
|
|
2112
|
-
payer: string;
|
|
2113
|
-
};
|
|
2114
|
-
} | {
|
|
2115
|
-
type: "EosActionSellRam";
|
|
2116
|
-
message: {
|
|
2117
|
-
bytes: number;
|
|
2118
|
-
account: string;
|
|
2119
|
-
};
|
|
2120
|
-
} | {
|
|
2121
|
-
type: "EosActionVoteProducer";
|
|
2122
|
-
message: {
|
|
2123
|
-
voter: string;
|
|
2124
|
-
proxy: string;
|
|
2125
|
-
producers: string[];
|
|
2126
|
-
};
|
|
2127
|
-
} | {
|
|
2128
|
-
type: "EosActionUpdateAuth";
|
|
2129
|
-
message: {
|
|
2130
|
-
account: string;
|
|
2131
|
-
permission: string;
|
|
2132
|
-
parent: string;
|
|
2133
|
-
auth: {
|
|
2134
|
-
keys: {
|
|
2135
|
-
type?: number | undefined;
|
|
2136
|
-
address_n?: number[] | undefined;
|
|
2137
|
-
weight: number;
|
|
2138
|
-
key: string;
|
|
2139
|
-
}[];
|
|
2140
|
-
threshold: number;
|
|
2141
|
-
accounts: {
|
|
2142
|
-
weight: number;
|
|
2143
|
-
account: {
|
|
2144
|
-
permission: string;
|
|
2145
|
-
actor: string;
|
|
2146
|
-
};
|
|
2147
|
-
}[];
|
|
2148
|
-
waits: {
|
|
2149
|
-
weight: number;
|
|
2150
|
-
wait_sec: number;
|
|
2151
|
-
}[];
|
|
2152
|
-
};
|
|
2153
|
-
};
|
|
2154
|
-
} | {
|
|
2155
|
-
type: "EosActionDeleteAuth";
|
|
2156
|
-
message: {
|
|
2157
|
-
account: string;
|
|
2158
|
-
permission: string;
|
|
2159
|
-
};
|
|
2160
|
-
} | {
|
|
2161
|
-
type: "EosActionLinkAuth";
|
|
2162
|
-
message: {
|
|
2163
|
-
code: string;
|
|
2164
|
-
type: string;
|
|
2165
|
-
account: string;
|
|
2166
|
-
requirement: string;
|
|
2167
|
-
};
|
|
2168
|
-
} | {
|
|
2169
|
-
type: "EosActionUnlinkAuth";
|
|
2170
|
-
message: {
|
|
2171
|
-
code: string;
|
|
2172
|
-
type: string;
|
|
2173
|
-
account: string;
|
|
2174
|
-
};
|
|
2175
|
-
} | {
|
|
2176
|
-
type: "EosActionNewAccount";
|
|
2177
|
-
message: {
|
|
2178
|
-
name: string;
|
|
2179
|
-
owner: {
|
|
2180
|
-
keys: {
|
|
2181
|
-
type?: number | undefined;
|
|
2182
|
-
address_n?: number[] | undefined;
|
|
2183
|
-
weight: number;
|
|
2184
|
-
key: string;
|
|
2185
|
-
}[];
|
|
2186
|
-
threshold: number;
|
|
2187
|
-
accounts: {
|
|
2188
|
-
weight: number;
|
|
2189
|
-
account: {
|
|
2190
|
-
permission: string;
|
|
2191
|
-
actor: string;
|
|
2192
|
-
};
|
|
2193
|
-
}[];
|
|
2194
|
-
waits: {
|
|
2195
|
-
weight: number;
|
|
2196
|
-
wait_sec: number;
|
|
2197
|
-
}[];
|
|
2198
|
-
};
|
|
2199
|
-
creator: string;
|
|
2200
|
-
active: {
|
|
2201
|
-
keys: {
|
|
2202
|
-
type?: number | undefined;
|
|
2203
|
-
address_n?: number[] | undefined;
|
|
2204
|
-
weight: number;
|
|
2205
|
-
key: string;
|
|
2206
|
-
}[];
|
|
2207
|
-
threshold: number;
|
|
2208
|
-
accounts: {
|
|
2209
|
-
weight: number;
|
|
2210
|
-
account: {
|
|
2211
|
-
permission: string;
|
|
2212
|
-
actor: string;
|
|
2213
|
-
};
|
|
2214
|
-
}[];
|
|
2215
|
-
waits: {
|
|
2216
|
-
weight: number;
|
|
2217
|
-
wait_sec: number;
|
|
2218
|
-
}[];
|
|
2219
|
-
};
|
|
2220
|
-
};
|
|
2221
|
-
} | {
|
|
2222
|
-
type: "EosActionUnknown";
|
|
2223
|
-
message: {
|
|
2224
|
-
data_size: number;
|
|
2225
|
-
data_chunk: string;
|
|
2226
|
-
};
|
|
500
|
+
message: import("@trezor/protobuf/lib/messages").EosTxActionRequest;
|
|
2227
501
|
} | {
|
|
2228
502
|
type: "EosTxActionAck";
|
|
2229
|
-
message:
|
|
2230
|
-
unknown?: {
|
|
2231
|
-
data_size: number;
|
|
2232
|
-
data_chunk: string;
|
|
2233
|
-
} | undefined;
|
|
2234
|
-
transfer?: {
|
|
2235
|
-
quantity: {
|
|
2236
|
-
symbol: string;
|
|
2237
|
-
amount: string | number;
|
|
2238
|
-
};
|
|
2239
|
-
memo: string;
|
|
2240
|
-
receiver: string;
|
|
2241
|
-
sender: string;
|
|
2242
|
-
} | undefined;
|
|
2243
|
-
refund?: {
|
|
2244
|
-
owner: string;
|
|
2245
|
-
} | undefined;
|
|
2246
|
-
delegate?: {
|
|
2247
|
-
transfer: boolean;
|
|
2248
|
-
receiver: string;
|
|
2249
|
-
sender: string;
|
|
2250
|
-
net_quantity: {
|
|
2251
|
-
symbol: string;
|
|
2252
|
-
amount: string | number;
|
|
2253
|
-
};
|
|
2254
|
-
cpu_quantity: {
|
|
2255
|
-
symbol: string;
|
|
2256
|
-
amount: string | number;
|
|
2257
|
-
};
|
|
2258
|
-
} | undefined;
|
|
2259
|
-
undelegate?: {
|
|
2260
|
-
receiver: string;
|
|
2261
|
-
sender: string;
|
|
2262
|
-
net_quantity: {
|
|
2263
|
-
symbol: string;
|
|
2264
|
-
amount: string | number;
|
|
2265
|
-
};
|
|
2266
|
-
cpu_quantity: {
|
|
2267
|
-
symbol: string;
|
|
2268
|
-
amount: string | number;
|
|
2269
|
-
};
|
|
2270
|
-
} | undefined;
|
|
2271
|
-
buy_ram?: {
|
|
2272
|
-
quantity: {
|
|
2273
|
-
symbol: string;
|
|
2274
|
-
amount: string | number;
|
|
2275
|
-
};
|
|
2276
|
-
receiver: string;
|
|
2277
|
-
payer: string;
|
|
2278
|
-
} | undefined;
|
|
2279
|
-
buy_ram_bytes?: {
|
|
2280
|
-
bytes: number;
|
|
2281
|
-
receiver: string;
|
|
2282
|
-
payer: string;
|
|
2283
|
-
} | undefined;
|
|
2284
|
-
sell_ram?: {
|
|
2285
|
-
bytes: number;
|
|
2286
|
-
account: string;
|
|
2287
|
-
} | undefined;
|
|
2288
|
-
vote_producer?: {
|
|
2289
|
-
voter: string;
|
|
2290
|
-
proxy: string;
|
|
2291
|
-
producers: string[];
|
|
2292
|
-
} | undefined;
|
|
2293
|
-
update_auth?: {
|
|
2294
|
-
account: string;
|
|
2295
|
-
permission: string;
|
|
2296
|
-
parent: string;
|
|
2297
|
-
auth: {
|
|
2298
|
-
keys: {
|
|
2299
|
-
type?: number | undefined;
|
|
2300
|
-
address_n?: number[] | undefined;
|
|
2301
|
-
weight: number;
|
|
2302
|
-
key: string;
|
|
2303
|
-
}[];
|
|
2304
|
-
threshold: number;
|
|
2305
|
-
accounts: {
|
|
2306
|
-
weight: number;
|
|
2307
|
-
account: {
|
|
2308
|
-
permission: string;
|
|
2309
|
-
actor: string;
|
|
2310
|
-
};
|
|
2311
|
-
}[];
|
|
2312
|
-
waits: {
|
|
2313
|
-
weight: number;
|
|
2314
|
-
wait_sec: number;
|
|
2315
|
-
}[];
|
|
2316
|
-
};
|
|
2317
|
-
} | undefined;
|
|
2318
|
-
delete_auth?: {
|
|
2319
|
-
account: string;
|
|
2320
|
-
permission: string;
|
|
2321
|
-
} | undefined;
|
|
2322
|
-
link_auth?: {
|
|
2323
|
-
code: string;
|
|
2324
|
-
type: string;
|
|
2325
|
-
account: string;
|
|
2326
|
-
requirement: string;
|
|
2327
|
-
} | undefined;
|
|
2328
|
-
unlink_auth?: {
|
|
2329
|
-
code: string;
|
|
2330
|
-
type: string;
|
|
2331
|
-
account: string;
|
|
2332
|
-
} | undefined;
|
|
2333
|
-
new_account?: {
|
|
2334
|
-
name: string;
|
|
2335
|
-
owner: {
|
|
2336
|
-
keys: {
|
|
2337
|
-
type?: number | undefined;
|
|
2338
|
-
address_n?: number[] | undefined;
|
|
2339
|
-
weight: number;
|
|
2340
|
-
key: string;
|
|
2341
|
-
}[];
|
|
2342
|
-
threshold: number;
|
|
2343
|
-
accounts: {
|
|
2344
|
-
weight: number;
|
|
2345
|
-
account: {
|
|
2346
|
-
permission: string;
|
|
2347
|
-
actor: string;
|
|
2348
|
-
};
|
|
2349
|
-
}[];
|
|
2350
|
-
waits: {
|
|
2351
|
-
weight: number;
|
|
2352
|
-
wait_sec: number;
|
|
2353
|
-
}[];
|
|
2354
|
-
};
|
|
2355
|
-
creator: string;
|
|
2356
|
-
active: {
|
|
2357
|
-
keys: {
|
|
2358
|
-
type?: number | undefined;
|
|
2359
|
-
address_n?: number[] | undefined;
|
|
2360
|
-
weight: number;
|
|
2361
|
-
key: string;
|
|
2362
|
-
}[];
|
|
2363
|
-
threshold: number;
|
|
2364
|
-
accounts: {
|
|
2365
|
-
weight: number;
|
|
2366
|
-
account: {
|
|
2367
|
-
permission: string;
|
|
2368
|
-
actor: string;
|
|
2369
|
-
};
|
|
2370
|
-
}[];
|
|
2371
|
-
waits: {
|
|
2372
|
-
weight: number;
|
|
2373
|
-
wait_sec: number;
|
|
2374
|
-
}[];
|
|
2375
|
-
};
|
|
2376
|
-
} | undefined;
|
|
2377
|
-
common: {
|
|
2378
|
-
name: string;
|
|
2379
|
-
account: string;
|
|
2380
|
-
authorization: {
|
|
2381
|
-
permission: string;
|
|
2382
|
-
actor: string;
|
|
2383
|
-
}[];
|
|
2384
|
-
};
|
|
2385
|
-
};
|
|
503
|
+
message: import("@trezor/protobuf/lib/messages").EosTxActionAck;
|
|
2386
504
|
} | {
|
|
2387
505
|
type: "EosSignedTx";
|
|
2388
|
-
message:
|
|
2389
|
-
signature: string;
|
|
2390
|
-
};
|
|
2391
|
-
} | {
|
|
2392
|
-
type: "EthereumDefinitions";
|
|
2393
|
-
message: {
|
|
2394
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2395
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
2396
|
-
};
|
|
506
|
+
message: import("@trezor/protobuf/lib/messages").EosSignedTx;
|
|
2397
507
|
} | {
|
|
2398
508
|
type: "EthereumSignTypedData";
|
|
2399
|
-
message:
|
|
2400
|
-
metamask_v4_compat?: boolean | undefined;
|
|
2401
|
-
definitions?: {
|
|
2402
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2403
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
2404
|
-
} | undefined;
|
|
2405
|
-
address_n: number[];
|
|
2406
|
-
primary_type: string;
|
|
2407
|
-
};
|
|
509
|
+
message: import("@trezor/protobuf/lib/messages").EthereumSignTypedData;
|
|
2408
510
|
} | {
|
|
2409
511
|
type: "EthereumTypedDataStructRequest";
|
|
2410
|
-
message:
|
|
2411
|
-
name: string;
|
|
2412
|
-
};
|
|
2413
|
-
} | {
|
|
2414
|
-
type: "EthereumFieldType";
|
|
2415
|
-
message: {
|
|
2416
|
-
size?: number | undefined;
|
|
2417
|
-
entry_type?: any | undefined;
|
|
2418
|
-
struct_name?: string | undefined;
|
|
2419
|
-
data_type: Messages.EthereumDataType;
|
|
2420
|
-
};
|
|
2421
|
-
} | {
|
|
2422
|
-
type: "EthereumStructMember";
|
|
2423
|
-
message: {
|
|
2424
|
-
type: {
|
|
2425
|
-
size?: number | undefined;
|
|
2426
|
-
entry_type?: any | undefined;
|
|
2427
|
-
struct_name?: string | undefined;
|
|
2428
|
-
data_type: Messages.EthereumDataType;
|
|
2429
|
-
};
|
|
2430
|
-
name: string;
|
|
2431
|
-
};
|
|
512
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataStructRequest;
|
|
2432
513
|
} | {
|
|
2433
514
|
type: "EthereumTypedDataStructAck";
|
|
2434
|
-
message:
|
|
2435
|
-
members: {
|
|
2436
|
-
type: {
|
|
2437
|
-
size?: number | undefined;
|
|
2438
|
-
entry_type?: any | undefined;
|
|
2439
|
-
struct_name?: string | undefined;
|
|
2440
|
-
data_type: Messages.EthereumDataType;
|
|
2441
|
-
};
|
|
2442
|
-
name: string;
|
|
2443
|
-
}[];
|
|
2444
|
-
};
|
|
515
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataStructAck;
|
|
2445
516
|
} | {
|
|
2446
517
|
type: "EthereumTypedDataValueRequest";
|
|
2447
|
-
message:
|
|
2448
|
-
member_path: number[];
|
|
2449
|
-
};
|
|
518
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataValueRequest;
|
|
2450
519
|
} | {
|
|
2451
520
|
type: "EthereumTypedDataValueAck";
|
|
2452
|
-
message:
|
|
2453
|
-
value: string;
|
|
2454
|
-
};
|
|
521
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataValueAck;
|
|
2455
522
|
} | {
|
|
2456
523
|
type: "EthereumGetPublicKey";
|
|
2457
|
-
message:
|
|
2458
|
-
show_display?: boolean | undefined;
|
|
2459
|
-
address_n: number[];
|
|
2460
|
-
};
|
|
524
|
+
message: import("@trezor/protobuf/lib/messages").EthereumGetPublicKey;
|
|
2461
525
|
} | {
|
|
2462
526
|
type: "EthereumPublicKey";
|
|
2463
|
-
message:
|
|
2464
|
-
node: {
|
|
2465
|
-
private_key?: string | undefined;
|
|
2466
|
-
depth: number;
|
|
2467
|
-
fingerprint: number;
|
|
2468
|
-
child_num: number;
|
|
2469
|
-
chain_code: string;
|
|
2470
|
-
public_key: string;
|
|
2471
|
-
};
|
|
2472
|
-
xpub: string;
|
|
2473
|
-
};
|
|
527
|
+
message: import("@trezor/protobuf/lib/messages").EthereumPublicKey;
|
|
2474
528
|
} | {
|
|
2475
529
|
type: "EthereumGetAddress";
|
|
2476
|
-
message:
|
|
2477
|
-
chunkify?: boolean | undefined;
|
|
2478
|
-
show_display?: boolean | undefined;
|
|
2479
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2480
|
-
address_n: number[];
|
|
2481
|
-
};
|
|
530
|
+
message: import("@trezor/protobuf/lib/messages").EthereumGetAddress;
|
|
2482
531
|
} | {
|
|
2483
532
|
type: "EthereumAddress";
|
|
2484
|
-
message:
|
|
2485
|
-
_old_address?: string | undefined;
|
|
2486
|
-
address: string;
|
|
2487
|
-
};
|
|
533
|
+
message: import("@trezor/protobuf/lib/messages").EthereumAddress;
|
|
2488
534
|
} | {
|
|
2489
535
|
type: "EthereumSignTx";
|
|
2490
|
-
message:
|
|
2491
|
-
chunkify?: boolean | undefined;
|
|
2492
|
-
nonce?: string | undefined;
|
|
2493
|
-
value?: string | undefined;
|
|
2494
|
-
to?: string | undefined;
|
|
2495
|
-
definitions?: {
|
|
2496
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2497
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
2498
|
-
} | undefined;
|
|
2499
|
-
data_initial_chunk?: string | undefined;
|
|
2500
|
-
data_length?: number | undefined;
|
|
2501
|
-
tx_type?: number | undefined;
|
|
2502
|
-
address_n: number[];
|
|
2503
|
-
gas_limit: string;
|
|
2504
|
-
chain_id: number;
|
|
2505
|
-
gas_price: string;
|
|
2506
|
-
};
|
|
2507
|
-
} | {
|
|
2508
|
-
type: "EthereumAccessList";
|
|
2509
|
-
message: {
|
|
2510
|
-
address: string;
|
|
2511
|
-
storage_keys: string[];
|
|
2512
|
-
};
|
|
536
|
+
message: import("@trezor/protobuf/lib/messages").EthereumSignTx;
|
|
2513
537
|
} | {
|
|
2514
538
|
type: "EthereumSignTxEIP1559";
|
|
2515
|
-
message:
|
|
2516
|
-
chunkify?: boolean | undefined;
|
|
2517
|
-
to?: string | undefined;
|
|
2518
|
-
definitions?: {
|
|
2519
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2520
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
2521
|
-
} | undefined;
|
|
2522
|
-
data_initial_chunk?: string | undefined;
|
|
2523
|
-
address_n: number[];
|
|
2524
|
-
nonce: string;
|
|
2525
|
-
value: string;
|
|
2526
|
-
gas_limit: string;
|
|
2527
|
-
chain_id: number;
|
|
2528
|
-
data_length: number;
|
|
2529
|
-
max_gas_fee: string;
|
|
2530
|
-
max_priority_fee: string;
|
|
2531
|
-
access_list: {
|
|
2532
|
-
address: string;
|
|
2533
|
-
storage_keys: string[];
|
|
2534
|
-
}[];
|
|
2535
|
-
};
|
|
539
|
+
message: import("@trezor/protobuf/lib/messages").EthereumSignTxEIP1559;
|
|
2536
540
|
} | {
|
|
2537
541
|
type: "EthereumTxRequest";
|
|
2538
|
-
message:
|
|
2539
|
-
data_length?: number | undefined;
|
|
2540
|
-
signature_v?: number | undefined;
|
|
2541
|
-
signature_r?: string | undefined;
|
|
2542
|
-
signature_s?: string | undefined;
|
|
2543
|
-
};
|
|
542
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTxRequest;
|
|
2544
543
|
} | {
|
|
2545
544
|
type: "EthereumTxAck";
|
|
2546
|
-
message:
|
|
2547
|
-
data_chunk: string;
|
|
2548
|
-
};
|
|
545
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTxAck;
|
|
2549
546
|
} | {
|
|
2550
547
|
type: "EthereumSignMessage";
|
|
2551
|
-
message:
|
|
2552
|
-
chunkify?: boolean | undefined;
|
|
2553
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2554
|
-
address_n: number[];
|
|
2555
|
-
message: string;
|
|
2556
|
-
};
|
|
548
|
+
message: import("@trezor/protobuf/lib/messages").EthereumSignMessage;
|
|
2557
549
|
} | {
|
|
2558
550
|
type: "EthereumMessageSignature";
|
|
2559
|
-
message:
|
|
2560
|
-
address: string;
|
|
2561
|
-
signature: string;
|
|
2562
|
-
};
|
|
551
|
+
message: import("@trezor/protobuf/lib/messages").EthereumMessageSignature;
|
|
2563
552
|
} | {
|
|
2564
553
|
type: "EthereumVerifyMessage";
|
|
2565
|
-
message:
|
|
2566
|
-
chunkify?: boolean | undefined;
|
|
2567
|
-
address: string;
|
|
2568
|
-
message: string;
|
|
2569
|
-
signature: string;
|
|
2570
|
-
};
|
|
554
|
+
message: import("@trezor/protobuf/lib/messages").EthereumVerifyMessage;
|
|
2571
555
|
} | {
|
|
2572
556
|
type: "EthereumSignTypedHash";
|
|
2573
|
-
message:
|
|
2574
|
-
message_hash?: string | undefined;
|
|
2575
|
-
encoded_network?: ArrayBuffer | undefined;
|
|
2576
|
-
address_n: number[];
|
|
2577
|
-
domain_separator_hash: string;
|
|
2578
|
-
};
|
|
557
|
+
message: import("@trezor/protobuf/lib/messages").EthereumSignTypedHash;
|
|
2579
558
|
} | {
|
|
2580
559
|
type: "EthereumTypedDataSignature";
|
|
2581
|
-
message:
|
|
2582
|
-
address: string;
|
|
2583
|
-
signature: string;
|
|
2584
|
-
};
|
|
560
|
+
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataSignature;
|
|
2585
561
|
} | {
|
|
2586
562
|
type: "Initialize";
|
|
2587
|
-
message:
|
|
2588
|
-
session_id?: string | undefined;
|
|
2589
|
-
_skip_passphrase?: boolean | undefined;
|
|
2590
|
-
derive_cardano?: boolean | undefined;
|
|
2591
|
-
};
|
|
563
|
+
message: import("@trezor/protobuf/lib/messages").Initialize;
|
|
2592
564
|
} | {
|
|
2593
565
|
type: "GetFeatures";
|
|
2594
|
-
message:
|
|
566
|
+
message: import("@trezor/protobuf/lib/messages").GetFeatures;
|
|
2595
567
|
} | {
|
|
2596
568
|
type: "RecoveryDevice";
|
|
2597
|
-
message:
|
|
2598
|
-
pin_protection?: boolean | undefined;
|
|
2599
|
-
passphrase_protection?: boolean | undefined;
|
|
2600
|
-
language?: string | undefined;
|
|
2601
|
-
label?: string | undefined;
|
|
2602
|
-
type?: "NormalRecovery" | "DryRun" | "UnlockRepeatedBackup" | undefined;
|
|
2603
|
-
u2f_counter?: number | undefined;
|
|
2604
|
-
word_count?: number | undefined;
|
|
2605
|
-
enforce_wordlist?: boolean | undefined;
|
|
2606
|
-
input_method?: Messages.RecoveryDeviceInputMethod | undefined;
|
|
2607
|
-
};
|
|
569
|
+
message: import("@trezor/protobuf/lib/messages").RecoveryDevice;
|
|
2608
570
|
} | {
|
|
2609
571
|
type: "LockDevice";
|
|
2610
|
-
message:
|
|
572
|
+
message: import("@trezor/protobuf/lib/messages").LockDevice;
|
|
2611
573
|
} | {
|
|
2612
574
|
type: "SetBusy";
|
|
2613
|
-
message:
|
|
2614
|
-
expiry_ms?: number | undefined;
|
|
2615
|
-
};
|
|
575
|
+
message: import("@trezor/protobuf/lib/messages").SetBusy;
|
|
2616
576
|
} | {
|
|
2617
577
|
type: "EndSession";
|
|
2618
|
-
message:
|
|
578
|
+
message: import("@trezor/protobuf/lib/messages").EndSession;
|
|
2619
579
|
} | {
|
|
2620
580
|
type: "ApplySettings";
|
|
2621
|
-
message:
|
|
2622
|
-
language?: string | undefined;
|
|
2623
|
-
label?: string | undefined;
|
|
2624
|
-
passphrase_always_on_device?: boolean | undefined;
|
|
2625
|
-
safety_checks?: "Strict" | "PromptAlways" | "PromptTemporarily" | undefined;
|
|
2626
|
-
auto_lock_delay_ms?: number | undefined;
|
|
2627
|
-
display_rotation?: Messages.Enum_DisplayRotation | "North" | "East" | "South" | "West" | undefined;
|
|
2628
|
-
experimental_features?: boolean | undefined;
|
|
2629
|
-
hide_passphrase_from_host?: boolean | undefined;
|
|
2630
|
-
haptic_feedback?: boolean | undefined;
|
|
2631
|
-
use_passphrase?: boolean | undefined;
|
|
2632
|
-
homescreen?: string | undefined;
|
|
2633
|
-
_passphrase_source?: number | undefined;
|
|
2634
|
-
};
|
|
581
|
+
message: import("@trezor/protobuf/lib/messages").ApplySettings;
|
|
2635
582
|
} | {
|
|
2636
583
|
type: "ChangeLanguage";
|
|
2637
|
-
message:
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
} | {
|
|
2642
|
-
type: "
|
|
2643
|
-
message:
|
|
2644
|
-
data_length: number;
|
|
2645
|
-
data_offset: number;
|
|
2646
|
-
};
|
|
2647
|
-
} | {
|
|
2648
|
-
type: "TranslationDataAck";
|
|
2649
|
-
message: {
|
|
2650
|
-
data_chunk: string;
|
|
2651
|
-
};
|
|
584
|
+
message: import("@trezor/protobuf/lib/messages").ChangeLanguage;
|
|
585
|
+
} | {
|
|
586
|
+
type: "DataChunkRequest";
|
|
587
|
+
message: import("@trezor/protobuf/lib/messages").DataChunkRequest;
|
|
588
|
+
} | {
|
|
589
|
+
type: "DataChunkAck";
|
|
590
|
+
message: import("@trezor/protobuf/lib/messages").DataChunkAck;
|
|
2652
591
|
} | {
|
|
2653
592
|
type: "ApplyFlags";
|
|
2654
|
-
message:
|
|
2655
|
-
flags: number;
|
|
2656
|
-
};
|
|
593
|
+
message: import("@trezor/protobuf/lib/messages").ApplyFlags;
|
|
2657
594
|
} | {
|
|
2658
595
|
type: "ChangePin";
|
|
2659
|
-
message:
|
|
2660
|
-
remove?: boolean | undefined;
|
|
2661
|
-
};
|
|
596
|
+
message: import("@trezor/protobuf/lib/messages").ChangePin;
|
|
2662
597
|
} | {
|
|
2663
598
|
type: "ChangeWipeCode";
|
|
2664
|
-
message:
|
|
2665
|
-
remove?: boolean | undefined;
|
|
2666
|
-
};
|
|
599
|
+
message: import("@trezor/protobuf/lib/messages").ChangeWipeCode;
|
|
2667
600
|
} | {
|
|
2668
601
|
type: "SdProtect";
|
|
2669
|
-
message:
|
|
2670
|
-
operation: Messages.SdProtectOperationType;
|
|
2671
|
-
};
|
|
602
|
+
message: import("@trezor/protobuf/lib/messages").SdProtect;
|
|
2672
603
|
} | {
|
|
2673
604
|
type: "Ping";
|
|
2674
|
-
message:
|
|
2675
|
-
message?: string | undefined;
|
|
2676
|
-
button_protection?: boolean | undefined;
|
|
2677
|
-
};
|
|
605
|
+
message: import("@trezor/protobuf/lib/messages").Ping;
|
|
2678
606
|
} | {
|
|
2679
607
|
type: "Cancel";
|
|
2680
|
-
message:
|
|
608
|
+
message: import("@trezor/protobuf/lib/messages").Cancel;
|
|
2681
609
|
} | {
|
|
2682
610
|
type: "GetEntropy";
|
|
2683
|
-
message:
|
|
2684
|
-
size: number;
|
|
2685
|
-
};
|
|
611
|
+
message: import("@trezor/protobuf/lib/messages").GetEntropy;
|
|
2686
612
|
} | {
|
|
2687
613
|
type: "Entropy";
|
|
2688
|
-
message:
|
|
2689
|
-
entropy: string;
|
|
2690
|
-
};
|
|
614
|
+
message: import("@trezor/protobuf/lib/messages").Entropy;
|
|
2691
615
|
} | {
|
|
2692
616
|
type: "GetFirmwareHash";
|
|
2693
|
-
message:
|
|
2694
|
-
challenge?: string | undefined;
|
|
2695
|
-
};
|
|
617
|
+
message: import("@trezor/protobuf/lib/messages").GetFirmwareHash;
|
|
2696
618
|
} | {
|
|
2697
619
|
type: "FirmwareHash";
|
|
2698
|
-
message:
|
|
2699
|
-
hash: string;
|
|
2700
|
-
};
|
|
620
|
+
message: import("@trezor/protobuf/lib/messages").FirmwareHash;
|
|
2701
621
|
} | {
|
|
2702
622
|
type: "AuthenticateDevice";
|
|
2703
|
-
message:
|
|
2704
|
-
challenge: string;
|
|
2705
|
-
};
|
|
623
|
+
message: import("@trezor/protobuf/lib/messages").AuthenticateDevice;
|
|
2706
624
|
} | {
|
|
2707
625
|
type: "AuthenticityProof";
|
|
2708
|
-
message:
|
|
2709
|
-
certificates: string[];
|
|
2710
|
-
signature: string;
|
|
2711
|
-
};
|
|
626
|
+
message: import("@trezor/protobuf/lib/messages").AuthenticityProof;
|
|
2712
627
|
} | {
|
|
2713
628
|
type: "WipeDevice";
|
|
2714
|
-
message:
|
|
629
|
+
message: import("@trezor/protobuf/lib/messages").WipeDevice;
|
|
2715
630
|
} | {
|
|
2716
631
|
type: "LoadDevice";
|
|
2717
|
-
message:
|
|
2718
|
-
passphrase_protection?: boolean | undefined;
|
|
2719
|
-
language?: string | undefined;
|
|
2720
|
-
label?: string | undefined;
|
|
2721
|
-
no_backup?: boolean | undefined;
|
|
2722
|
-
pin?: string | undefined;
|
|
2723
|
-
skip_checksum?: boolean | undefined;
|
|
2724
|
-
u2f_counter?: number | undefined;
|
|
2725
|
-
needs_backup?: boolean | undefined;
|
|
2726
|
-
mnemonics: string[];
|
|
2727
|
-
};
|
|
632
|
+
message: import("@trezor/protobuf/lib/messages").LoadDevice;
|
|
2728
633
|
} | {
|
|
2729
634
|
type: "ResetDevice";
|
|
2730
|
-
message:
|
|
2731
|
-
pin_protection?: boolean | undefined;
|
|
2732
|
-
passphrase_protection?: boolean | undefined;
|
|
2733
|
-
language?: string | undefined;
|
|
2734
|
-
label?: string | undefined;
|
|
2735
|
-
no_backup?: boolean | undefined;
|
|
2736
|
-
backup_type?: Messages.Enum_BackupType | undefined;
|
|
2737
|
-
u2f_counter?: number | undefined;
|
|
2738
|
-
strength?: number | undefined;
|
|
2739
|
-
skip_backup?: boolean | undefined;
|
|
2740
|
-
entropy_check?: boolean | undefined;
|
|
2741
|
-
};
|
|
2742
|
-
} | {
|
|
2743
|
-
type: "Slip39Group";
|
|
2744
|
-
message: {
|
|
2745
|
-
member_threshold: number;
|
|
2746
|
-
member_count: number;
|
|
2747
|
-
};
|
|
635
|
+
message: import("@trezor/protobuf/lib/messages").ResetDevice;
|
|
2748
636
|
} | {
|
|
2749
637
|
type: "BackupDevice";
|
|
2750
|
-
message:
|
|
2751
|
-
group_threshold?: number | undefined;
|
|
2752
|
-
groups?: {
|
|
2753
|
-
member_threshold: number;
|
|
2754
|
-
member_count: number;
|
|
2755
|
-
}[] | undefined;
|
|
2756
|
-
};
|
|
638
|
+
message: import("@trezor/protobuf/lib/messages").BackupDevice;
|
|
2757
639
|
} | {
|
|
2758
640
|
type: "EntropyRequest";
|
|
2759
|
-
message:
|
|
2760
|
-
entropy_commitment?: string | undefined;
|
|
2761
|
-
prev_entropy?: string | undefined;
|
|
2762
|
-
};
|
|
641
|
+
message: import("@trezor/protobuf/lib/messages").EntropyRequest;
|
|
2763
642
|
} | {
|
|
2764
643
|
type: "EntropyAck";
|
|
2765
|
-
message:
|
|
2766
|
-
entropy: string;
|
|
2767
|
-
};
|
|
644
|
+
message: import("@trezor/protobuf/lib/messages").EntropyAck;
|
|
2768
645
|
} | {
|
|
2769
646
|
type: "EntropyCheckReady";
|
|
2770
|
-
message:
|
|
647
|
+
message: import("@trezor/protobuf/lib/messages").EntropyCheckReady;
|
|
2771
648
|
} | {
|
|
2772
649
|
type: "EntropyCheckContinue";
|
|
2773
|
-
message:
|
|
2774
|
-
finish?: boolean | undefined;
|
|
2775
|
-
};
|
|
2776
|
-
} | {
|
|
2777
|
-
type: "WordRequest";
|
|
2778
|
-
message: {
|
|
2779
|
-
type: "WordRequestType_Plain" | "WordRequestType_Matrix9" | "WordRequestType_Matrix6";
|
|
2780
|
-
};
|
|
650
|
+
message: import("@trezor/protobuf/lib/messages").EntropyCheckContinue;
|
|
2781
651
|
} | {
|
|
2782
652
|
type: "WordAck";
|
|
2783
|
-
message:
|
|
2784
|
-
word: string;
|
|
2785
|
-
};
|
|
653
|
+
message: import("@trezor/protobuf/lib/messages").WordAck;
|
|
2786
654
|
} | {
|
|
2787
655
|
type: "SetU2FCounter";
|
|
2788
|
-
message:
|
|
2789
|
-
u2f_counter: number;
|
|
2790
|
-
};
|
|
656
|
+
message: import("@trezor/protobuf/lib/messages").SetU2FCounter;
|
|
2791
657
|
} | {
|
|
2792
658
|
type: "GetNextU2FCounter";
|
|
2793
|
-
message:
|
|
659
|
+
message: import("@trezor/protobuf/lib/messages").GetNextU2FCounter;
|
|
2794
660
|
} | {
|
|
2795
661
|
type: "NextU2FCounter";
|
|
2796
|
-
message:
|
|
2797
|
-
u2f_counter: number;
|
|
2798
|
-
};
|
|
662
|
+
message: import("@trezor/protobuf/lib/messages").NextU2FCounter;
|
|
2799
663
|
} | {
|
|
2800
664
|
type: "DoPreauthorized";
|
|
2801
|
-
message:
|
|
665
|
+
message: import("@trezor/protobuf/lib/messages").DoPreauthorized;
|
|
2802
666
|
} | {
|
|
2803
667
|
type: "PreauthorizedRequest";
|
|
2804
|
-
message:
|
|
668
|
+
message: import("@trezor/protobuf/lib/messages").PreauthorizedRequest;
|
|
2805
669
|
} | {
|
|
2806
670
|
type: "CancelAuthorization";
|
|
2807
|
-
message:
|
|
671
|
+
message: import("@trezor/protobuf/lib/messages").CancelAuthorization;
|
|
2808
672
|
} | {
|
|
2809
673
|
type: "RebootToBootloader";
|
|
2810
|
-
message:
|
|
2811
|
-
boot_command?: Messages.BootCommand | undefined;
|
|
2812
|
-
firmware_header?: string | undefined;
|
|
2813
|
-
language_data_length?: number | undefined;
|
|
2814
|
-
};
|
|
674
|
+
message: import("@trezor/protobuf/lib/messages").RebootToBootloader;
|
|
2815
675
|
} | {
|
|
2816
676
|
type: "GetNonce";
|
|
2817
|
-
message:
|
|
677
|
+
message: import("@trezor/protobuf/lib/messages").GetNonce;
|
|
2818
678
|
} | {
|
|
2819
679
|
type: "Nonce";
|
|
2820
|
-
message:
|
|
2821
|
-
nonce: string;
|
|
2822
|
-
};
|
|
680
|
+
message: import("@trezor/protobuf/lib/messages").Nonce;
|
|
2823
681
|
} | {
|
|
2824
682
|
type: "UnlockPath";
|
|
2825
|
-
message:
|
|
2826
|
-
mac?: string | undefined;
|
|
2827
|
-
address_n: number[];
|
|
2828
|
-
};
|
|
683
|
+
message: import("@trezor/protobuf/lib/messages").UnlockPath;
|
|
2829
684
|
} | {
|
|
2830
685
|
type: "UnlockedPathRequest";
|
|
2831
|
-
message:
|
|
2832
|
-
mac: string;
|
|
2833
|
-
};
|
|
686
|
+
message: import("@trezor/protobuf/lib/messages").UnlockedPathRequest;
|
|
2834
687
|
} | {
|
|
2835
688
|
type: "ShowDeviceTutorial";
|
|
2836
|
-
message:
|
|
689
|
+
message: import("@trezor/protobuf/lib/messages").ShowDeviceTutorial;
|
|
2837
690
|
} | {
|
|
2838
691
|
type: "UnlockBootloader";
|
|
2839
|
-
message:
|
|
692
|
+
message: import("@trezor/protobuf/lib/messages").UnlockBootloader;
|
|
2840
693
|
} | {
|
|
2841
694
|
type: "SetBrightness";
|
|
2842
|
-
message:
|
|
2843
|
-
value?: number | undefined;
|
|
2844
|
-
};
|
|
695
|
+
message: import("@trezor/protobuf/lib/messages").SetBrightness;
|
|
2845
696
|
} | {
|
|
2846
697
|
type: "NEMGetAddress";
|
|
2847
|
-
message:
|
|
2848
|
-
chunkify?: boolean | undefined;
|
|
2849
|
-
network?: number | undefined;
|
|
2850
|
-
show_display?: boolean | undefined;
|
|
2851
|
-
address_n: number[];
|
|
2852
|
-
};
|
|
698
|
+
message: import("@trezor/protobuf/lib/messages").NEMGetAddress;
|
|
2853
699
|
} | {
|
|
2854
700
|
type: "NEMAddress";
|
|
2855
|
-
message:
|
|
2856
|
-
address: string;
|
|
2857
|
-
};
|
|
2858
|
-
} | {
|
|
2859
|
-
type: "NEMTransactionCommon";
|
|
2860
|
-
message: {
|
|
2861
|
-
address_n?: number[] | undefined;
|
|
2862
|
-
network?: number | undefined;
|
|
2863
|
-
signer?: string | undefined;
|
|
2864
|
-
timestamp: number;
|
|
2865
|
-
fee: string | number;
|
|
2866
|
-
deadline: number;
|
|
2867
|
-
};
|
|
2868
|
-
} | {
|
|
2869
|
-
type: "NEMMosaic";
|
|
2870
|
-
message: {
|
|
2871
|
-
quantity: number;
|
|
2872
|
-
namespace: string;
|
|
2873
|
-
mosaic: string;
|
|
2874
|
-
};
|
|
2875
|
-
} | {
|
|
2876
|
-
type: "NEMTransfer";
|
|
2877
|
-
message: {
|
|
2878
|
-
payload?: string | undefined;
|
|
2879
|
-
public_key?: string | undefined;
|
|
2880
|
-
mosaics?: {
|
|
2881
|
-
quantity: number;
|
|
2882
|
-
namespace: string;
|
|
2883
|
-
mosaic: string;
|
|
2884
|
-
}[] | undefined;
|
|
2885
|
-
amount: string | number;
|
|
2886
|
-
recipient: string;
|
|
2887
|
-
};
|
|
2888
|
-
} | {
|
|
2889
|
-
type: "NEMProvisionNamespace";
|
|
2890
|
-
message: {
|
|
2891
|
-
parent?: string | undefined;
|
|
2892
|
-
fee: string | number;
|
|
2893
|
-
namespace: string;
|
|
2894
|
-
sink: string;
|
|
2895
|
-
};
|
|
2896
|
-
} | {
|
|
2897
|
-
type: "NEMMosaicDefinition";
|
|
2898
|
-
message: {
|
|
2899
|
-
name?: string | undefined;
|
|
2900
|
-
fee?: string | number | undefined;
|
|
2901
|
-
levy?: Messages.NEMMosaicLevy | undefined;
|
|
2902
|
-
divisibility?: number | undefined;
|
|
2903
|
-
transferable?: boolean | undefined;
|
|
2904
|
-
ticker?: string | undefined;
|
|
2905
|
-
levy_address?: string | undefined;
|
|
2906
|
-
levy_namespace?: string | undefined;
|
|
2907
|
-
levy_mosaic?: string | undefined;
|
|
2908
|
-
supply?: number | undefined;
|
|
2909
|
-
mutable_supply?: boolean | undefined;
|
|
2910
|
-
networks?: number[] | undefined;
|
|
2911
|
-
description: string;
|
|
2912
|
-
namespace: string;
|
|
2913
|
-
mosaic: string;
|
|
2914
|
-
};
|
|
2915
|
-
} | {
|
|
2916
|
-
type: "NEMMosaicCreation";
|
|
2917
|
-
message: {
|
|
2918
|
-
fee: string | number;
|
|
2919
|
-
sink: string;
|
|
2920
|
-
definition: {
|
|
2921
|
-
name?: string | undefined;
|
|
2922
|
-
fee?: string | number | undefined;
|
|
2923
|
-
levy?: Messages.NEMMosaicLevy | undefined;
|
|
2924
|
-
divisibility?: number | undefined;
|
|
2925
|
-
transferable?: boolean | undefined;
|
|
2926
|
-
ticker?: string | undefined;
|
|
2927
|
-
levy_address?: string | undefined;
|
|
2928
|
-
levy_namespace?: string | undefined;
|
|
2929
|
-
levy_mosaic?: string | undefined;
|
|
2930
|
-
supply?: number | undefined;
|
|
2931
|
-
mutable_supply?: boolean | undefined;
|
|
2932
|
-
networks?: number[] | undefined;
|
|
2933
|
-
description: string;
|
|
2934
|
-
namespace: string;
|
|
2935
|
-
mosaic: string;
|
|
2936
|
-
};
|
|
2937
|
-
};
|
|
2938
|
-
} | {
|
|
2939
|
-
type: "NEMMosaicSupplyChange";
|
|
2940
|
-
message: {
|
|
2941
|
-
type: Messages.NEMSupplyChangeType;
|
|
2942
|
-
delta: number;
|
|
2943
|
-
namespace: string;
|
|
2944
|
-
mosaic: string;
|
|
2945
|
-
};
|
|
2946
|
-
} | {
|
|
2947
|
-
type: "NEMCosignatoryModification";
|
|
2948
|
-
message: {
|
|
2949
|
-
type: Messages.NEMModificationType;
|
|
2950
|
-
public_key: string;
|
|
2951
|
-
};
|
|
2952
|
-
} | {
|
|
2953
|
-
type: "NEMAggregateModification";
|
|
2954
|
-
message: {
|
|
2955
|
-
modifications?: {
|
|
2956
|
-
type: Messages.NEMModificationType;
|
|
2957
|
-
public_key: string;
|
|
2958
|
-
}[] | undefined;
|
|
2959
|
-
relative_change?: number | undefined;
|
|
2960
|
-
};
|
|
2961
|
-
} | {
|
|
2962
|
-
type: "NEMImportanceTransfer";
|
|
2963
|
-
message: {
|
|
2964
|
-
public_key: string;
|
|
2965
|
-
mode: Messages.NEMImportanceTransferMode;
|
|
2966
|
-
};
|
|
701
|
+
message: import("@trezor/protobuf/lib/messages").NEMAddress;
|
|
2967
702
|
} | {
|
|
2968
703
|
type: "NEMSignTx";
|
|
2969
|
-
message:
|
|
2970
|
-
chunkify?: boolean | undefined;
|
|
2971
|
-
multisig?: {
|
|
2972
|
-
address_n?: number[] | undefined;
|
|
2973
|
-
network?: number | undefined;
|
|
2974
|
-
signer?: string | undefined;
|
|
2975
|
-
timestamp: number;
|
|
2976
|
-
fee: string | number;
|
|
2977
|
-
deadline: number;
|
|
2978
|
-
} | undefined;
|
|
2979
|
-
transfer?: {
|
|
2980
|
-
payload?: string | undefined;
|
|
2981
|
-
public_key?: string | undefined;
|
|
2982
|
-
mosaics?: {
|
|
2983
|
-
quantity: number;
|
|
2984
|
-
namespace: string;
|
|
2985
|
-
mosaic: string;
|
|
2986
|
-
}[] | undefined;
|
|
2987
|
-
amount: string | number;
|
|
2988
|
-
recipient: string;
|
|
2989
|
-
} | undefined;
|
|
2990
|
-
cosigning?: boolean | undefined;
|
|
2991
|
-
provision_namespace?: {
|
|
2992
|
-
parent?: string | undefined;
|
|
2993
|
-
fee: string | number;
|
|
2994
|
-
namespace: string;
|
|
2995
|
-
sink: string;
|
|
2996
|
-
} | undefined;
|
|
2997
|
-
mosaic_creation?: {
|
|
2998
|
-
fee: string | number;
|
|
2999
|
-
sink: string;
|
|
3000
|
-
definition: {
|
|
3001
|
-
name?: string | undefined;
|
|
3002
|
-
fee?: string | number | undefined;
|
|
3003
|
-
levy?: Messages.NEMMosaicLevy | undefined;
|
|
3004
|
-
divisibility?: number | undefined;
|
|
3005
|
-
transferable?: boolean | undefined;
|
|
3006
|
-
ticker?: string | undefined;
|
|
3007
|
-
levy_address?: string | undefined;
|
|
3008
|
-
levy_namespace?: string | undefined;
|
|
3009
|
-
levy_mosaic?: string | undefined;
|
|
3010
|
-
supply?: number | undefined;
|
|
3011
|
-
mutable_supply?: boolean | undefined;
|
|
3012
|
-
networks?: number[] | undefined;
|
|
3013
|
-
description: string;
|
|
3014
|
-
namespace: string;
|
|
3015
|
-
mosaic: string;
|
|
3016
|
-
};
|
|
3017
|
-
} | undefined;
|
|
3018
|
-
supply_change?: {
|
|
3019
|
-
type: Messages.NEMSupplyChangeType;
|
|
3020
|
-
delta: number;
|
|
3021
|
-
namespace: string;
|
|
3022
|
-
mosaic: string;
|
|
3023
|
-
} | undefined;
|
|
3024
|
-
aggregate_modification?: {
|
|
3025
|
-
modifications?: {
|
|
3026
|
-
type: Messages.NEMModificationType;
|
|
3027
|
-
public_key: string;
|
|
3028
|
-
}[] | undefined;
|
|
3029
|
-
relative_change?: number | undefined;
|
|
3030
|
-
} | undefined;
|
|
3031
|
-
importance_transfer?: {
|
|
3032
|
-
public_key: string;
|
|
3033
|
-
mode: Messages.NEMImportanceTransferMode;
|
|
3034
|
-
} | undefined;
|
|
3035
|
-
transaction: {
|
|
3036
|
-
address_n?: number[] | undefined;
|
|
3037
|
-
network?: number | undefined;
|
|
3038
|
-
signer?: string | undefined;
|
|
3039
|
-
timestamp: number;
|
|
3040
|
-
fee: string | number;
|
|
3041
|
-
deadline: number;
|
|
3042
|
-
};
|
|
3043
|
-
};
|
|
704
|
+
message: import("@trezor/protobuf/lib/messages").NEMSignTx;
|
|
3044
705
|
} | {
|
|
3045
706
|
type: "NEMSignedTx";
|
|
3046
|
-
message:
|
|
3047
|
-
signature: string;
|
|
3048
|
-
data: string;
|
|
3049
|
-
};
|
|
707
|
+
message: import("@trezor/protobuf/lib/messages").NEMSignedTx;
|
|
3050
708
|
} | {
|
|
3051
709
|
type: "NEMDecryptMessage";
|
|
3052
|
-
message:
|
|
3053
|
-
payload?: string | undefined;
|
|
3054
|
-
network?: number | undefined;
|
|
3055
|
-
public_key?: string | undefined;
|
|
3056
|
-
address_n: number[];
|
|
3057
|
-
};
|
|
710
|
+
message: import("@trezor/protobuf/lib/messages").NEMDecryptMessage;
|
|
3058
711
|
} | {
|
|
3059
712
|
type: "NEMDecryptedMessage";
|
|
3060
|
-
message:
|
|
3061
|
-
payload: string;
|
|
3062
|
-
};
|
|
713
|
+
message: import("@trezor/protobuf/lib/messages").NEMDecryptedMessage;
|
|
3063
714
|
} | {
|
|
3064
715
|
type: "RippleGetAddress";
|
|
3065
|
-
message:
|
|
3066
|
-
chunkify?: boolean | undefined;
|
|
3067
|
-
show_display?: boolean | undefined;
|
|
3068
|
-
address_n: number[];
|
|
3069
|
-
};
|
|
716
|
+
message: import("@trezor/protobuf/lib/messages").RippleGetAddress;
|
|
3070
717
|
} | {
|
|
3071
718
|
type: "RippleAddress";
|
|
3072
|
-
message:
|
|
3073
|
-
address: string;
|
|
3074
|
-
};
|
|
3075
|
-
} | {
|
|
3076
|
-
type: "RipplePayment";
|
|
3077
|
-
message: {
|
|
3078
|
-
destination_tag?: number | undefined;
|
|
3079
|
-
amount: string | number;
|
|
3080
|
-
destination: string;
|
|
3081
|
-
};
|
|
719
|
+
message: import("@trezor/protobuf/lib/messages").RippleAddress;
|
|
3082
720
|
} | {
|
|
3083
721
|
type: "RippleSignTx";
|
|
3084
|
-
message:
|
|
3085
|
-
flags?: number | undefined;
|
|
3086
|
-
chunkify?: boolean | undefined;
|
|
3087
|
-
last_ledger_sequence?: number | undefined;
|
|
3088
|
-
address_n: number[];
|
|
3089
|
-
fee: string | number;
|
|
3090
|
-
payment: {
|
|
3091
|
-
destination_tag?: number | undefined;
|
|
3092
|
-
amount: string | number;
|
|
3093
|
-
destination: string;
|
|
3094
|
-
};
|
|
3095
|
-
sequence: number;
|
|
3096
|
-
};
|
|
722
|
+
message: import("@trezor/protobuf/lib/messages").RippleSignTx;
|
|
3097
723
|
} | {
|
|
3098
724
|
type: "RippleSignedTx";
|
|
3099
|
-
message:
|
|
3100
|
-
signature: string;
|
|
3101
|
-
serialized_tx: string;
|
|
3102
|
-
};
|
|
725
|
+
message: import("@trezor/protobuf/lib/messages").RippleSignedTx;
|
|
3103
726
|
} | {
|
|
3104
727
|
type: "SolanaGetPublicKey";
|
|
3105
|
-
message:
|
|
3106
|
-
show_display?: boolean | undefined;
|
|
3107
|
-
address_n: number[];
|
|
3108
|
-
};
|
|
728
|
+
message: import("@trezor/protobuf/lib/messages").SolanaGetPublicKey;
|
|
3109
729
|
} | {
|
|
3110
730
|
type: "SolanaPublicKey";
|
|
3111
|
-
message:
|
|
3112
|
-
public_key: string;
|
|
3113
|
-
};
|
|
731
|
+
message: import("@trezor/protobuf/lib/messages").SolanaPublicKey;
|
|
3114
732
|
} | {
|
|
3115
733
|
type: "SolanaGetAddress";
|
|
3116
|
-
message:
|
|
3117
|
-
chunkify?: boolean | undefined;
|
|
3118
|
-
show_display?: boolean | undefined;
|
|
3119
|
-
address_n: number[];
|
|
3120
|
-
};
|
|
734
|
+
message: import("@trezor/protobuf/lib/messages").SolanaGetAddress;
|
|
3121
735
|
} | {
|
|
3122
736
|
type: "SolanaAddress";
|
|
3123
|
-
message:
|
|
3124
|
-
address: string;
|
|
3125
|
-
};
|
|
3126
|
-
} | {
|
|
3127
|
-
type: "SolanaTxTokenAccountInfo";
|
|
3128
|
-
message: {
|
|
3129
|
-
base_address: string;
|
|
3130
|
-
token_program: string;
|
|
3131
|
-
token_mint: string;
|
|
3132
|
-
token_account: string;
|
|
3133
|
-
};
|
|
3134
|
-
} | {
|
|
3135
|
-
type: "SolanaTxAdditionalInfo";
|
|
3136
|
-
message: {
|
|
3137
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
3138
|
-
token_accounts_infos: {
|
|
3139
|
-
base_address: string;
|
|
3140
|
-
token_program: string;
|
|
3141
|
-
token_mint: string;
|
|
3142
|
-
token_account: string;
|
|
3143
|
-
}[];
|
|
3144
|
-
};
|
|
737
|
+
message: import("@trezor/protobuf/lib/messages").SolanaAddress;
|
|
3145
738
|
} | {
|
|
3146
739
|
type: "SolanaSignTx";
|
|
3147
|
-
message:
|
|
3148
|
-
additional_info?: {
|
|
3149
|
-
encoded_token?: ArrayBuffer | undefined;
|
|
3150
|
-
token_accounts_infos: {
|
|
3151
|
-
base_address: string;
|
|
3152
|
-
token_program: string;
|
|
3153
|
-
token_mint: string;
|
|
3154
|
-
token_account: string;
|
|
3155
|
-
}[];
|
|
3156
|
-
} | undefined;
|
|
3157
|
-
address_n: number[];
|
|
3158
|
-
serialized_tx: string;
|
|
3159
|
-
};
|
|
740
|
+
message: import("@trezor/protobuf/lib/messages").SolanaSignTx;
|
|
3160
741
|
} | {
|
|
3161
742
|
type: "SolanaTxSignature";
|
|
3162
|
-
message:
|
|
3163
|
-
signature: string;
|
|
3164
|
-
};
|
|
3165
|
-
} | {
|
|
3166
|
-
type: "StellarAsset";
|
|
3167
|
-
message: {
|
|
3168
|
-
code?: string | undefined;
|
|
3169
|
-
issuer?: string | undefined;
|
|
3170
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3171
|
-
};
|
|
743
|
+
message: import("@trezor/protobuf/lib/messages").SolanaTxSignature;
|
|
3172
744
|
} | {
|
|
3173
745
|
type: "StellarGetAddress";
|
|
3174
|
-
message:
|
|
3175
|
-
chunkify?: boolean | undefined;
|
|
3176
|
-
show_display?: boolean | undefined;
|
|
3177
|
-
address_n: number[];
|
|
3178
|
-
};
|
|
746
|
+
message: import("@trezor/protobuf/lib/messages").StellarGetAddress;
|
|
3179
747
|
} | {
|
|
3180
748
|
type: "StellarAddress";
|
|
3181
|
-
message:
|
|
3182
|
-
address: string;
|
|
3183
|
-
};
|
|
749
|
+
message: import("@trezor/protobuf/lib/messages").StellarAddress;
|
|
3184
750
|
} | {
|
|
3185
751
|
type: "StellarSignTx";
|
|
3186
|
-
message:
|
|
3187
|
-
memo_text?: string | undefined;
|
|
3188
|
-
memo_id?: string | number | undefined;
|
|
3189
|
-
memo_hash?: string | Buffer<ArrayBufferLike> | undefined;
|
|
3190
|
-
address_n: number[];
|
|
3191
|
-
fee: string | number;
|
|
3192
|
-
network_passphrase: string;
|
|
3193
|
-
source_account: string;
|
|
3194
|
-
sequence_number: string | number;
|
|
3195
|
-
timebounds_start: number;
|
|
3196
|
-
timebounds_end: number;
|
|
3197
|
-
memo_type: Messages.StellarMemoType;
|
|
3198
|
-
num_operations: number;
|
|
3199
|
-
};
|
|
752
|
+
message: import("@trezor/protobuf/lib/messages").StellarSignTx;
|
|
3200
753
|
} | {
|
|
3201
754
|
type: "StellarTxOpRequest";
|
|
3202
|
-
message:
|
|
755
|
+
message: import("@trezor/protobuf/lib/messages").StellarTxOpRequest;
|
|
3203
756
|
} | {
|
|
3204
757
|
type: "StellarPaymentOp";
|
|
3205
|
-
message:
|
|
3206
|
-
source_account?: string | undefined;
|
|
3207
|
-
amount: string | number;
|
|
3208
|
-
asset: {
|
|
3209
|
-
code?: string | undefined;
|
|
3210
|
-
issuer?: string | undefined;
|
|
3211
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3212
|
-
};
|
|
3213
|
-
destination_account: string;
|
|
3214
|
-
};
|
|
758
|
+
message: import("@trezor/protobuf/lib/messages").StellarPaymentOp;
|
|
3215
759
|
} | {
|
|
3216
760
|
type: "StellarCreateAccountOp";
|
|
3217
|
-
message:
|
|
3218
|
-
source_account?: string | undefined;
|
|
3219
|
-
new_account: string;
|
|
3220
|
-
starting_balance: string | number;
|
|
3221
|
-
};
|
|
761
|
+
message: import("@trezor/protobuf/lib/messages").StellarCreateAccountOp;
|
|
3222
762
|
} | {
|
|
3223
763
|
type: "StellarPathPaymentStrictReceiveOp";
|
|
3224
|
-
message:
|
|
3225
|
-
source_account?: string | undefined;
|
|
3226
|
-
paths?: {
|
|
3227
|
-
code?: string | undefined;
|
|
3228
|
-
issuer?: string | undefined;
|
|
3229
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3230
|
-
}[] | undefined;
|
|
3231
|
-
destination_account: string;
|
|
3232
|
-
send_asset: {
|
|
3233
|
-
code?: string | undefined;
|
|
3234
|
-
issuer?: string | undefined;
|
|
3235
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3236
|
-
};
|
|
3237
|
-
send_max: string | number;
|
|
3238
|
-
destination_asset: {
|
|
3239
|
-
code?: string | undefined;
|
|
3240
|
-
issuer?: string | undefined;
|
|
3241
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3242
|
-
};
|
|
3243
|
-
destination_amount: string | number;
|
|
3244
|
-
};
|
|
764
|
+
message: import("@trezor/protobuf/lib/messages").StellarPathPaymentStrictReceiveOp;
|
|
3245
765
|
} | {
|
|
3246
766
|
type: "StellarPathPaymentStrictSendOp";
|
|
3247
|
-
message:
|
|
3248
|
-
source_account?: string | undefined;
|
|
3249
|
-
paths?: {
|
|
3250
|
-
code?: string | undefined;
|
|
3251
|
-
issuer?: string | undefined;
|
|
3252
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3253
|
-
}[] | undefined;
|
|
3254
|
-
destination_account: string;
|
|
3255
|
-
send_asset: {
|
|
3256
|
-
code?: string | undefined;
|
|
3257
|
-
issuer?: string | undefined;
|
|
3258
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3259
|
-
};
|
|
3260
|
-
destination_asset: {
|
|
3261
|
-
code?: string | undefined;
|
|
3262
|
-
issuer?: string | undefined;
|
|
3263
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3264
|
-
};
|
|
3265
|
-
send_amount: string | number;
|
|
3266
|
-
destination_min: string | number;
|
|
3267
|
-
};
|
|
767
|
+
message: import("@trezor/protobuf/lib/messages").StellarPathPaymentStrictSendOp;
|
|
3268
768
|
} | {
|
|
3269
769
|
type: "StellarManageSellOfferOp";
|
|
3270
|
-
message:
|
|
3271
|
-
source_account?: string | undefined;
|
|
3272
|
-
amount: string | number;
|
|
3273
|
-
selling_asset: {
|
|
3274
|
-
code?: string | undefined;
|
|
3275
|
-
issuer?: string | undefined;
|
|
3276
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3277
|
-
};
|
|
3278
|
-
buying_asset: {
|
|
3279
|
-
code?: string | undefined;
|
|
3280
|
-
issuer?: string | undefined;
|
|
3281
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3282
|
-
};
|
|
3283
|
-
price_n: number;
|
|
3284
|
-
price_d: number;
|
|
3285
|
-
offer_id: string | number;
|
|
3286
|
-
};
|
|
770
|
+
message: import("@trezor/protobuf/lib/messages").StellarManageSellOfferOp;
|
|
3287
771
|
} | {
|
|
3288
772
|
type: "StellarManageBuyOfferOp";
|
|
3289
|
-
message:
|
|
3290
|
-
source_account?: string | undefined;
|
|
3291
|
-
amount: string | number;
|
|
3292
|
-
selling_asset: {
|
|
3293
|
-
code?: string | undefined;
|
|
3294
|
-
issuer?: string | undefined;
|
|
3295
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3296
|
-
};
|
|
3297
|
-
buying_asset: {
|
|
3298
|
-
code?: string | undefined;
|
|
3299
|
-
issuer?: string | undefined;
|
|
3300
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3301
|
-
};
|
|
3302
|
-
price_n: number;
|
|
3303
|
-
price_d: number;
|
|
3304
|
-
offer_id: string | number;
|
|
3305
|
-
};
|
|
773
|
+
message: import("@trezor/protobuf/lib/messages").StellarManageBuyOfferOp;
|
|
3306
774
|
} | {
|
|
3307
775
|
type: "StellarCreatePassiveSellOfferOp";
|
|
3308
|
-
message:
|
|
3309
|
-
source_account?: string | undefined;
|
|
3310
|
-
amount: string | number;
|
|
3311
|
-
selling_asset: {
|
|
3312
|
-
code?: string | undefined;
|
|
3313
|
-
issuer?: string | undefined;
|
|
3314
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3315
|
-
};
|
|
3316
|
-
buying_asset: {
|
|
3317
|
-
code?: string | undefined;
|
|
3318
|
-
issuer?: string | undefined;
|
|
3319
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3320
|
-
};
|
|
3321
|
-
price_n: number;
|
|
3322
|
-
price_d: number;
|
|
3323
|
-
};
|
|
776
|
+
message: import("@trezor/protobuf/lib/messages").StellarCreatePassiveSellOfferOp;
|
|
3324
777
|
} | {
|
|
3325
778
|
type: "StellarSetOptionsOp";
|
|
3326
|
-
message:
|
|
3327
|
-
source_account?: string | undefined;
|
|
3328
|
-
inflation_destination_account?: string | undefined;
|
|
3329
|
-
clear_flags?: number | undefined;
|
|
3330
|
-
set_flags?: number | undefined;
|
|
3331
|
-
master_weight?: string | number | undefined;
|
|
3332
|
-
low_threshold?: string | number | undefined;
|
|
3333
|
-
medium_threshold?: string | number | undefined;
|
|
3334
|
-
high_threshold?: string | number | undefined;
|
|
3335
|
-
home_domain?: string | undefined;
|
|
3336
|
-
signer_type?: Messages.StellarSignerType | undefined;
|
|
3337
|
-
signer_key?: string | Buffer<ArrayBufferLike> | undefined;
|
|
3338
|
-
signer_weight?: number | undefined;
|
|
3339
|
-
};
|
|
779
|
+
message: import("@trezor/protobuf/lib/messages").StellarSetOptionsOp;
|
|
3340
780
|
} | {
|
|
3341
781
|
type: "StellarChangeTrustOp";
|
|
3342
|
-
message:
|
|
3343
|
-
source_account?: string | undefined;
|
|
3344
|
-
asset: {
|
|
3345
|
-
code?: string | undefined;
|
|
3346
|
-
issuer?: string | undefined;
|
|
3347
|
-
type: 0 | 1 | 2 | "NATIVE" | "ALPHANUM4" | "ALPHANUM12";
|
|
3348
|
-
};
|
|
3349
|
-
limit: string | number;
|
|
3350
|
-
};
|
|
782
|
+
message: import("@trezor/protobuf/lib/messages").StellarChangeTrustOp;
|
|
3351
783
|
} | {
|
|
3352
784
|
type: "StellarAllowTrustOp";
|
|
3353
|
-
message:
|
|
3354
|
-
source_account?: string | undefined;
|
|
3355
|
-
asset_code?: string | undefined;
|
|
3356
|
-
trusted_account: string;
|
|
3357
|
-
asset_type: Messages.StellarAssetType;
|
|
3358
|
-
is_authorized: boolean;
|
|
3359
|
-
};
|
|
785
|
+
message: import("@trezor/protobuf/lib/messages").StellarAllowTrustOp;
|
|
3360
786
|
} | {
|
|
3361
787
|
type: "StellarAccountMergeOp";
|
|
3362
|
-
message:
|
|
3363
|
-
source_account?: string | undefined;
|
|
3364
|
-
destination_account: string;
|
|
3365
|
-
};
|
|
788
|
+
message: import("@trezor/protobuf/lib/messages").StellarAccountMergeOp;
|
|
3366
789
|
} | {
|
|
3367
790
|
type: "StellarManageDataOp";
|
|
3368
|
-
message:
|
|
3369
|
-
value?: string | Buffer<ArrayBufferLike> | undefined;
|
|
3370
|
-
source_account?: string | undefined;
|
|
3371
|
-
key: string;
|
|
3372
|
-
};
|
|
791
|
+
message: import("@trezor/protobuf/lib/messages").StellarManageDataOp;
|
|
3373
792
|
} | {
|
|
3374
793
|
type: "StellarBumpSequenceOp";
|
|
3375
|
-
message:
|
|
3376
|
-
source_account?: string | undefined;
|
|
3377
|
-
bump_to: string | number;
|
|
3378
|
-
};
|
|
794
|
+
message: import("@trezor/protobuf/lib/messages").StellarBumpSequenceOp;
|
|
3379
795
|
} | {
|
|
3380
796
|
type: "StellarClaimClaimableBalanceOp";
|
|
3381
|
-
message:
|
|
3382
|
-
source_account?: string | undefined;
|
|
3383
|
-
balance_id: string;
|
|
3384
|
-
};
|
|
797
|
+
message: import("@trezor/protobuf/lib/messages").StellarClaimClaimableBalanceOp;
|
|
3385
798
|
} | {
|
|
3386
799
|
type: "StellarSignedTx";
|
|
3387
|
-
message:
|
|
3388
|
-
public_key: string;
|
|
3389
|
-
signature: string;
|
|
3390
|
-
};
|
|
800
|
+
message: import("@trezor/protobuf/lib/messages").StellarSignedTx;
|
|
3391
801
|
} | {
|
|
3392
802
|
type: "TezosGetAddress";
|
|
3393
|
-
message:
|
|
3394
|
-
chunkify?: boolean | undefined;
|
|
3395
|
-
show_display?: boolean | undefined;
|
|
3396
|
-
address_n: number[];
|
|
3397
|
-
};
|
|
803
|
+
message: import("@trezor/protobuf/lib/messages").TezosGetAddress;
|
|
3398
804
|
} | {
|
|
3399
805
|
type: "TezosAddress";
|
|
3400
|
-
message:
|
|
3401
|
-
address: string;
|
|
3402
|
-
};
|
|
806
|
+
message: import("@trezor/protobuf/lib/messages").TezosAddress;
|
|
3403
807
|
} | {
|
|
3404
808
|
type: "TezosGetPublicKey";
|
|
3405
|
-
message:
|
|
3406
|
-
chunkify?: boolean | undefined;
|
|
3407
|
-
show_display?: boolean | undefined;
|
|
3408
|
-
address_n: number[];
|
|
3409
|
-
};
|
|
809
|
+
message: import("@trezor/protobuf/lib/messages").TezosGetPublicKey;
|
|
3410
810
|
} | {
|
|
3411
811
|
type: "TezosPublicKey";
|
|
3412
|
-
message:
|
|
3413
|
-
public_key: string;
|
|
3414
|
-
};
|
|
3415
|
-
} | {
|
|
3416
|
-
type: "TezosContractID";
|
|
3417
|
-
message: {
|
|
3418
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3419
|
-
tag: number;
|
|
3420
|
-
};
|
|
3421
|
-
} | {
|
|
3422
|
-
type: "TezosRevealOp";
|
|
3423
|
-
message: {
|
|
3424
|
-
fee: string | number;
|
|
3425
|
-
public_key: Uint8Array<ArrayBufferLike>;
|
|
3426
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3427
|
-
counter: number;
|
|
3428
|
-
gas_limit: number;
|
|
3429
|
-
storage_limit: number;
|
|
3430
|
-
};
|
|
3431
|
-
} | {
|
|
3432
|
-
type: "TezosManagerTransfer";
|
|
3433
|
-
message: {
|
|
3434
|
-
amount: string | number;
|
|
3435
|
-
destination: {
|
|
3436
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3437
|
-
tag: number;
|
|
3438
|
-
};
|
|
3439
|
-
};
|
|
3440
|
-
} | {
|
|
3441
|
-
type: "TezosParametersManager";
|
|
3442
|
-
message: {
|
|
3443
|
-
transfer?: {
|
|
3444
|
-
amount: string | number;
|
|
3445
|
-
destination: {
|
|
3446
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3447
|
-
tag: number;
|
|
3448
|
-
};
|
|
3449
|
-
} | undefined;
|
|
3450
|
-
set_delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
3451
|
-
cancel_delegate?: boolean | undefined;
|
|
3452
|
-
};
|
|
3453
|
-
} | {
|
|
3454
|
-
type: "TezosTransactionOp";
|
|
3455
|
-
message: {
|
|
3456
|
-
parameters?: number[] | undefined;
|
|
3457
|
-
parameters_manager?: {
|
|
3458
|
-
transfer?: {
|
|
3459
|
-
amount: string | number;
|
|
3460
|
-
destination: {
|
|
3461
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3462
|
-
tag: number;
|
|
3463
|
-
};
|
|
3464
|
-
} | undefined;
|
|
3465
|
-
set_delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
3466
|
-
cancel_delegate?: boolean | undefined;
|
|
3467
|
-
} | undefined;
|
|
3468
|
-
fee: string | number;
|
|
3469
|
-
amount: string | number;
|
|
3470
|
-
destination: {
|
|
3471
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3472
|
-
tag: number;
|
|
3473
|
-
};
|
|
3474
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3475
|
-
counter: number;
|
|
3476
|
-
gas_limit: number;
|
|
3477
|
-
storage_limit: number;
|
|
3478
|
-
};
|
|
3479
|
-
} | {
|
|
3480
|
-
type: "TezosOriginationOp";
|
|
3481
|
-
message: {
|
|
3482
|
-
delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
3483
|
-
manager_pubkey?: string | undefined;
|
|
3484
|
-
spendable?: boolean | undefined;
|
|
3485
|
-
delegatable?: boolean | undefined;
|
|
3486
|
-
fee: string | number;
|
|
3487
|
-
script: string | number[];
|
|
3488
|
-
balance: number;
|
|
3489
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3490
|
-
counter: number;
|
|
3491
|
-
gas_limit: number;
|
|
3492
|
-
storage_limit: number;
|
|
3493
|
-
};
|
|
3494
|
-
} | {
|
|
3495
|
-
type: "TezosDelegationOp";
|
|
3496
|
-
message: {
|
|
3497
|
-
fee: string | number;
|
|
3498
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3499
|
-
counter: number;
|
|
3500
|
-
gas_limit: number;
|
|
3501
|
-
storage_limit: number;
|
|
3502
|
-
delegate: Uint8Array<ArrayBufferLike>;
|
|
3503
|
-
};
|
|
3504
|
-
} | {
|
|
3505
|
-
type: "TezosProposalOp";
|
|
3506
|
-
message: {
|
|
3507
|
-
source: string;
|
|
3508
|
-
period: number;
|
|
3509
|
-
proposals: string[];
|
|
3510
|
-
};
|
|
3511
|
-
} | {
|
|
3512
|
-
type: "TezosBallotOp";
|
|
3513
|
-
message: {
|
|
3514
|
-
source: string;
|
|
3515
|
-
period: number;
|
|
3516
|
-
proposal: string;
|
|
3517
|
-
ballot: Messages.TezosBallotType;
|
|
3518
|
-
};
|
|
812
|
+
message: import("@trezor/protobuf/lib/messages").TezosPublicKey;
|
|
3519
813
|
} | {
|
|
3520
814
|
type: "TezosSignTx";
|
|
3521
|
-
message:
|
|
3522
|
-
chunkify?: boolean | undefined;
|
|
3523
|
-
transaction?: {
|
|
3524
|
-
parameters?: number[] | undefined;
|
|
3525
|
-
parameters_manager?: {
|
|
3526
|
-
transfer?: {
|
|
3527
|
-
amount: string | number;
|
|
3528
|
-
destination: {
|
|
3529
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3530
|
-
tag: number;
|
|
3531
|
-
};
|
|
3532
|
-
} | undefined;
|
|
3533
|
-
set_delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
3534
|
-
cancel_delegate?: boolean | undefined;
|
|
3535
|
-
} | undefined;
|
|
3536
|
-
fee: string | number;
|
|
3537
|
-
amount: string | number;
|
|
3538
|
-
destination: {
|
|
3539
|
-
hash: Uint8Array<ArrayBufferLike>;
|
|
3540
|
-
tag: number;
|
|
3541
|
-
};
|
|
3542
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3543
|
-
counter: number;
|
|
3544
|
-
gas_limit: number;
|
|
3545
|
-
storage_limit: number;
|
|
3546
|
-
} | undefined;
|
|
3547
|
-
reveal?: {
|
|
3548
|
-
fee: string | number;
|
|
3549
|
-
public_key: Uint8Array<ArrayBufferLike>;
|
|
3550
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3551
|
-
counter: number;
|
|
3552
|
-
gas_limit: number;
|
|
3553
|
-
storage_limit: number;
|
|
3554
|
-
} | undefined;
|
|
3555
|
-
origination?: {
|
|
3556
|
-
delegate?: Uint8Array<ArrayBufferLike> | undefined;
|
|
3557
|
-
manager_pubkey?: string | undefined;
|
|
3558
|
-
spendable?: boolean | undefined;
|
|
3559
|
-
delegatable?: boolean | undefined;
|
|
3560
|
-
fee: string | number;
|
|
3561
|
-
script: string | number[];
|
|
3562
|
-
balance: number;
|
|
3563
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3564
|
-
counter: number;
|
|
3565
|
-
gas_limit: number;
|
|
3566
|
-
storage_limit: number;
|
|
3567
|
-
} | undefined;
|
|
3568
|
-
delegation?: {
|
|
3569
|
-
fee: string | number;
|
|
3570
|
-
source: Uint8Array<ArrayBufferLike>;
|
|
3571
|
-
counter: number;
|
|
3572
|
-
gas_limit: number;
|
|
3573
|
-
storage_limit: number;
|
|
3574
|
-
delegate: Uint8Array<ArrayBufferLike>;
|
|
3575
|
-
} | undefined;
|
|
3576
|
-
proposal?: {
|
|
3577
|
-
source: string;
|
|
3578
|
-
period: number;
|
|
3579
|
-
proposals: string[];
|
|
3580
|
-
} | undefined;
|
|
3581
|
-
ballot?: {
|
|
3582
|
-
source: string;
|
|
3583
|
-
period: number;
|
|
3584
|
-
proposal: string;
|
|
3585
|
-
ballot: Messages.TezosBallotType;
|
|
3586
|
-
} | undefined;
|
|
3587
|
-
address_n: number[];
|
|
3588
|
-
branch: Uint8Array<ArrayBufferLike>;
|
|
3589
|
-
};
|
|
815
|
+
message: import("@trezor/protobuf/lib/messages").TezosSignTx;
|
|
3590
816
|
} | {
|
|
3591
817
|
type: "TezosSignedTx";
|
|
3592
|
-
message:
|
|
3593
|
-
signature: string;
|
|
3594
|
-
sig_op_contents: string;
|
|
3595
|
-
operation_hash: string;
|
|
3596
|
-
};
|
|
818
|
+
message: import("@trezor/protobuf/lib/messages").TezosSignedTx;
|
|
3597
819
|
}>;
|
|
3598
820
|
private needCancelWorkaround;
|
|
3599
821
|
private callLoop;
|
|
3600
822
|
private call;
|
|
3601
|
-
cancelCall(
|
|
823
|
+
cancelCall(): Promise<{
|
|
3602
824
|
success: false;
|
|
3603
825
|
error: Error;
|
|
3604
826
|
} | {
|
|
3605
827
|
success: true;
|
|
3606
|
-
payload:
|
|
3607
|
-
type: "PassphraseAck";
|
|
3608
|
-
message: import("@trezor/protobuf/lib/messages").PassphraseAck;
|
|
3609
|
-
} | {
|
|
3610
|
-
type: "CipheredKeyValue";
|
|
3611
|
-
message: import("@trezor/protobuf/lib/messages").CipheredKeyValue;
|
|
3612
|
-
} | {
|
|
3613
|
-
type: "GetPublicKey";
|
|
3614
|
-
message: import("@trezor/protobuf/lib/messages").GetPublicKey;
|
|
3615
|
-
} | {
|
|
3616
|
-
type: "PublicKey";
|
|
3617
|
-
message: import("@trezor/protobuf/lib/messages").PublicKey;
|
|
3618
|
-
} | {
|
|
3619
|
-
type: "Features";
|
|
3620
|
-
message: import("@trezor/protobuf/lib/messages").Features;
|
|
3621
|
-
} | {
|
|
3622
|
-
type: "HDNodeType";
|
|
3623
|
-
message: import("@trezor/protobuf/lib/messages").HDNodeType;
|
|
3624
|
-
} | {
|
|
3625
|
-
type: "HDNodePathType";
|
|
3626
|
-
message: import("@trezor/protobuf/lib/messages").HDNodePathType;
|
|
3627
|
-
} | {
|
|
3628
|
-
type: "MultisigRedeemScriptType";
|
|
3629
|
-
message: import("@trezor/protobuf/lib/messages").MultisigRedeemScriptType;
|
|
3630
|
-
} | {
|
|
3631
|
-
type: "GetAddress";
|
|
3632
|
-
message: import("@trezor/protobuf/lib/messages").GetAddress;
|
|
3633
|
-
} | {
|
|
3634
|
-
type: "Address";
|
|
3635
|
-
message: import("@trezor/protobuf/lib/messages").Address;
|
|
3636
|
-
} | {
|
|
3637
|
-
type: "GetOwnershipId";
|
|
3638
|
-
message: import("@trezor/protobuf/lib/messages").GetOwnershipId;
|
|
3639
|
-
} | {
|
|
3640
|
-
type: "OwnershipId";
|
|
3641
|
-
message: import("@trezor/protobuf/lib/messages").OwnershipId;
|
|
3642
|
-
} | {
|
|
3643
|
-
type: "SignMessage";
|
|
3644
|
-
message: import("@trezor/protobuf/lib/messages").SignMessage;
|
|
3645
|
-
} | {
|
|
3646
|
-
type: "MessageSignature";
|
|
3647
|
-
message: import("@trezor/protobuf/lib/messages").MessageSignature;
|
|
3648
|
-
} | {
|
|
3649
|
-
type: "VerifyMessage";
|
|
3650
|
-
message: import("@trezor/protobuf/lib/messages").VerifyMessage;
|
|
3651
|
-
} | {
|
|
3652
|
-
type: "CoinJoinRequest";
|
|
3653
|
-
message: import("@trezor/protobuf/lib/messages").CoinJoinRequest;
|
|
3654
|
-
} | {
|
|
3655
|
-
type: "SignTx";
|
|
3656
|
-
message: import("@trezor/protobuf/lib/messages").SignTx;
|
|
3657
|
-
} | {
|
|
3658
|
-
type: "TxRequestDetailsType";
|
|
3659
|
-
message: import("@trezor/protobuf/lib/messages").TxRequestDetailsType;
|
|
3660
|
-
} | {
|
|
3661
|
-
type: "TxRequestSerializedType";
|
|
3662
|
-
message: import("@trezor/protobuf/lib/messages").TxRequestSerializedType;
|
|
3663
|
-
} | {
|
|
3664
|
-
type: "TxRequest";
|
|
3665
|
-
message: import("@trezor/protobuf/lib/messages").TxRequest;
|
|
3666
|
-
} | {
|
|
3667
|
-
type: "TxInputType";
|
|
3668
|
-
message: import("@trezor/protobuf/lib/messages").TxInputType;
|
|
3669
|
-
} | {
|
|
3670
|
-
type: "TxOutputBinType";
|
|
3671
|
-
message: import("@trezor/protobuf/lib/messages").TxOutputBinType;
|
|
3672
|
-
} | {
|
|
3673
|
-
type: "TxOutputType";
|
|
3674
|
-
message: import("@trezor/protobuf/lib/messages").TxOutputType;
|
|
3675
|
-
} | {
|
|
3676
|
-
type: "PrevTx";
|
|
3677
|
-
message: import("@trezor/protobuf/lib/messages").PrevTx;
|
|
3678
|
-
} | {
|
|
3679
|
-
type: "PrevInput";
|
|
3680
|
-
message: import("@trezor/protobuf/lib/messages").PrevInput;
|
|
3681
|
-
} | {
|
|
3682
|
-
type: "PrevOutput";
|
|
3683
|
-
message: import("@trezor/protobuf/lib/messages").PrevOutput;
|
|
3684
|
-
} | {
|
|
3685
|
-
type: "TextMemo";
|
|
3686
|
-
message: import("@trezor/protobuf/lib/messages").TextMemo;
|
|
3687
|
-
} | {
|
|
3688
|
-
type: "RefundMemo";
|
|
3689
|
-
message: import("@trezor/protobuf/lib/messages").RefundMemo;
|
|
3690
|
-
} | {
|
|
3691
|
-
type: "CoinPurchaseMemo";
|
|
3692
|
-
message: import("@trezor/protobuf/lib/messages").CoinPurchaseMemo;
|
|
3693
|
-
} | {
|
|
3694
|
-
type: "PaymentRequestMemo";
|
|
3695
|
-
message: import("@trezor/protobuf/lib/messages").PaymentRequestMemo;
|
|
3696
|
-
} | {
|
|
3697
|
-
type: "TxAckPaymentRequest";
|
|
3698
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPaymentRequest;
|
|
3699
|
-
} | {
|
|
3700
|
-
type: "TxAck";
|
|
3701
|
-
message: import("@trezor/protobuf/lib/messages").TxAck;
|
|
3702
|
-
} | {
|
|
3703
|
-
type: "TxAckInputWrapper";
|
|
3704
|
-
message: import("@trezor/protobuf/lib/messages").TxAckInputWrapper;
|
|
3705
|
-
} | {
|
|
3706
|
-
type: "TxAckInput";
|
|
3707
|
-
message: import("@trezor/protobuf/lib/messages").TxAckInput;
|
|
3708
|
-
} | {
|
|
3709
|
-
type: "TxAckOutputWrapper";
|
|
3710
|
-
message: import("@trezor/protobuf/lib/messages").TxAckOutputWrapper;
|
|
3711
|
-
} | {
|
|
3712
|
-
type: "TxAckOutput";
|
|
3713
|
-
message: import("@trezor/protobuf/lib/messages").TxAckOutput;
|
|
3714
|
-
} | {
|
|
3715
|
-
type: "TxAckPrevMeta";
|
|
3716
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevMeta;
|
|
3717
|
-
} | {
|
|
3718
|
-
type: "TxAckPrevInputWrapper";
|
|
3719
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevInputWrapper;
|
|
3720
|
-
} | {
|
|
3721
|
-
type: "TxAckPrevInput";
|
|
3722
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevInput;
|
|
3723
|
-
} | {
|
|
3724
|
-
type: "TxAckPrevOutputWrapper";
|
|
3725
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevOutputWrapper;
|
|
3726
|
-
} | {
|
|
3727
|
-
type: "TxAckPrevOutput";
|
|
3728
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevOutput;
|
|
3729
|
-
} | {
|
|
3730
|
-
type: "TxAckPrevExtraDataWrapper";
|
|
3731
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevExtraDataWrapper;
|
|
3732
|
-
} | {
|
|
3733
|
-
type: "TxAckPrevExtraData";
|
|
3734
|
-
message: import("@trezor/protobuf/lib/messages").TxAckPrevExtraData;
|
|
3735
|
-
} | {
|
|
3736
|
-
type: "GetOwnershipProof";
|
|
3737
|
-
message: import("@trezor/protobuf/lib/messages").GetOwnershipProof;
|
|
3738
|
-
} | {
|
|
3739
|
-
type: "OwnershipProof";
|
|
3740
|
-
message: import("@trezor/protobuf/lib/messages").OwnershipProof;
|
|
3741
|
-
} | {
|
|
3742
|
-
type: "AuthorizeCoinJoin";
|
|
3743
|
-
message: import("@trezor/protobuf/lib/messages").AuthorizeCoinJoin;
|
|
3744
|
-
} | {
|
|
3745
|
-
type: "BleUnpair";
|
|
3746
|
-
message: import("@trezor/protobuf/lib/messages").BleUnpair;
|
|
3747
|
-
} | {
|
|
3748
|
-
type: "FirmwareErase";
|
|
3749
|
-
message: import("@trezor/protobuf/lib/messages").FirmwareErase;
|
|
3750
|
-
} | {
|
|
3751
|
-
type: "FirmwareRequest";
|
|
3752
|
-
message: import("@trezor/protobuf/lib/messages").FirmwareRequest;
|
|
3753
|
-
} | {
|
|
3754
|
-
type: "FirmwareUpload";
|
|
3755
|
-
message: import("@trezor/protobuf/lib/messages").FirmwareUpload;
|
|
3756
|
-
} | {
|
|
3757
|
-
type: "ProdTestT1";
|
|
3758
|
-
message: import("@trezor/protobuf/lib/messages").ProdTestT1;
|
|
3759
|
-
} | {
|
|
3760
|
-
type: "CardanoBlockchainPointerType";
|
|
3761
|
-
message: import("@trezor/protobuf/lib/messages").CardanoBlockchainPointerType;
|
|
3762
|
-
} | {
|
|
3763
|
-
type: "CardanoNativeScript";
|
|
3764
|
-
message: import("@trezor/protobuf/lib/messages").CardanoNativeScript;
|
|
3765
|
-
} | {
|
|
3766
|
-
type: "CardanoGetNativeScriptHash";
|
|
3767
|
-
message: import("@trezor/protobuf/lib/messages").CardanoGetNativeScriptHash;
|
|
3768
|
-
} | {
|
|
3769
|
-
type: "CardanoNativeScriptHash";
|
|
3770
|
-
message: import("@trezor/protobuf/lib/messages").CardanoNativeScriptHash;
|
|
3771
|
-
} | {
|
|
3772
|
-
type: "CardanoAddressParametersType";
|
|
3773
|
-
message: import("@trezor/protobuf/lib/messages").CardanoAddressParametersType;
|
|
3774
|
-
} | {
|
|
3775
|
-
type: "CardanoGetAddress";
|
|
3776
|
-
message: import("@trezor/protobuf/lib/messages").CardanoGetAddress;
|
|
3777
|
-
} | {
|
|
3778
|
-
type: "CardanoAddress";
|
|
3779
|
-
message: import("@trezor/protobuf/lib/messages").CardanoAddress;
|
|
3780
|
-
} | {
|
|
3781
|
-
type: "CardanoGetPublicKey";
|
|
3782
|
-
message: import("@trezor/protobuf/lib/messages").CardanoGetPublicKey;
|
|
3783
|
-
} | {
|
|
3784
|
-
type: "CardanoPublicKey";
|
|
3785
|
-
message: import("@trezor/protobuf/lib/messages").CardanoPublicKey;
|
|
3786
|
-
} | {
|
|
3787
|
-
type: "CardanoSignTxInit";
|
|
3788
|
-
message: import("@trezor/protobuf/lib/messages").CardanoSignTxInit;
|
|
3789
|
-
} | {
|
|
3790
|
-
type: "CardanoTxInput";
|
|
3791
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxInput;
|
|
3792
|
-
} | {
|
|
3793
|
-
type: "CardanoTxOutput";
|
|
3794
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxOutput;
|
|
3795
|
-
} | {
|
|
3796
|
-
type: "CardanoAssetGroup";
|
|
3797
|
-
message: import("@trezor/protobuf/lib/messages").CardanoAssetGroup;
|
|
3798
|
-
} | {
|
|
3799
|
-
type: "CardanoToken";
|
|
3800
|
-
message: import("@trezor/protobuf/lib/messages").CardanoToken;
|
|
3801
|
-
} | {
|
|
3802
|
-
type: "CardanoTxInlineDatumChunk";
|
|
3803
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxInlineDatumChunk;
|
|
3804
|
-
} | {
|
|
3805
|
-
type: "CardanoTxReferenceScriptChunk";
|
|
3806
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxReferenceScriptChunk;
|
|
3807
|
-
} | {
|
|
3808
|
-
type: "CardanoPoolOwner";
|
|
3809
|
-
message: import("@trezor/protobuf/lib/messages").CardanoPoolOwner;
|
|
3810
|
-
} | {
|
|
3811
|
-
type: "CardanoPoolRelayParameters";
|
|
3812
|
-
message: import("@trezor/protobuf/lib/messages").CardanoPoolRelayParameters;
|
|
3813
|
-
} | {
|
|
3814
|
-
type: "CardanoPoolMetadataType";
|
|
3815
|
-
message: import("@trezor/protobuf/lib/messages").CardanoPoolMetadataType;
|
|
3816
|
-
} | {
|
|
3817
|
-
type: "CardanoPoolParametersType";
|
|
3818
|
-
message: import("@trezor/protobuf/lib/messages").CardanoPoolParametersType;
|
|
3819
|
-
} | {
|
|
3820
|
-
type: "CardanoDRep";
|
|
3821
|
-
message: import("@trezor/protobuf/lib/messages").CardanoDRep;
|
|
3822
|
-
} | {
|
|
3823
|
-
type: "CardanoTxCertificate";
|
|
3824
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxCertificate;
|
|
3825
|
-
} | {
|
|
3826
|
-
type: "CardanoTxWithdrawal";
|
|
3827
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxWithdrawal;
|
|
3828
|
-
} | {
|
|
3829
|
-
type: "CardanoCVoteRegistrationDelegation";
|
|
3830
|
-
message: import("@trezor/protobuf/lib/messages").CardanoCVoteRegistrationDelegation;
|
|
3831
|
-
} | {
|
|
3832
|
-
type: "CardanoCVoteRegistrationParametersType";
|
|
3833
|
-
message: import("@trezor/protobuf/lib/messages").CardanoCVoteRegistrationParametersType;
|
|
3834
|
-
} | {
|
|
3835
|
-
type: "CardanoTxAuxiliaryData";
|
|
3836
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxAuxiliaryData;
|
|
3837
|
-
} | {
|
|
3838
|
-
type: "CardanoTxMint";
|
|
3839
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxMint;
|
|
3840
|
-
} | {
|
|
3841
|
-
type: "CardanoTxCollateralInput";
|
|
3842
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxCollateralInput;
|
|
3843
|
-
} | {
|
|
3844
|
-
type: "CardanoTxRequiredSigner";
|
|
3845
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxRequiredSigner;
|
|
3846
|
-
} | {
|
|
3847
|
-
type: "CardanoTxReferenceInput";
|
|
3848
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxReferenceInput;
|
|
3849
|
-
} | {
|
|
3850
|
-
type: "CardanoTxItemAck";
|
|
3851
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxItemAck;
|
|
3852
|
-
} | {
|
|
3853
|
-
type: "CardanoTxAuxiliaryDataSupplement";
|
|
3854
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxAuxiliaryDataSupplement;
|
|
3855
|
-
} | {
|
|
3856
|
-
type: "CardanoTxWitnessRequest";
|
|
3857
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxWitnessRequest;
|
|
3858
|
-
} | {
|
|
3859
|
-
type: "CardanoTxWitnessResponse";
|
|
3860
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxWitnessResponse;
|
|
3861
|
-
} | {
|
|
3862
|
-
type: "CardanoTxHostAck";
|
|
3863
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxHostAck;
|
|
3864
|
-
} | {
|
|
3865
|
-
type: "CardanoTxBodyHash";
|
|
3866
|
-
message: import("@trezor/protobuf/lib/messages").CardanoTxBodyHash;
|
|
3867
|
-
} | {
|
|
3868
|
-
type: "CardanoSignTxFinished";
|
|
3869
|
-
message: import("@trezor/protobuf/lib/messages").CardanoSignTxFinished;
|
|
3870
|
-
} | {
|
|
3871
|
-
type: "Success";
|
|
3872
|
-
message: import("@trezor/protobuf/lib/messages").Success;
|
|
3873
|
-
} | {
|
|
3874
|
-
type: "Failure";
|
|
3875
|
-
message: import("@trezor/protobuf/lib/messages").Failure;
|
|
3876
|
-
} | {
|
|
3877
|
-
type: "ButtonRequest";
|
|
3878
|
-
message: import("@trezor/protobuf/lib/messages").ButtonRequest;
|
|
3879
|
-
} | {
|
|
3880
|
-
type: "ButtonAck";
|
|
3881
|
-
message: import("@trezor/protobuf/lib/messages").ButtonAck;
|
|
3882
|
-
} | {
|
|
3883
|
-
type: "PinMatrixRequest";
|
|
3884
|
-
message: import("@trezor/protobuf/lib/messages").PinMatrixRequest;
|
|
3885
|
-
} | {
|
|
3886
|
-
type: "PinMatrixAck";
|
|
3887
|
-
message: import("@trezor/protobuf/lib/messages").PinMatrixAck;
|
|
3888
|
-
} | {
|
|
3889
|
-
type: "PassphraseRequest";
|
|
3890
|
-
message: import("@trezor/protobuf/lib/messages").PassphraseRequest;
|
|
3891
|
-
} | {
|
|
3892
|
-
type: "Deprecated_PassphraseStateRequest";
|
|
3893
|
-
message: import("@trezor/protobuf/lib/messages").Deprecated_PassphraseStateRequest;
|
|
3894
|
-
} | {
|
|
3895
|
-
type: "Deprecated_PassphraseStateAck";
|
|
3896
|
-
message: import("@trezor/protobuf/lib/messages").Deprecated_PassphraseStateAck;
|
|
3897
|
-
} | {
|
|
3898
|
-
type: "CipherKeyValue";
|
|
3899
|
-
message: import("@trezor/protobuf/lib/messages").CipherKeyValue;
|
|
3900
|
-
} | {
|
|
3901
|
-
type: "IdentityType";
|
|
3902
|
-
message: import("@trezor/protobuf/lib/messages").IdentityType;
|
|
3903
|
-
} | {
|
|
3904
|
-
type: "SignIdentity";
|
|
3905
|
-
message: import("@trezor/protobuf/lib/messages").SignIdentity;
|
|
3906
|
-
} | {
|
|
3907
|
-
type: "SignedIdentity";
|
|
3908
|
-
message: import("@trezor/protobuf/lib/messages").SignedIdentity;
|
|
3909
|
-
} | {
|
|
3910
|
-
type: "GetECDHSessionKey";
|
|
3911
|
-
message: import("@trezor/protobuf/lib/messages").GetECDHSessionKey;
|
|
3912
|
-
} | {
|
|
3913
|
-
type: "ECDHSessionKey";
|
|
3914
|
-
message: import("@trezor/protobuf/lib/messages").ECDHSessionKey;
|
|
3915
|
-
} | {
|
|
3916
|
-
type: "DebugLinkResetDebugEvents";
|
|
3917
|
-
message: import("@trezor/protobuf/lib/messages").DebugLinkResetDebugEvents;
|
|
3918
|
-
} | {
|
|
3919
|
-
type: "DebugLinkOptigaSetSecMax";
|
|
3920
|
-
message: import("@trezor/protobuf/lib/messages").DebugLinkOptigaSetSecMax;
|
|
3921
|
-
} | {
|
|
3922
|
-
type: "EthereumNetworkInfo";
|
|
3923
|
-
message: import("@trezor/protobuf/lib/messages").EthereumNetworkInfo;
|
|
3924
|
-
} | {
|
|
3925
|
-
type: "EthereumTokenInfo";
|
|
3926
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTokenInfo;
|
|
3927
|
-
} | {
|
|
3928
|
-
type: "SolanaTokenInfo";
|
|
3929
|
-
message: import("@trezor/protobuf/lib/messages").SolanaTokenInfo;
|
|
3930
|
-
} | {
|
|
3931
|
-
type: "EosGetPublicKey";
|
|
3932
|
-
message: import("@trezor/protobuf/lib/messages").EosGetPublicKey;
|
|
3933
|
-
} | {
|
|
3934
|
-
type: "EosPublicKey";
|
|
3935
|
-
message: import("@trezor/protobuf/lib/messages").EosPublicKey;
|
|
3936
|
-
} | {
|
|
3937
|
-
type: "EosTxHeader";
|
|
3938
|
-
message: import("@trezor/protobuf/lib/messages").EosTxHeader;
|
|
3939
|
-
} | {
|
|
3940
|
-
type: "EosSignTx";
|
|
3941
|
-
message: import("@trezor/protobuf/lib/messages").EosSignTx;
|
|
3942
|
-
} | {
|
|
3943
|
-
type: "EosTxActionRequest";
|
|
3944
|
-
message: import("@trezor/protobuf/lib/messages").EosTxActionRequest;
|
|
3945
|
-
} | {
|
|
3946
|
-
type: "EosAsset";
|
|
3947
|
-
message: import("@trezor/protobuf/lib/messages").EosAsset;
|
|
3948
|
-
} | {
|
|
3949
|
-
type: "EosPermissionLevel";
|
|
3950
|
-
message: import("@trezor/protobuf/lib/messages").EosPermissionLevel;
|
|
3951
|
-
} | {
|
|
3952
|
-
type: "EosAuthorizationKey";
|
|
3953
|
-
message: import("@trezor/protobuf/lib/messages").EosAuthorizationKey;
|
|
3954
|
-
} | {
|
|
3955
|
-
type: "EosAuthorizationAccount";
|
|
3956
|
-
message: import("@trezor/protobuf/lib/messages").EosAuthorizationAccount;
|
|
3957
|
-
} | {
|
|
3958
|
-
type: "EosAuthorizationWait";
|
|
3959
|
-
message: import("@trezor/protobuf/lib/messages").EosAuthorizationWait;
|
|
3960
|
-
} | {
|
|
3961
|
-
type: "EosAuthorization";
|
|
3962
|
-
message: import("@trezor/protobuf/lib/messages").EosAuthorization;
|
|
3963
|
-
} | {
|
|
3964
|
-
type: "EosActionCommon";
|
|
3965
|
-
message: import("@trezor/protobuf/lib/messages").EosActionCommon;
|
|
3966
|
-
} | {
|
|
3967
|
-
type: "EosActionTransfer";
|
|
3968
|
-
message: import("@trezor/protobuf/lib/messages").EosActionTransfer;
|
|
3969
|
-
} | {
|
|
3970
|
-
type: "EosActionDelegate";
|
|
3971
|
-
message: import("@trezor/protobuf/lib/messages").EosActionDelegate;
|
|
3972
|
-
} | {
|
|
3973
|
-
type: "EosActionUndelegate";
|
|
3974
|
-
message: import("@trezor/protobuf/lib/messages").EosActionUndelegate;
|
|
3975
|
-
} | {
|
|
3976
|
-
type: "EosActionRefund";
|
|
3977
|
-
message: import("@trezor/protobuf/lib/messages").EosActionRefund;
|
|
3978
|
-
} | {
|
|
3979
|
-
type: "EosActionBuyRam";
|
|
3980
|
-
message: import("@trezor/protobuf/lib/messages").EosActionBuyRam;
|
|
3981
|
-
} | {
|
|
3982
|
-
type: "EosActionBuyRamBytes";
|
|
3983
|
-
message: import("@trezor/protobuf/lib/messages").EosActionBuyRamBytes;
|
|
3984
|
-
} | {
|
|
3985
|
-
type: "EosActionSellRam";
|
|
3986
|
-
message: import("@trezor/protobuf/lib/messages").EosActionSellRam;
|
|
3987
|
-
} | {
|
|
3988
|
-
type: "EosActionVoteProducer";
|
|
3989
|
-
message: import("@trezor/protobuf/lib/messages").EosActionVoteProducer;
|
|
3990
|
-
} | {
|
|
3991
|
-
type: "EosActionUpdateAuth";
|
|
3992
|
-
message: import("@trezor/protobuf/lib/messages").EosActionUpdateAuth;
|
|
3993
|
-
} | {
|
|
3994
|
-
type: "EosActionDeleteAuth";
|
|
3995
|
-
message: import("@trezor/protobuf/lib/messages").EosActionDeleteAuth;
|
|
3996
|
-
} | {
|
|
3997
|
-
type: "EosActionLinkAuth";
|
|
3998
|
-
message: import("@trezor/protobuf/lib/messages").EosActionLinkAuth;
|
|
3999
|
-
} | {
|
|
4000
|
-
type: "EosActionUnlinkAuth";
|
|
4001
|
-
message: import("@trezor/protobuf/lib/messages").EosActionUnlinkAuth;
|
|
4002
|
-
} | {
|
|
4003
|
-
type: "EosActionNewAccount";
|
|
4004
|
-
message: import("@trezor/protobuf/lib/messages").EosActionNewAccount;
|
|
4005
|
-
} | {
|
|
4006
|
-
type: "EosActionUnknown";
|
|
4007
|
-
message: import("@trezor/protobuf/lib/messages").EosActionUnknown;
|
|
4008
|
-
} | {
|
|
4009
|
-
type: "EosTxActionAck";
|
|
4010
|
-
message: import("@trezor/protobuf/lib/messages").EosTxActionAck;
|
|
4011
|
-
} | {
|
|
4012
|
-
type: "EosSignedTx";
|
|
4013
|
-
message: import("@trezor/protobuf/lib/messages").EosSignedTx;
|
|
4014
|
-
} | {
|
|
4015
|
-
type: "EthereumDefinitions";
|
|
4016
|
-
message: import("@trezor/protobuf/lib/messages").EthereumDefinitions;
|
|
4017
|
-
} | {
|
|
4018
|
-
type: "EthereumSignTypedData";
|
|
4019
|
-
message: import("@trezor/protobuf/lib/messages").EthereumSignTypedData;
|
|
4020
|
-
} | {
|
|
4021
|
-
type: "EthereumTypedDataStructRequest";
|
|
4022
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataStructRequest;
|
|
4023
|
-
} | {
|
|
4024
|
-
type: "EthereumFieldType";
|
|
4025
|
-
message: import("@trezor/protobuf/lib/messages").EthereumFieldType;
|
|
4026
|
-
} | {
|
|
4027
|
-
type: "EthereumStructMember";
|
|
4028
|
-
message: import("@trezor/protobuf/lib/messages").EthereumStructMember;
|
|
4029
|
-
} | {
|
|
4030
|
-
type: "EthereumTypedDataStructAck";
|
|
4031
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataStructAck;
|
|
4032
|
-
} | {
|
|
4033
|
-
type: "EthereumTypedDataValueRequest";
|
|
4034
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataValueRequest;
|
|
4035
|
-
} | {
|
|
4036
|
-
type: "EthereumTypedDataValueAck";
|
|
4037
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataValueAck;
|
|
4038
|
-
} | {
|
|
4039
|
-
type: "EthereumGetPublicKey";
|
|
4040
|
-
message: import("@trezor/protobuf/lib/messages").EthereumGetPublicKey;
|
|
4041
|
-
} | {
|
|
4042
|
-
type: "EthereumPublicKey";
|
|
4043
|
-
message: import("@trezor/protobuf/lib/messages").EthereumPublicKey;
|
|
4044
|
-
} | {
|
|
4045
|
-
type: "EthereumGetAddress";
|
|
4046
|
-
message: import("@trezor/protobuf/lib/messages").EthereumGetAddress;
|
|
4047
|
-
} | {
|
|
4048
|
-
type: "EthereumAddress";
|
|
4049
|
-
message: import("@trezor/protobuf/lib/messages").EthereumAddress;
|
|
4050
|
-
} | {
|
|
4051
|
-
type: "EthereumSignTx";
|
|
4052
|
-
message: import("@trezor/protobuf/lib/messages").EthereumSignTx;
|
|
4053
|
-
} | {
|
|
4054
|
-
type: "EthereumAccessList";
|
|
4055
|
-
message: import("@trezor/protobuf/lib/messages").EthereumAccessList;
|
|
4056
|
-
} | {
|
|
4057
|
-
type: "EthereumSignTxEIP1559";
|
|
4058
|
-
message: import("@trezor/protobuf/lib/messages").EthereumSignTxEIP1559;
|
|
4059
|
-
} | {
|
|
4060
|
-
type: "EthereumTxRequest";
|
|
4061
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTxRequest;
|
|
4062
|
-
} | {
|
|
4063
|
-
type: "EthereumTxAck";
|
|
4064
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTxAck;
|
|
4065
|
-
} | {
|
|
4066
|
-
type: "EthereumSignMessage";
|
|
4067
|
-
message: import("@trezor/protobuf/lib/messages").EthereumSignMessage;
|
|
4068
|
-
} | {
|
|
4069
|
-
type: "EthereumMessageSignature";
|
|
4070
|
-
message: import("@trezor/protobuf/lib/messages").EthereumMessageSignature;
|
|
4071
|
-
} | {
|
|
4072
|
-
type: "EthereumVerifyMessage";
|
|
4073
|
-
message: import("@trezor/protobuf/lib/messages").EthereumVerifyMessage;
|
|
4074
|
-
} | {
|
|
4075
|
-
type: "EthereumSignTypedHash";
|
|
4076
|
-
message: import("@trezor/protobuf/lib/messages").EthereumSignTypedHash;
|
|
4077
|
-
} | {
|
|
4078
|
-
type: "EthereumTypedDataSignature";
|
|
4079
|
-
message: import("@trezor/protobuf/lib/messages").EthereumTypedDataSignature;
|
|
4080
|
-
} | {
|
|
4081
|
-
type: "Initialize";
|
|
4082
|
-
message: import("@trezor/protobuf/lib/messages").Initialize;
|
|
4083
|
-
} | {
|
|
4084
|
-
type: "GetFeatures";
|
|
4085
|
-
message: import("@trezor/protobuf/lib/messages").GetFeatures;
|
|
4086
|
-
} | {
|
|
4087
|
-
type: "RecoveryDevice";
|
|
4088
|
-
message: import("@trezor/protobuf/lib/messages").RecoveryDevice;
|
|
4089
|
-
} | {
|
|
4090
|
-
type: "LockDevice";
|
|
4091
|
-
message: import("@trezor/protobuf/lib/messages").LockDevice;
|
|
4092
|
-
} | {
|
|
4093
|
-
type: "SetBusy";
|
|
4094
|
-
message: import("@trezor/protobuf/lib/messages").SetBusy;
|
|
4095
|
-
} | {
|
|
4096
|
-
type: "EndSession";
|
|
4097
|
-
message: import("@trezor/protobuf/lib/messages").EndSession;
|
|
4098
|
-
} | {
|
|
4099
|
-
type: "ApplySettings";
|
|
4100
|
-
message: import("@trezor/protobuf/lib/messages").ApplySettings;
|
|
4101
|
-
} | {
|
|
4102
|
-
type: "ChangeLanguage";
|
|
4103
|
-
message: import("@trezor/protobuf/lib/messages").ChangeLanguage;
|
|
4104
|
-
} | {
|
|
4105
|
-
type: "TranslationDataRequest";
|
|
4106
|
-
message: import("@trezor/protobuf/lib/messages").TranslationDataRequest;
|
|
4107
|
-
} | {
|
|
4108
|
-
type: "TranslationDataAck";
|
|
4109
|
-
message: import("@trezor/protobuf/lib/messages").TranslationDataAck;
|
|
4110
|
-
} | {
|
|
4111
|
-
type: "ApplyFlags";
|
|
4112
|
-
message: import("@trezor/protobuf/lib/messages").ApplyFlags;
|
|
4113
|
-
} | {
|
|
4114
|
-
type: "ChangePin";
|
|
4115
|
-
message: import("@trezor/protobuf/lib/messages").ChangePin;
|
|
4116
|
-
} | {
|
|
4117
|
-
type: "ChangeWipeCode";
|
|
4118
|
-
message: import("@trezor/protobuf/lib/messages").ChangeWipeCode;
|
|
4119
|
-
} | {
|
|
4120
|
-
type: "SdProtect";
|
|
4121
|
-
message: import("@trezor/protobuf/lib/messages").SdProtect;
|
|
4122
|
-
} | {
|
|
4123
|
-
type: "Ping";
|
|
4124
|
-
message: import("@trezor/protobuf/lib/messages").Ping;
|
|
4125
|
-
} | {
|
|
4126
|
-
type: "Cancel";
|
|
4127
|
-
message: import("@trezor/protobuf/lib/messages").Cancel;
|
|
4128
|
-
} | {
|
|
4129
|
-
type: "GetEntropy";
|
|
4130
|
-
message: import("@trezor/protobuf/lib/messages").GetEntropy;
|
|
4131
|
-
} | {
|
|
4132
|
-
type: "Entropy";
|
|
4133
|
-
message: import("@trezor/protobuf/lib/messages").Entropy;
|
|
4134
|
-
} | {
|
|
4135
|
-
type: "GetFirmwareHash";
|
|
4136
|
-
message: import("@trezor/protobuf/lib/messages").GetFirmwareHash;
|
|
4137
|
-
} | {
|
|
4138
|
-
type: "FirmwareHash";
|
|
4139
|
-
message: import("@trezor/protobuf/lib/messages").FirmwareHash;
|
|
4140
|
-
} | {
|
|
4141
|
-
type: "AuthenticateDevice";
|
|
4142
|
-
message: import("@trezor/protobuf/lib/messages").AuthenticateDevice;
|
|
4143
|
-
} | {
|
|
4144
|
-
type: "AuthenticityProof";
|
|
4145
|
-
message: import("@trezor/protobuf/lib/messages").AuthenticityProof;
|
|
4146
|
-
} | {
|
|
4147
|
-
type: "WipeDevice";
|
|
4148
|
-
message: import("@trezor/protobuf/lib/messages").WipeDevice;
|
|
4149
|
-
} | {
|
|
4150
|
-
type: "LoadDevice";
|
|
4151
|
-
message: import("@trezor/protobuf/lib/messages").LoadDevice;
|
|
4152
|
-
} | {
|
|
4153
|
-
type: "ResetDevice";
|
|
4154
|
-
message: import("@trezor/protobuf/lib/messages").ResetDevice;
|
|
4155
|
-
} | {
|
|
4156
|
-
type: "Slip39Group";
|
|
4157
|
-
message: import("@trezor/protobuf/lib/messages").Slip39Group;
|
|
4158
|
-
} | {
|
|
4159
|
-
type: "BackupDevice";
|
|
4160
|
-
message: import("@trezor/protobuf/lib/messages").BackupDevice;
|
|
4161
|
-
} | {
|
|
4162
|
-
type: "EntropyRequest";
|
|
4163
|
-
message: import("@trezor/protobuf/lib/messages").EntropyRequest;
|
|
4164
|
-
} | {
|
|
4165
|
-
type: "EntropyAck";
|
|
4166
|
-
message: import("@trezor/protobuf/lib/messages").EntropyAck;
|
|
4167
|
-
} | {
|
|
4168
|
-
type: "EntropyCheckReady";
|
|
4169
|
-
message: import("@trezor/protobuf/lib/messages").EntropyCheckReady;
|
|
4170
|
-
} | {
|
|
4171
|
-
type: "EntropyCheckContinue";
|
|
4172
|
-
message: import("@trezor/protobuf/lib/messages").EntropyCheckContinue;
|
|
4173
|
-
} | {
|
|
4174
|
-
type: "WordRequest";
|
|
4175
|
-
message: import("@trezor/protobuf/lib/messages").WordRequest;
|
|
4176
|
-
} | {
|
|
4177
|
-
type: "WordAck";
|
|
4178
|
-
message: import("@trezor/protobuf/lib/messages").WordAck;
|
|
4179
|
-
} | {
|
|
4180
|
-
type: "SetU2FCounter";
|
|
4181
|
-
message: import("@trezor/protobuf/lib/messages").SetU2FCounter;
|
|
4182
|
-
} | {
|
|
4183
|
-
type: "GetNextU2FCounter";
|
|
4184
|
-
message: import("@trezor/protobuf/lib/messages").GetNextU2FCounter;
|
|
4185
|
-
} | {
|
|
4186
|
-
type: "NextU2FCounter";
|
|
4187
|
-
message: import("@trezor/protobuf/lib/messages").NextU2FCounter;
|
|
4188
|
-
} | {
|
|
4189
|
-
type: "DoPreauthorized";
|
|
4190
|
-
message: import("@trezor/protobuf/lib/messages").DoPreauthorized;
|
|
4191
|
-
} | {
|
|
4192
|
-
type: "PreauthorizedRequest";
|
|
4193
|
-
message: import("@trezor/protobuf/lib/messages").PreauthorizedRequest;
|
|
4194
|
-
} | {
|
|
4195
|
-
type: "CancelAuthorization";
|
|
4196
|
-
message: import("@trezor/protobuf/lib/messages").CancelAuthorization;
|
|
4197
|
-
} | {
|
|
4198
|
-
type: "RebootToBootloader";
|
|
4199
|
-
message: import("@trezor/protobuf/lib/messages").RebootToBootloader;
|
|
4200
|
-
} | {
|
|
4201
|
-
type: "GetNonce";
|
|
4202
|
-
message: import("@trezor/protobuf/lib/messages").GetNonce;
|
|
4203
|
-
} | {
|
|
4204
|
-
type: "Nonce";
|
|
4205
|
-
message: import("@trezor/protobuf/lib/messages").Nonce;
|
|
4206
|
-
} | {
|
|
4207
|
-
type: "UnlockPath";
|
|
4208
|
-
message: import("@trezor/protobuf/lib/messages").UnlockPath;
|
|
4209
|
-
} | {
|
|
4210
|
-
type: "UnlockedPathRequest";
|
|
4211
|
-
message: import("@trezor/protobuf/lib/messages").UnlockedPathRequest;
|
|
4212
|
-
} | {
|
|
4213
|
-
type: "ShowDeviceTutorial";
|
|
4214
|
-
message: import("@trezor/protobuf/lib/messages").ShowDeviceTutorial;
|
|
4215
|
-
} | {
|
|
4216
|
-
type: "UnlockBootloader";
|
|
4217
|
-
message: import("@trezor/protobuf/lib/messages").UnlockBootloader;
|
|
4218
|
-
} | {
|
|
4219
|
-
type: "SetBrightness";
|
|
4220
|
-
message: import("@trezor/protobuf/lib/messages").SetBrightness;
|
|
4221
|
-
} | {
|
|
4222
|
-
type: "NEMGetAddress";
|
|
4223
|
-
message: import("@trezor/protobuf/lib/messages").NEMGetAddress;
|
|
4224
|
-
} | {
|
|
4225
|
-
type: "NEMAddress";
|
|
4226
|
-
message: import("@trezor/protobuf/lib/messages").NEMAddress;
|
|
4227
|
-
} | {
|
|
4228
|
-
type: "NEMTransactionCommon";
|
|
4229
|
-
message: import("@trezor/protobuf/lib/messages").NEMTransactionCommon;
|
|
4230
|
-
} | {
|
|
4231
|
-
type: "NEMMosaic";
|
|
4232
|
-
message: import("@trezor/protobuf/lib/messages").NEMMosaic;
|
|
4233
|
-
} | {
|
|
4234
|
-
type: "NEMTransfer";
|
|
4235
|
-
message: import("@trezor/protobuf/lib/messages").NEMTransfer;
|
|
4236
|
-
} | {
|
|
4237
|
-
type: "NEMProvisionNamespace";
|
|
4238
|
-
message: import("@trezor/protobuf/lib/messages").NEMProvisionNamespace;
|
|
4239
|
-
} | {
|
|
4240
|
-
type: "NEMMosaicDefinition";
|
|
4241
|
-
message: import("@trezor/protobuf/lib/messages").NEMMosaicDefinition;
|
|
4242
|
-
} | {
|
|
4243
|
-
type: "NEMMosaicCreation";
|
|
4244
|
-
message: import("@trezor/protobuf/lib/messages").NEMMosaicCreation;
|
|
4245
|
-
} | {
|
|
4246
|
-
type: "NEMMosaicSupplyChange";
|
|
4247
|
-
message: import("@trezor/protobuf/lib/messages").NEMMosaicSupplyChange;
|
|
4248
|
-
} | {
|
|
4249
|
-
type: "NEMCosignatoryModification";
|
|
4250
|
-
message: import("@trezor/protobuf/lib/messages").NEMCosignatoryModification;
|
|
4251
|
-
} | {
|
|
4252
|
-
type: "NEMAggregateModification";
|
|
4253
|
-
message: import("@trezor/protobuf/lib/messages").NEMAggregateModification;
|
|
4254
|
-
} | {
|
|
4255
|
-
type: "NEMImportanceTransfer";
|
|
4256
|
-
message: import("@trezor/protobuf/lib/messages").NEMImportanceTransfer;
|
|
4257
|
-
} | {
|
|
4258
|
-
type: "NEMSignTx";
|
|
4259
|
-
message: import("@trezor/protobuf/lib/messages").NEMSignTx;
|
|
4260
|
-
} | {
|
|
4261
|
-
type: "NEMSignedTx";
|
|
4262
|
-
message: import("@trezor/protobuf/lib/messages").NEMSignedTx;
|
|
4263
|
-
} | {
|
|
4264
|
-
type: "NEMDecryptMessage";
|
|
4265
|
-
message: import("@trezor/protobuf/lib/messages").NEMDecryptMessage;
|
|
4266
|
-
} | {
|
|
4267
|
-
type: "NEMDecryptedMessage";
|
|
4268
|
-
message: import("@trezor/protobuf/lib/messages").NEMDecryptedMessage;
|
|
4269
|
-
} | {
|
|
4270
|
-
type: "RippleGetAddress";
|
|
4271
|
-
message: import("@trezor/protobuf/lib/messages").RippleGetAddress;
|
|
4272
|
-
} | {
|
|
4273
|
-
type: "RippleAddress";
|
|
4274
|
-
message: import("@trezor/protobuf/lib/messages").RippleAddress;
|
|
4275
|
-
} | {
|
|
4276
|
-
type: "RipplePayment";
|
|
4277
|
-
message: import("@trezor/protobuf/lib/messages").RipplePayment;
|
|
4278
|
-
} | {
|
|
4279
|
-
type: "RippleSignTx";
|
|
4280
|
-
message: import("@trezor/protobuf/lib/messages").RippleSignTx;
|
|
4281
|
-
} | {
|
|
4282
|
-
type: "RippleSignedTx";
|
|
4283
|
-
message: import("@trezor/protobuf/lib/messages").RippleSignedTx;
|
|
4284
|
-
} | {
|
|
4285
|
-
type: "SolanaGetPublicKey";
|
|
4286
|
-
message: import("@trezor/protobuf/lib/messages").SolanaGetPublicKey;
|
|
4287
|
-
} | {
|
|
4288
|
-
type: "SolanaPublicKey";
|
|
4289
|
-
message: import("@trezor/protobuf/lib/messages").SolanaPublicKey;
|
|
4290
|
-
} | {
|
|
4291
|
-
type: "SolanaGetAddress";
|
|
4292
|
-
message: import("@trezor/protobuf/lib/messages").SolanaGetAddress;
|
|
4293
|
-
} | {
|
|
4294
|
-
type: "SolanaAddress";
|
|
4295
|
-
message: import("@trezor/protobuf/lib/messages").SolanaAddress;
|
|
4296
|
-
} | {
|
|
4297
|
-
type: "SolanaTxTokenAccountInfo";
|
|
4298
|
-
message: import("@trezor/protobuf/lib/messages").SolanaTxTokenAccountInfo;
|
|
4299
|
-
} | {
|
|
4300
|
-
type: "SolanaTxAdditionalInfo";
|
|
4301
|
-
message: import("@trezor/protobuf/lib/messages").SolanaTxAdditionalInfo;
|
|
4302
|
-
} | {
|
|
4303
|
-
type: "SolanaSignTx";
|
|
4304
|
-
message: import("@trezor/protobuf/lib/messages").SolanaSignTx;
|
|
4305
|
-
} | {
|
|
4306
|
-
type: "SolanaTxSignature";
|
|
4307
|
-
message: import("@trezor/protobuf/lib/messages").SolanaTxSignature;
|
|
4308
|
-
} | {
|
|
4309
|
-
type: "StellarAsset";
|
|
4310
|
-
message: import("@trezor/protobuf/lib/messages").StellarAsset;
|
|
4311
|
-
} | {
|
|
4312
|
-
type: "StellarGetAddress";
|
|
4313
|
-
message: import("@trezor/protobuf/lib/messages").StellarGetAddress;
|
|
4314
|
-
} | {
|
|
4315
|
-
type: "StellarAddress";
|
|
4316
|
-
message: import("@trezor/protobuf/lib/messages").StellarAddress;
|
|
4317
|
-
} | {
|
|
4318
|
-
type: "StellarSignTx";
|
|
4319
|
-
message: import("@trezor/protobuf/lib/messages").StellarSignTx;
|
|
4320
|
-
} | {
|
|
4321
|
-
type: "StellarTxOpRequest";
|
|
4322
|
-
message: import("@trezor/protobuf/lib/messages").StellarTxOpRequest;
|
|
4323
|
-
} | {
|
|
4324
|
-
type: "StellarPaymentOp";
|
|
4325
|
-
message: import("@trezor/protobuf/lib/messages").StellarPaymentOp;
|
|
4326
|
-
} | {
|
|
4327
|
-
type: "StellarCreateAccountOp";
|
|
4328
|
-
message: import("@trezor/protobuf/lib/messages").StellarCreateAccountOp;
|
|
4329
|
-
} | {
|
|
4330
|
-
type: "StellarPathPaymentStrictReceiveOp";
|
|
4331
|
-
message: import("@trezor/protobuf/lib/messages").StellarPathPaymentStrictReceiveOp;
|
|
4332
|
-
} | {
|
|
4333
|
-
type: "StellarPathPaymentStrictSendOp";
|
|
4334
|
-
message: import("@trezor/protobuf/lib/messages").StellarPathPaymentStrictSendOp;
|
|
4335
|
-
} | {
|
|
4336
|
-
type: "StellarManageSellOfferOp";
|
|
4337
|
-
message: import("@trezor/protobuf/lib/messages").StellarManageSellOfferOp;
|
|
4338
|
-
} | {
|
|
4339
|
-
type: "StellarManageBuyOfferOp";
|
|
4340
|
-
message: import("@trezor/protobuf/lib/messages").StellarManageBuyOfferOp;
|
|
4341
|
-
} | {
|
|
4342
|
-
type: "StellarCreatePassiveSellOfferOp";
|
|
4343
|
-
message: import("@trezor/protobuf/lib/messages").StellarCreatePassiveSellOfferOp;
|
|
4344
|
-
} | {
|
|
4345
|
-
type: "StellarSetOptionsOp";
|
|
4346
|
-
message: import("@trezor/protobuf/lib/messages").StellarSetOptionsOp;
|
|
4347
|
-
} | {
|
|
4348
|
-
type: "StellarChangeTrustOp";
|
|
4349
|
-
message: import("@trezor/protobuf/lib/messages").StellarChangeTrustOp;
|
|
4350
|
-
} | {
|
|
4351
|
-
type: "StellarAllowTrustOp";
|
|
4352
|
-
message: import("@trezor/protobuf/lib/messages").StellarAllowTrustOp;
|
|
4353
|
-
} | {
|
|
4354
|
-
type: "StellarAccountMergeOp";
|
|
4355
|
-
message: import("@trezor/protobuf/lib/messages").StellarAccountMergeOp;
|
|
4356
|
-
} | {
|
|
4357
|
-
type: "StellarManageDataOp";
|
|
4358
|
-
message: import("@trezor/protobuf/lib/messages").StellarManageDataOp;
|
|
4359
|
-
} | {
|
|
4360
|
-
type: "StellarBumpSequenceOp";
|
|
4361
|
-
message: import("@trezor/protobuf/lib/messages").StellarBumpSequenceOp;
|
|
4362
|
-
} | {
|
|
4363
|
-
type: "StellarClaimClaimableBalanceOp";
|
|
4364
|
-
message: import("@trezor/protobuf/lib/messages").StellarClaimClaimableBalanceOp;
|
|
4365
|
-
} | {
|
|
4366
|
-
type: "StellarSignedTx";
|
|
4367
|
-
message: import("@trezor/protobuf/lib/messages").StellarSignedTx;
|
|
4368
|
-
} | {
|
|
4369
|
-
type: "TezosGetAddress";
|
|
4370
|
-
message: import("@trezor/protobuf/lib/messages").TezosGetAddress;
|
|
4371
|
-
} | {
|
|
4372
|
-
type: "TezosAddress";
|
|
4373
|
-
message: import("@trezor/protobuf/lib/messages").TezosAddress;
|
|
4374
|
-
} | {
|
|
4375
|
-
type: "TezosGetPublicKey";
|
|
4376
|
-
message: import("@trezor/protobuf/lib/messages").TezosGetPublicKey;
|
|
4377
|
-
} | {
|
|
4378
|
-
type: "TezosPublicKey";
|
|
4379
|
-
message: import("@trezor/protobuf/lib/messages").TezosPublicKey;
|
|
4380
|
-
} | {
|
|
4381
|
-
type: "TezosContractID";
|
|
4382
|
-
message: import("@trezor/protobuf/lib/messages").TezosContractID;
|
|
4383
|
-
} | {
|
|
4384
|
-
type: "TezosRevealOp";
|
|
4385
|
-
message: import("@trezor/protobuf/lib/messages").TezosRevealOp;
|
|
4386
|
-
} | {
|
|
4387
|
-
type: "TezosManagerTransfer";
|
|
4388
|
-
message: import("@trezor/protobuf/lib/messages").TezosManagerTransfer;
|
|
4389
|
-
} | {
|
|
4390
|
-
type: "TezosParametersManager";
|
|
4391
|
-
message: import("@trezor/protobuf/lib/messages").TezosParametersManager;
|
|
4392
|
-
} | {
|
|
4393
|
-
type: "TezosTransactionOp";
|
|
4394
|
-
message: import("@trezor/protobuf/lib/messages").TezosTransactionOp;
|
|
4395
|
-
} | {
|
|
4396
|
-
type: "TezosOriginationOp";
|
|
4397
|
-
message: import("@trezor/protobuf/lib/messages").TezosOriginationOp;
|
|
4398
|
-
} | {
|
|
4399
|
-
type: "TezosDelegationOp";
|
|
4400
|
-
message: import("@trezor/protobuf/lib/messages").TezosDelegationOp;
|
|
4401
|
-
} | {
|
|
4402
|
-
type: "TezosProposalOp";
|
|
4403
|
-
message: import("@trezor/protobuf/lib/messages").TezosProposalOp;
|
|
4404
|
-
} | {
|
|
4405
|
-
type: "TezosBallotOp";
|
|
4406
|
-
message: import("@trezor/protobuf/lib/messages").TezosBallotOp;
|
|
4407
|
-
} | {
|
|
4408
|
-
type: "TezosSignTx";
|
|
4409
|
-
message: import("@trezor/protobuf/lib/messages").TezosSignTx;
|
|
4410
|
-
} | {
|
|
4411
|
-
type: "TezosSignedTx";
|
|
4412
|
-
message: import("@trezor/protobuf/lib/messages").TezosSignedTx;
|
|
4413
|
-
} | undefined;
|
|
828
|
+
payload: MessageResponse;
|
|
4414
829
|
}>;
|
|
4415
|
-
abort(reason: Error
|
|
4416
|
-
dispose(): Promise<void>;
|
|
830
|
+
abort(reason: Error): Promise<void>;
|
|
4417
831
|
}
|
|
4418
832
|
//# sourceMappingURL=DeviceCurrentSession.d.ts.map
|