Merge branch 'calvinkei/custom-ledger-app' of https://github.com/calvinkei/cosmjs into calvinkei/custom-ledger-app

This commit is contained in:
Calvin Kei 2021-10-06 23:16:20 +08:00
commit 23e676aa72

View File

@ -31,6 +31,14 @@ export interface LaunchpadLedgerOptions {
readonly hdPaths?: readonly HdPath[];
readonly prefix?: string;
readonly testModeAllowed?: boolean;
/**
* The name of the app the user must have opened on the Ledger.
* This allows you to use this connector with forks of the Cosmos Hub Ledger app.
* Support is provided on an best effort basis and only as long as those forks do not
* significantly differ from the original app.
*
* Defaults to "cosmos".
*/
readonly ledgerAppName?: string
readonly requiredLedgerAppVersion?: string
}