Skip to content

Commit ce8b9b5

Browse files
committed
fix: duplicate
1 parent 01fc524 commit ce8b9b5

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

packages/keyring-eth-ledger-bridge/src/ledger-bridge.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@ export type LedgerBridge<T extends LedgerBridgeOptions> = {
6565

6666
getPublicKey(params: GetPublicKeyParams): Promise<GetPublicKeyResponse>;
6767

68-
getAppNameAndVersion(): Promise<GetAppNameAndVersionResponse>;
69-
70-
getAppConfiguration(): Promise<AppConfigurationResponse>;
71-
7268
deviceSignTransaction(
7369
params: LedgerSignTransactionParams,
7470
): Promise<LedgerSignTransactionResponse>;
@@ -87,4 +83,11 @@ export type LedgerBridge<T extends LedgerBridgeOptions> = {
8783
* @returns An object containing appName and version.
8884
*/
8985
getAppNameAndVersion(): Promise<GetAppNameAndVersionResponse>;
86+
87+
/**
88+
* Method to retrieve the configuration of the running application on the Ledger device.
89+
*
90+
* @returns An object containing the configuration of the running application.
91+
*/
92+
getAppConfiguration(): Promise<AppConfigurationResponse>;
9093
};

0 commit comments

Comments
 (0)