@onekeyfe/hwk-trezor-adapter 1.2.3-alpha.8 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +25 -64
- package/dist/index.d.ts +25 -64
- package/dist/index.js +225 -1165
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +208 -1148
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IHardwareWallet, IConnector, TransportType,
|
|
1
|
+
import { IHardwareWallet, IConnector, TransportType, DeviceInfo, Response, ChainCapability, AllNetworkGetAddressParams, AllNetworkAddressResponse, DeviceAuthenticityParams, DeviceAuthenticityResult, TrezorDeviceSettingsParams, TrezorBrightnessParams, TrezorChangePinParams, UiResponseEvent, ChainForFingerprint, ICommonCallParams, EvmGetAddressParams, EvmAddress, EvmSignTxTrezorParams, EvmSignedTx, EvmSignMsgParams, EvmSignature, EvmSignTypedDataParams, BtcGetAddressParams, BtcAddress, BtcGetPublicKeyParams, BtcPublicKey, BtcSignTxParams, BtcSignedTx, BtcSignPsbtParams, BtcSignedPsbt, BtcSignMsgParams, BtcSignature, SolGetAddressParams, SolAddress, SolSignTxParams, SolSignedTx, SolSignMsgParams, SolSignature, TronGetAddressParams, TronAddress, TronSignTxParams, TronSignedTx, TronSignMsgParams, TronSignature, HardwareEventMap, DeviceEventListener, EvmEthereumDefinitions, ConnectorDevice } from '@onekeyfe/hwk-adapter-core';
|
|
2
2
|
|
|
3
3
|
type TrezorPassphraseCallParams = {
|
|
4
4
|
passphraseState?: string;
|
|
@@ -6,21 +6,10 @@ type TrezorPassphraseCallParams = {
|
|
|
6
6
|
};
|
|
7
7
|
type TrezorCallParams<T> = (T & ICommonCallParams & TrezorPassphraseCallParams) | null | undefined;
|
|
8
8
|
type TrezorCommonParams = (ICommonCallParams & TrezorPassphraseCallParams) | null | undefined;
|
|
9
|
-
interface TrezorKnownDeviceConnection {
|
|
10
|
-
deviceId: string;
|
|
11
|
-
usbConnectId?: string;
|
|
12
|
-
bleConnectId?: string;
|
|
13
|
-
}
|
|
14
|
-
interface TrezorAdapterOptions {
|
|
15
|
-
/** Persisted endpoints are routing hints, never proof of device identity. */
|
|
16
|
-
knownDeviceConnections?: readonly TrezorKnownDeviceConnection[];
|
|
17
|
-
}
|
|
18
9
|
declare class TrezorAdapter implements IHardwareWallet {
|
|
19
10
|
readonly vendor: "trezor";
|
|
20
|
-
readonly cancelCapability: "stops-waiting";
|
|
21
11
|
private readonly _connector;
|
|
22
12
|
private readonly _emitter;
|
|
23
|
-
private readonly _operations;
|
|
24
13
|
private readonly _devices;
|
|
25
14
|
private readonly _sessions;
|
|
26
15
|
private readonly _connectingPromises;
|
|
@@ -28,16 +17,8 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
28
17
|
private readonly _uiRegistry;
|
|
29
18
|
private readonly _passphraseRequestContextByConnectId;
|
|
30
19
|
private readonly _verifiedPassphraseSessionsByConnectId;
|
|
31
|
-
/** Raw connector calls that outlive an aborted caller, keyed by session. */
|
|
32
|
-
private readonly _unsettledConnectorOperations;
|
|
33
|
-
private readonly _connectorIdleWaiters;
|
|
34
|
-
private _resetPromise;
|
|
35
|
-
private _connectorTeardownTail;
|
|
36
|
-
private _pendingConnectorTeardowns;
|
|
37
|
-
private _stateGeneration;
|
|
38
20
|
private readonly _jobQueue;
|
|
39
|
-
|
|
40
|
-
constructor(connector: IConnector, options?: TrezorAdapterOptions);
|
|
21
|
+
constructor(connector: IConnector);
|
|
41
22
|
private static _createDeviceBusyError;
|
|
42
23
|
/**
|
|
43
24
|
* Split a Trezor-only `passphraseState` routing hint off the chain params so
|
|
@@ -60,17 +41,19 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
60
41
|
* selected is gone (the device evicted it from its limited slot pool). The
|
|
61
42
|
* caller drops the stale cache entry and recreates from scratch.
|
|
62
43
|
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
44
|
+
* NOTE: the exact eviction code still needs real-device confirmation — match
|
|
45
|
+
* conservatively so a genuine error isn't mistaken for an evicted session
|
|
46
|
+
* (which would silently re-prompt the passphrase).
|
|
65
47
|
*/
|
|
66
48
|
private static _isStaleSessionError;
|
|
67
49
|
private static _errorCode;
|
|
68
50
|
private static _isConnectionUnavailableError;
|
|
69
51
|
private static _isRecoverableProtocolResidueError;
|
|
70
52
|
/**
|
|
71
|
-
* Race a promise against an abort signal.
|
|
72
|
-
* be cancelled at the protocol level,
|
|
73
|
-
*
|
|
53
|
+
* Race a promise against an abort signal. Copied from LedgerAdapter:
|
|
54
|
+
* IConnector.call() can't actually be cancelled at the protocol level, but
|
|
55
|
+
* the caller gets the abort immediately and the underlying work completes
|
|
56
|
+
* uselessly in the background.
|
|
74
57
|
*/
|
|
75
58
|
private static _abortable;
|
|
76
59
|
private _connectSession;
|
|
@@ -83,20 +66,17 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
83
66
|
* error flows. Aborts active jobs and releases UI waits.
|
|
84
67
|
*/
|
|
85
68
|
resetState(): void;
|
|
86
|
-
private _resetStateAndDisconnectSessions;
|
|
87
69
|
getAvailableTransports(): TransportType[];
|
|
88
70
|
switchTransport(_type: TransportType): Promise<void>;
|
|
89
|
-
searchDevices(options?:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
private _releaseOperationConnection;
|
|
97
|
-
getDeviceInfo(connectIdOrOperationId: string, deviceId: string): Promise<Response<DeviceInfo>>;
|
|
71
|
+
searchDevices(options?: {
|
|
72
|
+
waitForAllTransports?: boolean;
|
|
73
|
+
}): Promise<DeviceInfo[]>;
|
|
74
|
+
connectDevice(connectId: string): Promise<Response<string>>;
|
|
75
|
+
disconnectDevice(connectId: string): Promise<void>;
|
|
76
|
+
getDeviceInfo(connectId: string, deviceId: string): Promise<Response<DeviceInfo>>;
|
|
77
|
+
getSupportedChains(): ChainCapability[];
|
|
98
78
|
allNetworkGetAddress(connectId: string, deviceId: string, params: AllNetworkGetAddressParams): Promise<Response<AllNetworkAddressResponse[]>>;
|
|
99
|
-
getFeatures(connectId: string
|
|
79
|
+
getFeatures(connectId: string): Promise<Response<Record<string, unknown>>>;
|
|
100
80
|
/**
|
|
101
81
|
* Device authenticity attestation. Sends a host-generated challenge, has the
|
|
102
82
|
* device sign it with its secure-element key, then verifies the returned
|
|
@@ -112,20 +92,12 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
112
92
|
* enable it in a production accounting flow, it lets an emulator mint any id.
|
|
113
93
|
*/
|
|
114
94
|
verifyDeviceAuthenticity(connectId: string, params?: DeviceAuthenticityParams): Promise<Response<DeviceAuthenticityResult>>;
|
|
115
|
-
deviceSettings(connectId: string, params: TrezorDeviceSettingsParams
|
|
116
|
-
setBrightness(connectId: string, params?: TrezorBrightnessParams
|
|
117
|
-
changePin(connectId: string, params?: TrezorChangePinParams
|
|
118
|
-
wipeDevice(connectId: string
|
|
95
|
+
deviceSettings(connectId: string, params: TrezorDeviceSettingsParams): Promise<Response<Record<string, unknown>>>;
|
|
96
|
+
setBrightness(connectId: string, params?: TrezorBrightnessParams): Promise<Response<Record<string, unknown>>>;
|
|
97
|
+
changePin(connectId: string, params?: TrezorChangePinParams): Promise<Response<Record<string, unknown>>>;
|
|
98
|
+
wipeDevice(connectId: string): Promise<Response<Record<string, unknown>>>;
|
|
119
99
|
private _getTrezorDeviceId;
|
|
120
100
|
cancel(connectId?: string): void;
|
|
121
|
-
/**
|
|
122
|
-
* The operation the running device job belongs to, so a UI request raised
|
|
123
|
-
* mid-call can name it. A call pinned to an operation queues under its id
|
|
124
|
-
* (`trezorQueueKey`); a call without one queues under the connectId, and the
|
|
125
|
-
* live operation on that connection is still the owner. Only work with no
|
|
126
|
-
* operation at all comes back undefined.
|
|
127
|
-
*/
|
|
128
|
-
private _activeOperationId;
|
|
129
101
|
/**
|
|
130
102
|
* Routes to BOTH the adapter's local UI registry (preemption decisions,
|
|
131
103
|
* future SELECT_DEVICE / DEVICE_PERMISSION) AND the connector's registry
|
|
@@ -142,7 +114,7 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
142
114
|
* Unlike Ledger (which hashes a per-chain address), it is chain-global, so
|
|
143
115
|
* `chain` is accepted for API parity but ignored.
|
|
144
116
|
*/
|
|
145
|
-
getChainFingerprint(connectId: string,
|
|
117
|
+
getChainFingerprint(connectId: string, _deviceId: string, _chain: ChainForFingerprint): Promise<Response<string>>;
|
|
146
118
|
/**
|
|
147
119
|
* Resolve the active passphrase wallet identity (`passphraseState`).
|
|
148
120
|
* See {@link IHardwareWallet.getPassphraseState} for the discover/verify
|
|
@@ -151,7 +123,7 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
151
123
|
* can't interleave with a chain call on the same device (which would desync
|
|
152
124
|
* the THP session selection).
|
|
153
125
|
*/
|
|
154
|
-
getPassphraseState(connectId: string, passphraseState?: string
|
|
126
|
+
getPassphraseState(connectId: string, passphraseState?: string): Promise<Response<string | null>>;
|
|
155
127
|
evmGetAddress(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmGetAddressParams>): Promise<Response<EvmAddress>>;
|
|
156
128
|
evmSignTransaction(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmSignTxTrezorParams>): Promise<Response<EvmSignedTx>>;
|
|
157
129
|
evmSignMessage(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmSignMsgParams>): Promise<Response<EvmSignature>>;
|
|
@@ -171,16 +143,9 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
171
143
|
tronSignTransaction(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<TronSignTxParams>): Promise<Response<TronSignedTx>>;
|
|
172
144
|
tronSignMessage(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<TronSignMsgParams>): Promise<Response<TronSignature>>;
|
|
173
145
|
private static _unwrapConnectorResult;
|
|
174
|
-
private _callConnector;
|
|
175
|
-
private _assertConnectorIdle;
|
|
176
|
-
private _runConnectorTeardown;
|
|
177
|
-
private _releaseProvisionalConnection;
|
|
178
|
-
private _waitForConnectorOperationsToDrain;
|
|
179
|
-
private _retainConnectorOperation;
|
|
146
|
+
private static _callConnector;
|
|
180
147
|
private static _normalizeAllNetworkItem;
|
|
181
148
|
private static _getItemDeviceId;
|
|
182
|
-
/** UserAborted is a top-level abort code, so this ends the bundle. */
|
|
183
|
-
private static _buildCancelledFailure;
|
|
184
149
|
private _callAllNetworkMethod;
|
|
185
150
|
on<K extends keyof HardwareEventMap>(event: K, listener: (event: HardwareEventMap[K]) => void): void;
|
|
186
151
|
on(event: string, listener: DeviceEventListener): void;
|
|
@@ -191,10 +156,6 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
191
156
|
private _callMethod;
|
|
192
157
|
private _callWithRetry;
|
|
193
158
|
private _ensureSession;
|
|
194
|
-
private _resolveExpectedDeviceConnectId;
|
|
195
|
-
private _selectBleDeviceForBinding;
|
|
196
|
-
private _rememberVerifiedConnection;
|
|
197
|
-
private _emitVerifiedBinding;
|
|
198
159
|
/**
|
|
199
160
|
* Pin the device's active wallet session to `passphraseState` (the target
|
|
200
161
|
* wallet identity) before a wallet-bound op. THP has an app-session id; v1
|
|
@@ -452,4 +413,4 @@ declare function isTrezorBleServiceUuid(uuid: string): boolean;
|
|
|
452
413
|
declare function isTrezorBleDescriptor(descriptor: TrezorBleDescriptor): boolean;
|
|
453
414
|
declare function resolveTrezorBleConnectId(descriptor: TrezorBleDescriptor): string;
|
|
454
415
|
|
|
455
|
-
export { type AuthenticateDeviceResult, type AuthenticityProof, type BuildEthereumDefinitionsForPathParams, type BuildEthereumDefinitionsForSignTxParams, DEFAULT_ETHEREUM_DEFINITIONS_BASE_URL, DEFAULT_SOLANA_TOKEN_DEFINITION_BASE_URL, type FetchEthereumDefinitionsParams, type FetchLike, type FetchSolanaTokenDefinitionParams, type SdkEvent, type SdkEventListener, type SdkLogEvent, TREZOR_BLE_PACKET_SIZE, TREZOR_BLE_SUPPORTED_MODELS, TREZOR_BLE_UUIDS, TREZOR_SAFE_7_MODEL, TrezorAdapter, type
|
|
416
|
+
export { type AuthenticateDeviceResult, type AuthenticityProof, type BuildEthereumDefinitionsForPathParams, type BuildEthereumDefinitionsForSignTxParams, DEFAULT_ETHEREUM_DEFINITIONS_BASE_URL, DEFAULT_SOLANA_TOKEN_DEFINITION_BASE_URL, type FetchEthereumDefinitionsParams, type FetchLike, type FetchSolanaTokenDefinitionParams, type SdkEvent, type SdkEventListener, type SdkLogEvent, TREZOR_BLE_PACKET_SIZE, TREZOR_BLE_SUPPORTED_MODELS, TREZOR_BLE_UUIDS, TREZOR_SAFE_7_MODEL, TrezorAdapter, type TrezorBleDescriptor, type TrezorBleTransport, type TrezorBleTransportFactory, type TrezorConnectedDevice, type TrezorConnectorDevice, authenticateDeviceFromProof, buildEthereumDefinitionsForPath, buildEthereumDefinitionsForSignTx, fetchEthereumDefinitions, fetchSolanaTokenDefinition, getRequiredDeviceAuthenticityLayers, getSlip44FromPath, isTrezorBleDescriptor, isTrezorBleServiceUuid, isTrezorBleSupportedModel, isTrezorSafe7BleDescriptor, isTrezorSafe7BleName, normalizeTrezorBleUuid, offSdkEvent, onSdkEvent, resolveTrezorBleConnectId };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IHardwareWallet, IConnector, TransportType,
|
|
1
|
+
import { IHardwareWallet, IConnector, TransportType, DeviceInfo, Response, ChainCapability, AllNetworkGetAddressParams, AllNetworkAddressResponse, DeviceAuthenticityParams, DeviceAuthenticityResult, TrezorDeviceSettingsParams, TrezorBrightnessParams, TrezorChangePinParams, UiResponseEvent, ChainForFingerprint, ICommonCallParams, EvmGetAddressParams, EvmAddress, EvmSignTxTrezorParams, EvmSignedTx, EvmSignMsgParams, EvmSignature, EvmSignTypedDataParams, BtcGetAddressParams, BtcAddress, BtcGetPublicKeyParams, BtcPublicKey, BtcSignTxParams, BtcSignedTx, BtcSignPsbtParams, BtcSignedPsbt, BtcSignMsgParams, BtcSignature, SolGetAddressParams, SolAddress, SolSignTxParams, SolSignedTx, SolSignMsgParams, SolSignature, TronGetAddressParams, TronAddress, TronSignTxParams, TronSignedTx, TronSignMsgParams, TronSignature, HardwareEventMap, DeviceEventListener, EvmEthereumDefinitions, ConnectorDevice } from '@onekeyfe/hwk-adapter-core';
|
|
2
2
|
|
|
3
3
|
type TrezorPassphraseCallParams = {
|
|
4
4
|
passphraseState?: string;
|
|
@@ -6,21 +6,10 @@ type TrezorPassphraseCallParams = {
|
|
|
6
6
|
};
|
|
7
7
|
type TrezorCallParams<T> = (T & ICommonCallParams & TrezorPassphraseCallParams) | null | undefined;
|
|
8
8
|
type TrezorCommonParams = (ICommonCallParams & TrezorPassphraseCallParams) | null | undefined;
|
|
9
|
-
interface TrezorKnownDeviceConnection {
|
|
10
|
-
deviceId: string;
|
|
11
|
-
usbConnectId?: string;
|
|
12
|
-
bleConnectId?: string;
|
|
13
|
-
}
|
|
14
|
-
interface TrezorAdapterOptions {
|
|
15
|
-
/** Persisted endpoints are routing hints, never proof of device identity. */
|
|
16
|
-
knownDeviceConnections?: readonly TrezorKnownDeviceConnection[];
|
|
17
|
-
}
|
|
18
9
|
declare class TrezorAdapter implements IHardwareWallet {
|
|
19
10
|
readonly vendor: "trezor";
|
|
20
|
-
readonly cancelCapability: "stops-waiting";
|
|
21
11
|
private readonly _connector;
|
|
22
12
|
private readonly _emitter;
|
|
23
|
-
private readonly _operations;
|
|
24
13
|
private readonly _devices;
|
|
25
14
|
private readonly _sessions;
|
|
26
15
|
private readonly _connectingPromises;
|
|
@@ -28,16 +17,8 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
28
17
|
private readonly _uiRegistry;
|
|
29
18
|
private readonly _passphraseRequestContextByConnectId;
|
|
30
19
|
private readonly _verifiedPassphraseSessionsByConnectId;
|
|
31
|
-
/** Raw connector calls that outlive an aborted caller, keyed by session. */
|
|
32
|
-
private readonly _unsettledConnectorOperations;
|
|
33
|
-
private readonly _connectorIdleWaiters;
|
|
34
|
-
private _resetPromise;
|
|
35
|
-
private _connectorTeardownTail;
|
|
36
|
-
private _pendingConnectorTeardowns;
|
|
37
|
-
private _stateGeneration;
|
|
38
20
|
private readonly _jobQueue;
|
|
39
|
-
|
|
40
|
-
constructor(connector: IConnector, options?: TrezorAdapterOptions);
|
|
21
|
+
constructor(connector: IConnector);
|
|
41
22
|
private static _createDeviceBusyError;
|
|
42
23
|
/**
|
|
43
24
|
* Split a Trezor-only `passphraseState` routing hint off the chain params so
|
|
@@ -60,17 +41,19 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
60
41
|
* selected is gone (the device evicted it from its limited slot pool). The
|
|
61
42
|
* caller drops the stale cache entry and recreates from scratch.
|
|
62
43
|
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
44
|
+
* NOTE: the exact eviction code still needs real-device confirmation — match
|
|
45
|
+
* conservatively so a genuine error isn't mistaken for an evicted session
|
|
46
|
+
* (which would silently re-prompt the passphrase).
|
|
65
47
|
*/
|
|
66
48
|
private static _isStaleSessionError;
|
|
67
49
|
private static _errorCode;
|
|
68
50
|
private static _isConnectionUnavailableError;
|
|
69
51
|
private static _isRecoverableProtocolResidueError;
|
|
70
52
|
/**
|
|
71
|
-
* Race a promise against an abort signal.
|
|
72
|
-
* be cancelled at the protocol level,
|
|
73
|
-
*
|
|
53
|
+
* Race a promise against an abort signal. Copied from LedgerAdapter:
|
|
54
|
+
* IConnector.call() can't actually be cancelled at the protocol level, but
|
|
55
|
+
* the caller gets the abort immediately and the underlying work completes
|
|
56
|
+
* uselessly in the background.
|
|
74
57
|
*/
|
|
75
58
|
private static _abortable;
|
|
76
59
|
private _connectSession;
|
|
@@ -83,20 +66,17 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
83
66
|
* error flows. Aborts active jobs and releases UI waits.
|
|
84
67
|
*/
|
|
85
68
|
resetState(): void;
|
|
86
|
-
private _resetStateAndDisconnectSessions;
|
|
87
69
|
getAvailableTransports(): TransportType[];
|
|
88
70
|
switchTransport(_type: TransportType): Promise<void>;
|
|
89
|
-
searchDevices(options?:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
private _releaseOperationConnection;
|
|
97
|
-
getDeviceInfo(connectIdOrOperationId: string, deviceId: string): Promise<Response<DeviceInfo>>;
|
|
71
|
+
searchDevices(options?: {
|
|
72
|
+
waitForAllTransports?: boolean;
|
|
73
|
+
}): Promise<DeviceInfo[]>;
|
|
74
|
+
connectDevice(connectId: string): Promise<Response<string>>;
|
|
75
|
+
disconnectDevice(connectId: string): Promise<void>;
|
|
76
|
+
getDeviceInfo(connectId: string, deviceId: string): Promise<Response<DeviceInfo>>;
|
|
77
|
+
getSupportedChains(): ChainCapability[];
|
|
98
78
|
allNetworkGetAddress(connectId: string, deviceId: string, params: AllNetworkGetAddressParams): Promise<Response<AllNetworkAddressResponse[]>>;
|
|
99
|
-
getFeatures(connectId: string
|
|
79
|
+
getFeatures(connectId: string): Promise<Response<Record<string, unknown>>>;
|
|
100
80
|
/**
|
|
101
81
|
* Device authenticity attestation. Sends a host-generated challenge, has the
|
|
102
82
|
* device sign it with its secure-element key, then verifies the returned
|
|
@@ -112,20 +92,12 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
112
92
|
* enable it in a production accounting flow, it lets an emulator mint any id.
|
|
113
93
|
*/
|
|
114
94
|
verifyDeviceAuthenticity(connectId: string, params?: DeviceAuthenticityParams): Promise<Response<DeviceAuthenticityResult>>;
|
|
115
|
-
deviceSettings(connectId: string, params: TrezorDeviceSettingsParams
|
|
116
|
-
setBrightness(connectId: string, params?: TrezorBrightnessParams
|
|
117
|
-
changePin(connectId: string, params?: TrezorChangePinParams
|
|
118
|
-
wipeDevice(connectId: string
|
|
95
|
+
deviceSettings(connectId: string, params: TrezorDeviceSettingsParams): Promise<Response<Record<string, unknown>>>;
|
|
96
|
+
setBrightness(connectId: string, params?: TrezorBrightnessParams): Promise<Response<Record<string, unknown>>>;
|
|
97
|
+
changePin(connectId: string, params?: TrezorChangePinParams): Promise<Response<Record<string, unknown>>>;
|
|
98
|
+
wipeDevice(connectId: string): Promise<Response<Record<string, unknown>>>;
|
|
119
99
|
private _getTrezorDeviceId;
|
|
120
100
|
cancel(connectId?: string): void;
|
|
121
|
-
/**
|
|
122
|
-
* The operation the running device job belongs to, so a UI request raised
|
|
123
|
-
* mid-call can name it. A call pinned to an operation queues under its id
|
|
124
|
-
* (`trezorQueueKey`); a call without one queues under the connectId, and the
|
|
125
|
-
* live operation on that connection is still the owner. Only work with no
|
|
126
|
-
* operation at all comes back undefined.
|
|
127
|
-
*/
|
|
128
|
-
private _activeOperationId;
|
|
129
101
|
/**
|
|
130
102
|
* Routes to BOTH the adapter's local UI registry (preemption decisions,
|
|
131
103
|
* future SELECT_DEVICE / DEVICE_PERMISSION) AND the connector's registry
|
|
@@ -142,7 +114,7 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
142
114
|
* Unlike Ledger (which hashes a per-chain address), it is chain-global, so
|
|
143
115
|
* `chain` is accepted for API parity but ignored.
|
|
144
116
|
*/
|
|
145
|
-
getChainFingerprint(connectId: string,
|
|
117
|
+
getChainFingerprint(connectId: string, _deviceId: string, _chain: ChainForFingerprint): Promise<Response<string>>;
|
|
146
118
|
/**
|
|
147
119
|
* Resolve the active passphrase wallet identity (`passphraseState`).
|
|
148
120
|
* See {@link IHardwareWallet.getPassphraseState} for the discover/verify
|
|
@@ -151,7 +123,7 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
151
123
|
* can't interleave with a chain call on the same device (which would desync
|
|
152
124
|
* the THP session selection).
|
|
153
125
|
*/
|
|
154
|
-
getPassphraseState(connectId: string, passphraseState?: string
|
|
126
|
+
getPassphraseState(connectId: string, passphraseState?: string): Promise<Response<string | null>>;
|
|
155
127
|
evmGetAddress(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmGetAddressParams>): Promise<Response<EvmAddress>>;
|
|
156
128
|
evmSignTransaction(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmSignTxTrezorParams>): Promise<Response<EvmSignedTx>>;
|
|
157
129
|
evmSignMessage(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<EvmSignMsgParams>): Promise<Response<EvmSignature>>;
|
|
@@ -171,16 +143,9 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
171
143
|
tronSignTransaction(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<TronSignTxParams>): Promise<Response<TronSignedTx>>;
|
|
172
144
|
tronSignMessage(connectId?: string | null, deviceId?: string | null, params?: TrezorCallParams<TronSignMsgParams>): Promise<Response<TronSignature>>;
|
|
173
145
|
private static _unwrapConnectorResult;
|
|
174
|
-
private _callConnector;
|
|
175
|
-
private _assertConnectorIdle;
|
|
176
|
-
private _runConnectorTeardown;
|
|
177
|
-
private _releaseProvisionalConnection;
|
|
178
|
-
private _waitForConnectorOperationsToDrain;
|
|
179
|
-
private _retainConnectorOperation;
|
|
146
|
+
private static _callConnector;
|
|
180
147
|
private static _normalizeAllNetworkItem;
|
|
181
148
|
private static _getItemDeviceId;
|
|
182
|
-
/** UserAborted is a top-level abort code, so this ends the bundle. */
|
|
183
|
-
private static _buildCancelledFailure;
|
|
184
149
|
private _callAllNetworkMethod;
|
|
185
150
|
on<K extends keyof HardwareEventMap>(event: K, listener: (event: HardwareEventMap[K]) => void): void;
|
|
186
151
|
on(event: string, listener: DeviceEventListener): void;
|
|
@@ -191,10 +156,6 @@ declare class TrezorAdapter implements IHardwareWallet {
|
|
|
191
156
|
private _callMethod;
|
|
192
157
|
private _callWithRetry;
|
|
193
158
|
private _ensureSession;
|
|
194
|
-
private _resolveExpectedDeviceConnectId;
|
|
195
|
-
private _selectBleDeviceForBinding;
|
|
196
|
-
private _rememberVerifiedConnection;
|
|
197
|
-
private _emitVerifiedBinding;
|
|
198
159
|
/**
|
|
199
160
|
* Pin the device's active wallet session to `passphraseState` (the target
|
|
200
161
|
* wallet identity) before a wallet-bound op. THP has an app-session id; v1
|
|
@@ -452,4 +413,4 @@ declare function isTrezorBleServiceUuid(uuid: string): boolean;
|
|
|
452
413
|
declare function isTrezorBleDescriptor(descriptor: TrezorBleDescriptor): boolean;
|
|
453
414
|
declare function resolveTrezorBleConnectId(descriptor: TrezorBleDescriptor): string;
|
|
454
415
|
|
|
455
|
-
export { type AuthenticateDeviceResult, type AuthenticityProof, type BuildEthereumDefinitionsForPathParams, type BuildEthereumDefinitionsForSignTxParams, DEFAULT_ETHEREUM_DEFINITIONS_BASE_URL, DEFAULT_SOLANA_TOKEN_DEFINITION_BASE_URL, type FetchEthereumDefinitionsParams, type FetchLike, type FetchSolanaTokenDefinitionParams, type SdkEvent, type SdkEventListener, type SdkLogEvent, TREZOR_BLE_PACKET_SIZE, TREZOR_BLE_SUPPORTED_MODELS, TREZOR_BLE_UUIDS, TREZOR_SAFE_7_MODEL, TrezorAdapter, type
|
|
416
|
+
export { type AuthenticateDeviceResult, type AuthenticityProof, type BuildEthereumDefinitionsForPathParams, type BuildEthereumDefinitionsForSignTxParams, DEFAULT_ETHEREUM_DEFINITIONS_BASE_URL, DEFAULT_SOLANA_TOKEN_DEFINITION_BASE_URL, type FetchEthereumDefinitionsParams, type FetchLike, type FetchSolanaTokenDefinitionParams, type SdkEvent, type SdkEventListener, type SdkLogEvent, TREZOR_BLE_PACKET_SIZE, TREZOR_BLE_SUPPORTED_MODELS, TREZOR_BLE_UUIDS, TREZOR_SAFE_7_MODEL, TrezorAdapter, type TrezorBleDescriptor, type TrezorBleTransport, type TrezorBleTransportFactory, type TrezorConnectedDevice, type TrezorConnectorDevice, authenticateDeviceFromProof, buildEthereumDefinitionsForPath, buildEthereumDefinitionsForSignTx, fetchEthereumDefinitions, fetchSolanaTokenDefinition, getRequiredDeviceAuthenticityLayers, getSlip44FromPath, isTrezorBleDescriptor, isTrezorBleServiceUuid, isTrezorBleSupportedModel, isTrezorSafe7BleDescriptor, isTrezorSafe7BleName, normalizeTrezorBleUuid, offSdkEvent, onSdkEvent, resolveTrezorBleConnectId };
|